Ticket #49248: 49248.patch
| File 49248.patch, 4.3 KB (added by , 6 years ago) |
|---|
-
wp-admin/import.php
161 161 ); 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' ) 167 167 ); -
wp-admin/includes/ms.php
908 908 <td><fieldset><p><legend> 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>' 914 914 ); -
wp-admin/includes/template.php
1309 1309 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 1315 1315 ) . '</span>'; -
wp-admin/nav-menus.php
530 530 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' ) 536 536 ) . '</p></div>'; -
wp-admin/options-privacy.php
100 100 'page_for_privacy_policy', 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' 106 106 ), -
wp-admin/plugins.php
456 456 'content' => 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>' 462 462 ) . '</p>', -
wp-admin/tools.php
70 70 <p> 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' 76 76 );