Changeset 47093
- Timestamp:
- 01/20/2020 03:41:50 PM (6 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 7 edited
-
import.php (modified) (1 diff)
-
includes/ms.php (modified) (1 diff)
-
includes/template.php (modified) (1 diff)
-
nav-menus.php (modified) (1 diff)
-
options-privacy.php (modified) (1 diff)
-
plugins.php (modified) (1 diff)
-
tools.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/import.php
r45932 r47093 162 162 } else { 163 163 $action = sprintf( 164 /* translators: URL to Import screen on the main site. */164 /* translators: %s: URL to Import screen on the main site. */ 165 165 __( 'This importer is not installed. Please install importers from <a href="%s">the main site</a>.' ), 166 166 get_admin_url( get_current_network_id(), 'import.php' ) -
trunk/src/wp-admin/includes/ms.php
r45932 r47093 909 909 <?php 910 910 printf( 911 /* translators: User login. */911 /* translators: %s: User login. */ 912 912 __( 'What should be done with content owned by %s?' ), 913 913 '<em>' . $delete_user->user_login . '</em>' -
trunk/src/wp-admin/includes/template.php
r47060 r47093 1310 1310 echo '<button type="button" class="handlediv" aria-expanded="true">'; 1311 1311 echo '<span class="screen-reader-text">' . sprintf( 1312 /* translators: Meta box title. */1312 /* translators: %s: Meta box title. */ 1313 1313 __( 'Toggle panel: %s' ), 1314 1314 $widget_title -
trunk/src/wp-admin/nav-menus.php
r46791 r47093 531 531 if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) { 532 532 $messages[] = '<div id="message" class="updated"><p>' . sprintf( 533 /* translators: URL to Widgets screen. */533 /* translators: %s: URL to Widgets screen. */ 534 534 __( 'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the <a href="%s">Widgets</a> screen.' ), 535 535 admin_url( 'widgets.php' ) -
trunk/src/wp-admin/options-privacy.php
r45932 r47093 101 101 'page_for_privacy_policy', 102 102 sprintf( 103 /* translators: URL to Pages Trash. */103 /* translators: %s: URL to Pages Trash. */ 104 104 __( 'The currently selected Privacy Policy page is in the trash. Please create or select a new Privacy Policy page or <a href="%s">restore the current page</a>.' ), 105 105 'edit.php?post_status=trash&post_type=page' -
trunk/src/wp-admin/plugins.php
r46811 r47093 457 457 '<p>' . __( 'Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.' ) . '</p>' . 458 458 '<p>' . sprintf( 459 /* translators: WP_PLUGIN_DIR constant value. */459 /* translators: %s: WP_PLUGIN_DIR constant value. */ 460 460 __( 'If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.' ), 461 461 '<code>' . WP_PLUGIN_DIR . '</code>' -
trunk/src/wp-admin/tools.php
r45932 r47093 71 71 <?php 72 72 printf( 73 /* translators: URL to Import screen. */73 /* translators: %s: URL to Import screen. */ 74 74 __( 'If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.' ), 75 75 'import.php'
Note: See TracChangeset
for help on using the changeset viewer.