Changeset 6033
- Timestamp:
- 09/04/2007 08:56:08 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-pages.php
r6026 r6033 13 13 14 14 15 $post_status_label = _ c('Pages|manage pages header');15 $post_status_label = __('Pages'); 16 16 $post_status_q = ''; 17 17 if ( isset($_GET['post_status']) && in_array( $_GET['post_status'], array_keys($post_stati) ) ) { … … 32 32 $h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name )); 33 33 } 34 printf( _c( '%1$s%2$s%3$s| manage pages header' ), $post_status_label, $h2_author, $h2_search );34 printf( _c( '%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by %s, 3: matching %s' ), $post_status_label, $h2_author, $h2_search ); 35 35 ?></h2> 36 36 -
trunk/wp-admin/edit.php
r6026 r6033 20 20 21 21 $post_status_q = ''; 22 $post_status_label = _ c('Posts|manage posts header');22 $post_status_label = __('Posts'); 23 23 if ( isset($_GET['post_status']) && in_array( $_GET['post_status'], array_keys($post_stati) ) ) { 24 24 $post_status_label = $post_stati[$_GET['post_status']][1]; … … 90 90 $h2_cat = isset($_GET['cat']) && $_GET['cat'] ? ' ' . sprintf( __('in “%s”'), single_cat_title('', false) ) : ''; 91 91 $h2_month = isset($_GET['m']) && $_GET['m'] ? ' ' . sprintf( __('during %s'), single_month_title(' ', false) ) : ''; 92 printf( _c( '%1$s%2$s%3$s%4$s%5$s| manage posts header' ), $h2_noun, $h2_author, $h2_search, $h2_cat, $h2_month );92 printf( _c( '%1$s%2$s%3$s%4$s%5$s|You can reorder these: 1: Posts, 2: by %s, 3: matching %s, 4: in %s, 5: during %s' ), $h2_noun, $h2_author, $h2_search, $h2_cat, $h2_month ); 93 93 } 94 94 ?></h2> -
trunk/wp-admin/includes/template.php
r6026 r6033 450 450 <?php 451 451 if ( $edit ) { 452 printf( _ _('Existing timestamp: %1$s %2$s, %3$s @ %4$s:%5$s' ), $wp_locale->get_month( $mm ), $jj, $aa, $hh, $mn );452 printf( _c( 'Existing timestamp: %1$s %2$s, %3$s @ %4$s:%5$s|1: month, 2: month string, 3: full year, 4: hours, 5: minutes' ), $wp_locale->get_month( $mm ), $jj, $aa, $hh, $mn ); 453 453 } 454 454 ?> -
trunk/wp-admin/themes.php
r6016 r6033 41 41 <img src="<?php echo get_option('siteurl') . '/' . $ct->stylesheet_dir . '/' . $ct->screenshot; ?>" alt="<?php _e('Current theme preview'); ?>" /> 42 42 <?php endif; ?> 43 <h3><?php printf(_ _('%1$s %2$s by %3$s'), $ct->title, $ct->version, $ct->author) ; ?></h3>43 <h3><?php printf(_c('%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author'), $ct->title, $ct->version, $ct->author) ; ?></h3> 44 44 <p><?php echo $ct->description; ?></p> 45 45 <?php if ($ct->parent_theme) { ?> -
trunk/wp-includes/locale.php
r6026 r6033 91 91 // See http://php.net/number_format 92 92 93 $trans = _ _('number_format_decimals');93 $trans = _c('number_format_decimals|$decimals argument for http://php.net/number_format, default is 0'); 94 94 $this->number_format['decimals'] = ('number_format_decimals' == $trans) ? 0 : $trans; 95 95 96 $trans = _ _('number_format_decimal_point');96 $trans = _c('number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is .'); 97 97 $this->number_format['decimal_point'] = ('number_format_decimal_point' == $trans) ? '.' : $trans; 98 98 99 $trans = _ _('number_format_thousands_sep');99 $trans = _c('number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ,'); 100 100 $this->number_format['thousands_sep'] = ('number_format_thousands_sep' == $trans) ? ',' : $trans; 101 101
Note: See TracChangeset
for help on using the changeset viewer.