Changeset 38057 for trunk/src/wp-includes/script-loader.php
- Timestamp:
- 07/13/2016 05:31:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/script-loader.php
r38033 r38057 629 629 /* translators: Error string for a failed installation */ 630 630 'installFailed' => __( 'Installation failed: %s' ), 631 /* translators: Plugin/Theme name and version */ 632 'installingLabel' => __( 'Installing %s...' ), // no ellipsis 633 /* translators: Plugin/Theme name and version */ 634 'installedLabel' => __( '%s installed!' ), 635 /* translators: Plugin/Theme name and version */ 636 'installFailedLabel' => __( '%s installation failed' ), 631 /* translators: Plugin name and version */ 632 'pluginInstallingLabel' => _x( 'Installing %s...', 'plugin' ), // no ellipsis 633 /* translators: Theme name and version */ 634 'themeInstallingLabel' => _x( 'Installing %s...', 'theme' ), // no ellipsis 635 /* translators: Plugin name and version */ 636 'pluginInstalledLabel' => _x( '%s installed!', 'plugin' ), 637 /* translators: Theme name and version */ 638 'themeInstalledLabel' => _x( '%s installed!', 'theme' ), 639 /* translators: Plugin name and version */ 640 'pluginInstallFailedLabel' => _x( '%s installation failed', 'plugin' ), 641 /* translators: Theme name and version */ 642 'themeInstallFailedLabel' => _x( '%s installation failed', 'theme' ), 637 643 'installingMsg' => __( 'Installing... please wait.' ), 638 644 'installedMsg' => __( 'Installation completed successfully.' ), … … 650 656 'deleted' => __( 'Deleted!' ), 651 657 'livePreview' => __( 'Live Preview' ), 658 /* translators: %s: Theme name */ 652 659 'activatePlugin' => is_network_admin() ? __( 'Network Activate' ) : __( 'Activate' ), 653 660 'activateTheme' => is_network_admin() ? __( 'Network Enable' ) : __( 'Activate' ), 661 /* translators: %s: Plugin name */ 662 'activatePluginLabel' => is_network_admin() ? _x( 'Network Activate %s', 'plugin' ) : _x( 'Activate %s', 'plugin' ), 663 /* translators: %s: Theme name */ 664 'activateThemeLabel' => is_network_admin() ? _x( 'Network Activate %s', 'theme' ) : _x( 'Activate %s', 'theme' ), 654 665 'activateImporter' => __( 'Activate importer' ), 655 'unknownError' => __( 'An unknown error occur ed' ),666 'unknownError' => __( 'An unknown error occurred' ), 656 667 'pluginsFound' => __( 'Number of plugins found: %d' ), 657 668 'noPluginsFound' => __( 'No plugins found. Try a different search.' ),
Note: See TracChangeset
for help on using the changeset viewer.