Changeset 50931
- Timestamp:
- 05/19/2021 06:09:27 PM (3 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/customize.php
r48420 r50931 243 243 244 244 <div id="customize-footer-actions" class="wp-full-overlay-footer"> 245 <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php echo esc_attr ( _x( 'Hide Controls', 'label for hide controls button without length constraints' )); ?>">245 <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php echo esc_attr_x( 'Hide Controls', 'label for hide controls button without length constraints' ); ?>"> 246 246 <span class="collapse-sidebar-arrow"></span> 247 247 <span class="collapse-sidebar-label"><?php _ex( 'Hide Controls', 'short (~12 characters) label for hide controls button' ); ?></span> -
trunk/src/wp-admin/includes/class-plugin-installer-skin.php
r50705 r50931 209 209 } 210 210 211 echo '<h2 class="update-from-upload-heading">' . esc_html ( __( 'This plugin is already installed.' )) . '</h2>';211 echo '<h2 class="update-from-upload-heading">' . esc_html__( 'This plugin is already installed.' ) . '</h2>'; 212 212 213 213 $this->is_downgrading = version_compare( $current_plugin_data['Version'], $new_plugin_data['Version'], '>' ); … … 257 257 $can_update = true; 258 258 259 $blocked_message = '<p>' . esc_html ( __( 'The plugin cannot be updated due to the following:' )) . '</p>';259 $blocked_message = '<p>' . esc_html__( 'The plugin cannot be updated due to the following:' ) . '</p>'; 260 260 $blocked_message .= '<ul class="ul-disc">'; 261 261 -
trunk/src/wp-admin/includes/class-theme-installer-skin.php
r50705 r50931 222 222 } 223 223 224 echo '<h2 class="update-from-upload-heading">' . esc_html ( __( 'This theme is already installed.' )) . '</h2>';224 echo '<h2 class="update-from-upload-heading">' . esc_html__( 'This theme is already installed.' ) . '</h2>'; 225 225 226 226 // Check errors for current theme. … … 292 292 $can_update = true; 293 293 294 $blocked_message = '<p>' . esc_html ( __( 'The theme cannot be updated due to the following:' )) . '</p>';294 $blocked_message = '<p>' . esc_html__( 'The theme cannot be updated due to the following:' ) . '</p>'; 295 295 $blocked_message .= '<ul class="ul-disc">'; 296 296 -
trunk/src/wp-admin/includes/class-wp-application-passwords-list-table.php
r49746 r50931 237 237 printf( 238 238 '<input type="submit" class="button delete" value="%1$s" aria-label="%2$s">', 239 esc_attr ( __( 'Revoke' )),239 esc_attr__( 'Revoke' ), 240 240 /* translators: %s: the application password's given name. */ 241 241 esc_attr( sprintf( __( 'Revoke "%s"' ), '{{ data.name }}' ) ) -
trunk/src/wp-admin/nav-menus.php
r49283 r50931 664 664 ?> 665 665 <div class="wrap"> 666 <h1 class="wp-heading-inline"><?php e cho esc_html( __( 'Menus' )); ?></h1>666 <h1 class="wp-heading-inline"><?php esc_html_e( 'Menus' ); ?></h1> 667 667 <?php 668 668 if ( current_user_can( 'customize' ) ) :
Note: See TracChangeset
for help on using the changeset viewer.