Changeset 45300 for trunk/src/wp-admin/credits.php
- Timestamp:
- 05/09/2019 08:57:06 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/credits.php
r45292 r45300 19 19 <div class="wrap about-wrap full-width-layout"> 20 20 21 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 21 <h1> 22 <?php 23 /* translators: %s: The current WordPress version number */ 24 printf( __( 'Welcome to WordPress %s' ), $display_version ); 25 ?> 26 </h1> 22 27 23 28 <p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p> 24 29 25 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> 30 <div class="wp-badge"> 31 <?php 32 /* translators: %s: The current WordPress version number */ 33 printf( __( 'Version %s' ), $display_version ); 34 ?> 35 </div> 26 36 27 37 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 28 38 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 29 <a href="credits.php" class="nav-tab nav-tab-active" ><?php _e( 'Credits' ); ?></a>39 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> 30 40 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 31 41 <a href="freedoms.php?privacy-notice" class="nav-tab"><?php _e( 'Privacy' ); ?></a> … … 39 49 if ( ! $credits ) { 40 50 echo '<p class="about-description">'; 41 /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */42 51 printf( 52 /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */ 43 53 __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ), 44 54 'https://wordpress.org/about/', … … 124 134 // These are strings returned by the API that we want to be translatable 125 135 __( 'Project Leaders' ); 136 /* translators: %s: The current WordPress version number */ 126 137 __( 'Core Contributors to WordPress %s' ); 127 138 __( 'Noteworthy Contributors' );
Note: See TracChangeset
for help on using the changeset viewer.