Changeset 32333
- Timestamp:
- 05/03/2015 04:17:06 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-header.php
r32116 r32333 268 268 echo '<div class="random-header">'; 269 269 echo '<label><input name="default-header" type="radio" value="random-' . $type . '-image"' . checked( is_random_header_image( $type ), true, false ) . ' />'; 270 echo __( '<strong>Random:</strong> Show a different image on each page.' );270 _e( '<strong>Random:</strong> Show a different image on each page.' ); 271 271 echo '</label>'; 272 272 echo '</div>'; -
trunk/src/wp-admin/customize.php
r31984 r32333 151 151 </div> 152 152 <div class="accordion-section-content"><?php 153 echo __( 'The Customizer allows you to preview changes to your site before publishing them. You can also navigate to different pages on your site to preview them.' );153 _e( 'The Customizer allows you to preview changes to your site before publishing them. You can also navigate to different pages on your site to preview them.' ); 154 154 ?></div> 155 155 </div> -
trunk/src/wp-admin/edit-comments.php
r32116 r32333 150 150 ); 151 151 else 152 echo __('Comments');152 _e( 'Comments' ); 153 153 154 154 if ( isset($_REQUEST['s']) && $_REQUEST['s'] ) -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r32329 r32333 1117 1117 <?php 1118 1118 /* translators: Between password field and private checkbox on post quick edit interface */ 1119 echo __( '–OR–' );1119 _e( '–OR–' ); 1120 1120 ?> 1121 1121 </em> 1122 1122 <label class="alignleft inline-edit-private"> 1123 1123 <input type="checkbox" name="keep_private" value="private" /> 1124 <span class="checkbox-title"><?php echo __( 'Private' ); ?></span>1124 <span class="checkbox-title"><?php _e( 'Private' ); ?></span> 1125 1125 </label> 1126 1126 </div> -
trunk/src/wp-admin/network/users.php
r32152 r32333 87 87 <?php _e( 'Delete all content.' ); ?></label></li> 88 88 <li><label><input type="radio" id="delete_option1" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="reassign" /> 89 <?php echo __( 'Attribute all content to:' ) . "</label>\n" . $user_dropdown; ?></li>89 <?php _e( 'Attribute all content to:' ) . "</label>\n" . $user_dropdown; ?></li> 90 90 </ul> 91 91 <?php -
trunk/src/wp-includes/comment-template.php
r32259 r32333 1305 1305 1306 1306 if ( post_password_required() ) { 1307 echo __('Enter your password to view comments.');1307 _e( 'Enter your password to view comments.' ); 1308 1308 return; 1309 1309 }
Note: See TracChangeset
for help on using the changeset viewer.