Changeset 6879
- Timestamp:
- 03/15/2018 05:02:00 AM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/inc/page-meta-descriptions.php
r6878 r6879 24 24 $title = esc_html__( 'WordPress Domains', 'wporg' ); 25 25 $desc = esc_html__( 'WordPress domains and site names can be very flexible; however, top-level domains can’t use the word WordPress. Find out what is allowed and what constitutes a trademark violation, as well as policies on subdomain use. Review the list of official WordPress sites to know how to recognize and advise violators.', 'wporg' ); 26 break; 27 28 case 'page-about-accessibility.php': 29 $title = esc_html__( 'WordPress Accessibility', 'wporg' ); 30 $desc = /* TODO */ 'The WordPress community and the open source WordPress project is committed to being as inclusive and accessible as possible. We want users, regardless of device or ability, to be able to publish content and maintain a website or application built with WordPress.'; 26 31 break; 27 32 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-domains.php
r6878 r6879 15 15 16 16 $GLOBALS['menu_items'] = [ 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 20 'about/stats' => __( 'Statistics', 'wporg' ), 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/accessibility' => __( 'Accessibility', 'wporg' ), 20 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 21 'about/stats' => __( 'Statistics', 'wporg' ), 21 22 ]; 22 23 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-license.php
r6878 r6879 15 15 16 16 $GLOBALS['menu_items'] = [ 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 20 'about/stats' => __( 'Statistics', 'wporg' ), 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/accessibility' => __( 'Accessibility', 'wporg' ), 20 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 21 'about/stats' => __( 'Statistics', 'wporg' ), 21 22 ]; 22 23 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy.php
r6878 r6879 15 15 16 16 $GLOBALS['menu_items'] = [ 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 20 'about/stats' => __( 'Statistics', 'wporg' ), 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/accessibility' => __( 'Accessibility', 'wporg' ), 20 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 21 'about/stats' => __( 'Statistics', 'wporg' ), 21 22 ]; 22 23 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-security.php
r6878 r6879 29 29 // See inc/page-meta-descriptions.php for the meta description for this page. 30 30 31 // Translat oin Note: Currently this is translated through https://github.com/WordPress/Security-White-Paper31 // Translation Note: Currently this is translated through https://github.com/WordPress/Security-White-Paper 32 32 33 33 get_header( 'child-page' ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-stats.php
r6878 r6879 15 15 16 16 $GLOBALS['menu_items'] = [ 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 20 'about/stats' => __( 'Statistics', 'wporg' ), 17 'about/domains' => __( 'Domains', 'wporg' ), 18 'about/license' => __( 'GNU Public License', 'wporg' ), 19 'about/accessibility' => __( 'Accessibility', 'wporg' ), 20 'about/privacy' => __( 'Privacy Policy', 'wporg' ), 21 'about/stats' => __( 'Statistics', 'wporg' ), 21 22 ]; 22 23 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about.php
r6878 r6879 82 82 <li><a href="<?php echo esc_url( home_url( '/about/domains/' ) ); ?>"><?php esc_html_e( 'Domains', 'wporg' ); ?></a></li> 83 83 <li><a href="<?php echo esc_url( home_url( '/about/license/' ) ); ?>"><?php esc_html_e( 'GNU Public License', 'wporg' ); ?></a></li> 84 <li><a href="<?php echo esc_url( home_url( '/about/accessibility/' ) ); ?>"><?php esc_html_e( 'Accessibility', 'wporg' ); ?></a></li> 84 85 <li><a href="<?php echo esc_url( home_url( '/about/privacy/' ) ); ?>"><?php esc_html_e( 'Privacy Policy', 'wporg' ); ?></a></li> 85 86 <li><a href="<?php echo esc_url( home_url( '/about/stats/' ) ); ?>"><?php esc_html_e( 'Statistics', 'wporg' ); ?></a></li>
Note: See TracChangeset
for help on using the changeset viewer.