diff --git a/class-tgm-plugin-activation.php b/class-tgm-plugin-activation.php index 8a80b290..7c25594d 100755 --- a/class-tgm-plugin-activation.php +++ b/class-tgm-plugin-activation.php @@ -330,35 +330,43 @@ public function init() { $this->strings = array( 'page_title' => __( 'Install Required Plugins', 'tgmpa' ), 'menu_title' => __( 'Install Plugins', 'tgmpa' ), + /* translators: %s: plugin name. */ 'installing' => __( 'Installing Plugin: %s', 'tgmpa' ), + /* translators: %s: plugin name. */ 'updating' => __( 'Updating Plugin: %s', 'tgmpa' ), 'oops' => __( 'Something went wrong with the plugin API.', 'tgmpa' ), 'notice_can_install_required' => _n_noop( + /* translators: 1: plugin name(s). */ 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'tgmpa' ), 'notice_can_install_recommended' => _n_noop( + /* translators: 1: plugin name(s). */ 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'tgmpa' ), 'notice_ask_to_update' => _n_noop( + /* translators: 1: plugin name(s). */ 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'tgmpa' ), 'notice_ask_to_update_maybe' => _n_noop( + /* translators: 1: plugin name(s). */ 'There is an update available for: %1$s.', 'There are updates available for the following plugins: %1$s.', 'tgmpa' ), 'notice_can_activate_required' => _n_noop( + /* translators: 1: plugin name(s). */ 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'tgmpa' ), 'notice_can_activate_recommended' => _n_noop( + /* translators: 1: plugin name(s). */ 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'tgmpa' @@ -382,8 +390,11 @@ public function init() { 'dashboard' => __( 'Return to the Dashboard', 'tgmpa' ), 'plugin_activated' => __( 'Plugin activated successfully.', 'tgmpa' ), 'activated_successfully' => __( 'The following plugin was activated successfully:', 'tgmpa' ), + /* translators: 1: plugin name. */ 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'tgmpa' ), + /* translators: 1: plugin name. */ 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'tgmpa' ), + /* translators: 1: dashboard link. */ 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'tgmpa' ), 'dismiss' => __( 'Dismiss this notice', 'tgmpa' ), 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'tgmpa' ), @@ -2403,7 +2414,7 @@ protected function get_plugin_status_text( $slug ) { } return sprintf( - /* translators: %1$s: install status, %2$s: update status */ + /* translators: 1: install status, 2: update status */ _x( '%1$s, %2$s', 'Install/Update Status', 'tgmpa' ), $install_status, $update_status @@ -2449,15 +2460,19 @@ public function get_views() { switch ( $type ) { case 'all': + /* translators: 1: number of plugins. */ $text = _nx( 'All (%s)', 'All (%s)', $count, 'plugins', 'tgmpa' ); break; case 'install': + /* translators: 1: number of plugins. */ $text = _n( 'To Install (%s)', 'To Install (%s)', $count, 'tgmpa' ); break; case 'update': + /* translators: 1: number of plugins. */ $text = _n( 'Update Available (%s)', 'Update Available (%s)', $count, 'tgmpa' ); break; case 'activate': + /* translators: 1: number of plugins. */ $text = _n( 'To Activate (%s)', 'To Activate (%s)', $count, 'tgmpa' ); break; default: @@ -3545,22 +3560,29 @@ public function __construct( $args = array() ) { public function add_strings() { if ( 'update' === $this->options['install_type'] ) { parent::add_strings(); + /* translators: 1: plugin name, 2: action number 3: total number of actions. */ $this->upgrader->strings['skin_before_update_header'] = __( 'Updating Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); } else { + /* translators: 1: plugin name, 2: error message. */ $this->upgrader->strings['skin_update_failed_error'] = __( 'An error occurred while installing %1$s: %2$s.', 'tgmpa' ); + /* translators: 1: plugin name. */ $this->upgrader->strings['skin_update_failed'] = __( 'The installation of %1$s failed.', 'tgmpa' ); if ( $this->tgmpa->is_automatic ) { // Automatic activation strings. $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation and activation process is starting. This process may take a while on some hosts, so please be patient.', 'tgmpa' ); + /* translators: 1: plugin name. */ $this->upgrader->strings['skin_update_successful'] = __( '%1$s installed and activated successfully.', 'tgmpa' ) . ' ' . esc_html__( 'Show Details', 'tgmpa' ) . '.'; $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations and activations have been completed.', 'tgmpa' ); + /* translators: 1: plugin name, 2: action number 3: total number of of actions. */ $this->upgrader->strings['skin_before_update_header'] = __( 'Installing and Activating Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); } else { // Default installation strings. $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation process is starting. This process may take a while on some hosts, so please be patient.', 'tgmpa' ); + /* translators: 1: plugin name. */ $this->upgrader->strings['skin_update_successful'] = esc_html__( '%1$s installed successfully.', 'tgmpa' ) . ' ' . esc_html__( 'Show Details', 'tgmpa' ) . '.'; $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations have been completed.', 'tgmpa' ); + /* translators: 1: plugin name, 2: action number 3: total number of of actions. */ $this->upgrader->strings['skin_before_update_header'] = __( 'Installing Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); } } diff --git a/example.php b/example.php index ecc84655..f333ac1a 100755 --- a/example.php +++ b/example.php @@ -136,39 +136,47 @@ function my_theme_register_required_plugins() { 'strings' => array( 'page_title' => __( 'Install Required Plugins', 'theme-slug' ), 'menu_title' => __( 'Install Plugins', 'theme-slug' ), - 'installing' => __( 'Installing Plugin: %s', 'theme-slug' ), // %s = plugin name. - 'updating' => __( 'Updating Plugin: %s', 'theme-slug' ), // %s = plugin name. + /* translators: %s: plugin name. * / + 'installing' => __( 'Installing Plugin: %s', 'theme-slug' ), + /* translators: %s: plugin name. * / + 'updating' => __( 'Updating Plugin: %s', 'theme-slug' ), 'oops' => __( 'Something went wrong with the plugin API.', 'theme-slug' ), 'notice_can_install_required' => _n_noop( + /* translators: 1: plugin name(s). * / 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'theme-slug' - ), // %1$s = plugin name(s). + ), 'notice_can_install_recommended' => _n_noop( + /* translators: 1: plugin name(s). * / 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'theme-slug' - ), // %1$s = plugin name(s). + ), 'notice_ask_to_update' => _n_noop( + /* translators: 1: plugin name(s). * / 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'theme-slug' - ), // %1$s = plugin name(s). + ), 'notice_ask_to_update_maybe' => _n_noop( + /* translators: 1: plugin name(s). * / 'There is an update available for: %1$s.', 'There are updates available for the following plugins: %1$s.', 'theme-slug' - ), // %1$s = plugin name(s). + ), 'notice_can_activate_required' => _n_noop( + /* translators: 1: plugin name(s). * / 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'theme-slug' - ), // %1$s = plugin name(s). + ), 'notice_can_activate_recommended' => _n_noop( + /* translators: 1: plugin name(s). * / 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'theme-slug' - ), // %1$s = plugin name(s). + ), 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', @@ -187,9 +195,13 @@ function my_theme_register_required_plugins() { 'return' => __( 'Return to Required Plugins Installer', 'theme-slug' ), 'plugin_activated' => __( 'Plugin activated successfully.', 'theme-slug' ), 'activated_successfully' => __( 'The following plugin was activated successfully:', 'theme-slug' ), - 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'theme-slug' ), // %1$s = plugin name(s). - 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'theme-slug' ), // %1$s = plugin name(s). - 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'theme-slug' ), // %s = dashboard link. + /* translators: 1: plugin name. * / + 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'theme-slug' ), + /* translators: 1: plugin name. * / + 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'theme-slug' ), + /* translators: 1: dashboard link. * / + 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'theme-slug' ), + 'dismiss' => __( 'Dismiss this notice', 'tgmpa' ), 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'theme-slug' ), 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'theme-slug' ), diff --git a/languages/tgmpa.pot b/languages/tgmpa.pot index b040aa34..e4a406ff 100644 --- a/languages/tgmpa.pot +++ b/languages/tgmpa.pot @@ -3,14 +3,13 @@ msgid "" msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" "Project-Id-Version: TGM Plugin Activation\n" -"POT-Creation-Date: 2016-01-04 11:13+0100\n" +"POT-Creation-Date: 2016-04-19 16:55+0200\n" "PO-Revision-Date: 2016-01-04 11:07+0100\n" -"Last-Translator: Juliette Reinders Folmer \n" "Language-Team: TGMPA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7\n" "X-Poedit-Basepath: ..\n" "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -21,49 +20,48 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SearchPathExcluded-1: example.php\n" -#: class-tgm-plugin-activation.php:322 +#: class-tgm-plugin-activation.php:331 msgid "Install Required Plugins" msgstr "" -#: class-tgm-plugin-activation.php:323 +#: class-tgm-plugin-activation.php:332 msgid "Install Plugins" msgstr "" -#: class-tgm-plugin-activation.php:324 +#. translators: %s: plugin name. +#: class-tgm-plugin-activation.php:334 #, php-format msgid "Installing Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:325 +#. translators: %s: plugin name. +#: class-tgm-plugin-activation.php:336 +#, php-format +msgid "Updating Plugin: %s" +msgstr "" + +#: class-tgm-plugin-activation.php:337 msgid "Something went wrong with the plugin API." msgstr "" -#: class-tgm-plugin-activation.php:327 +#. translators: 1: plugin name(s). +#: class-tgm-plugin-activation.php:340 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:332 +#. translators: 1: plugin name(s). +#: class-tgm-plugin-activation.php:346 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:337 -#, php-format -msgid "" -"Sorry, but you do not have the correct permissions to install the %1$s " -"plugin." -msgid_plural "" -"Sorry, but you do not have the correct permissions to install the %1$s " -"plugins." -msgstr[0] "" -msgstr[1] "" - -#: class-tgm-plugin-activation.php:342 +#. translators: 1: plugin name(s). +#: class-tgm-plugin-activation.php:352 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -74,205 +72,195 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:347 +#. translators: 1: plugin name(s). +#: class-tgm-plugin-activation.php:358 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:352 -#, php-format -msgid "" -"Sorry, but you do not have the correct permissions to update the %1$s plugin." -msgid_plural "" -"Sorry, but you do not have the correct permissions to update the %1$s " -"plugins." -msgstr[0] "" -msgstr[1] "" - -#: class-tgm-plugin-activation.php:357 +#. translators: 1: plugin name(s). +#: class-tgm-plugin-activation.php:364 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:362 +#. translators: 1: plugin name(s). +#: class-tgm-plugin-activation.php:370 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:367 -#, php-format -msgid "" -"Sorry, but you do not have the correct permissions to activate the %1$s " -"plugin." -msgid_plural "" -"Sorry, but you do not have the correct permissions to activate the %1$s " -"plugins." -msgstr[0] "" -msgstr[1] "" - -#: class-tgm-plugin-activation.php:372 +#: class-tgm-plugin-activation.php:375 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:377 +#: class-tgm-plugin-activation.php:380 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:382 +#: class-tgm-plugin-activation.php:385 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:386 +#: class-tgm-plugin-activation.php:389 msgid "Return to Required Plugins Installer" msgstr "" -#: class-tgm-plugin-activation.php:387 -msgid "Return to the dashboard" +#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 +#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +msgid "Return to the Dashboard" msgstr "" -#: class-tgm-plugin-activation.php:388 class-tgm-plugin-activation.php:3023 +#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 msgid "Plugin activated successfully." msgstr "" -#: class-tgm-plugin-activation.php:389 class-tgm-plugin-activation.php:2826 +#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:390 +#. translators: 1: plugin name. +#: class-tgm-plugin-activation.php:394 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "" -#: class-tgm-plugin-activation.php:391 +#. translators: 1: plugin name. +#: class-tgm-plugin-activation.php:396 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " "Please update the plugin." msgstr "" -#: class-tgm-plugin-activation.php:392 +#. translators: 1: dashboard link. +#: class-tgm-plugin-activation.php:398 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "" -#: class-tgm-plugin-activation.php:393 +#: class-tgm-plugin-activation.php:399 msgid "Dismiss this notice" msgstr "" -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:400 +msgid "" +"There are one or more required or recommended plugins to install, update or " +"activate." +msgstr "" + +#: class-tgm-plugin-activation.php:401 msgid "Please contact the administrator of this site for help." msgstr "" -#: class-tgm-plugin-activation.php:513 +#: class-tgm-plugin-activation.php:604 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" -#: class-tgm-plugin-activation.php:514 +#: class-tgm-plugin-activation.php:605 msgid "Update Required" msgstr "" -#: class-tgm-plugin-activation.php:628 +#: class-tgm-plugin-activation.php:722 msgid "Set the parent_slug config variable instead." msgstr "" -#: class-tgm-plugin-activation.php:822 class-tgm-plugin-activation.php:3432 -msgid "Return to the Dashboard" -msgstr "" - -#: class-tgm-plugin-activation.php:929 +#: class-tgm-plugin-activation.php:1024 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." msgstr "" -#: class-tgm-plugin-activation.php:929 class-tgm-plugin-activation.php:932 +#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." msgstr "" -#: class-tgm-plugin-activation.php:932 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." msgstr "" -#: class-tgm-plugin-activation.php:1110 class-tgm-plugin-activation.php:2822 +#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "" -#: class-tgm-plugin-activation.php:1875 +#. translators: %s: version number +#: class-tgm-plugin-activation.php:2060 #, php-format -msgctxt "%s = version number" msgid "TGMPA v%s" msgstr "" -#: class-tgm-plugin-activation.php:2161 +#: class-tgm-plugin-activation.php:2349 msgid "Required" msgstr "" -#: class-tgm-plugin-activation.php:2164 +#: class-tgm-plugin-activation.php:2352 msgid "Recommended" msgstr "" -#: class-tgm-plugin-activation.php:2180 +#: class-tgm-plugin-activation.php:2368 msgid "WordPress Repository" msgstr "" -#: class-tgm-plugin-activation.php:2183 +#: class-tgm-plugin-activation.php:2371 msgid "External Source" msgstr "" -#: class-tgm-plugin-activation.php:2186 +#: class-tgm-plugin-activation.php:2374 msgid "Pre-Packaged" msgstr "" -#: class-tgm-plugin-activation.php:2203 +#: class-tgm-plugin-activation.php:2391 msgid "Not Installed" msgstr "" -#: class-tgm-plugin-activation.php:2207 +#: class-tgm-plugin-activation.php:2395 msgid "Installed But Not Activated" msgstr "" -#: class-tgm-plugin-activation.php:2209 +#: class-tgm-plugin-activation.php:2397 msgid "Active" msgstr "" -#: class-tgm-plugin-activation.php:2215 +#: class-tgm-plugin-activation.php:2403 msgid "Required Update not Available" msgstr "" -#: class-tgm-plugin-activation.php:2218 +#: class-tgm-plugin-activation.php:2406 msgid "Requires Update" msgstr "" -#: class-tgm-plugin-activation.php:2221 +#: class-tgm-plugin-activation.php:2409 msgid "Update recommended" msgstr "" -#: class-tgm-plugin-activation.php:2229 +#. translators: 1: install status, 2: update status +#: class-tgm-plugin-activation.php:2418 #, php-format -msgctxt "%1$s = install status, %2$s = update status" +msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "" -#: class-tgm-plugin-activation.php:2274 +#. translators: 1: number of plugins. +#: class-tgm-plugin-activation.php:2464 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -280,192 +268,199 @@ msgid_plural "All (%s)" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:2277 +#. translators: 1: number of plugins. +#: class-tgm-plugin-activation.php:2468 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:2280 +#. translators: 1: number of plugins. +#: class-tgm-plugin-activation.php:2472 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:2283 +#. translators: 1: number of plugins. +#: class-tgm-plugin-activation.php:2476 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:2365 +#: class-tgm-plugin-activation.php:2558 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "" -#: class-tgm-plugin-activation.php:2373 +#: class-tgm-plugin-activation.php:2566 msgid "Installed version:" msgstr "" -#: class-tgm-plugin-activation.php:2381 +#: class-tgm-plugin-activation.php:2574 msgid "Minimum required version:" msgstr "" -#: class-tgm-plugin-activation.php:2393 +#: class-tgm-plugin-activation.php:2586 msgid "Available version:" msgstr "" -#: class-tgm-plugin-activation.php:2416 -#, php-format -msgid "" -"No plugins to install, update or activate. Return to the " -"Dashboard" +#: class-tgm-plugin-activation.php:2609 +msgid "No plugins to install, update or activate." msgstr "" -#: class-tgm-plugin-activation.php:2430 +#: class-tgm-plugin-activation.php:2623 msgid "Plugin" msgstr "" -#: class-tgm-plugin-activation.php:2431 +#: class-tgm-plugin-activation.php:2624 msgid "Source" msgstr "" -#: class-tgm-plugin-activation.php:2432 +#: class-tgm-plugin-activation.php:2625 msgid "Type" msgstr "" -#: class-tgm-plugin-activation.php:2436 +#: class-tgm-plugin-activation.php:2629 msgid "Version" msgstr "" -#: class-tgm-plugin-activation.php:2437 +#: class-tgm-plugin-activation.php:2630 msgid "Status" msgstr "" -#: class-tgm-plugin-activation.php:2485 +#. translators: %s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2679 #, php-format -msgctxt "%2$s = plugin name in screen reader markup" -msgid "Install %2$s" +msgid "Install %s" msgstr "" -#: class-tgm-plugin-activation.php:2489 +#. translators: %s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2684 #, php-format -msgctxt "%2$s = plugin name in screen reader markup" -msgid "Update %2$s" +msgid "Update %s" msgstr "" -#: class-tgm-plugin-activation.php:2494 +#. translators: %s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2690 #, php-format -msgctxt "%2$s = plugin name in screen reader markup" -msgid "Activate %2$s" +msgid "Activate %s" msgstr "" -#: class-tgm-plugin-activation.php:2564 +#: class-tgm-plugin-activation.php:2760 msgid "Upgrade message from the plugin author:" msgstr "" -#: class-tgm-plugin-activation.php:2597 +#: class-tgm-plugin-activation.php:2793 msgid "Install" msgstr "" -#: class-tgm-plugin-activation.php:2603 +#: class-tgm-plugin-activation.php:2799 msgid "Update" msgstr "" -#: class-tgm-plugin-activation.php:2606 +#: class-tgm-plugin-activation.php:2802 msgid "Activate" msgstr "" -#: class-tgm-plugin-activation.php:2637 +#: class-tgm-plugin-activation.php:2833 msgid "No plugins were selected to be installed. No action taken." msgstr "" -#: class-tgm-plugin-activation.php:2639 +#: class-tgm-plugin-activation.php:2835 msgid "No plugins were selected to be updated. No action taken." msgstr "" -#: class-tgm-plugin-activation.php:2675 +#: class-tgm-plugin-activation.php:2876 msgid "No plugins are available to be installed at this time." msgstr "" -#: class-tgm-plugin-activation.php:2677 +#: class-tgm-plugin-activation.php:2878 msgid "No plugins are available to be updated at this time." msgstr "" -#: class-tgm-plugin-activation.php:2782 +#: class-tgm-plugin-activation.php:2984 msgid "No plugins were selected to be activated. No action taken." msgstr "" -#: class-tgm-plugin-activation.php:2808 +#: class-tgm-plugin-activation.php:3010 msgid "No plugins are available to be activated at this time." msgstr "" -#: class-tgm-plugin-activation.php:3022 +#: class-tgm-plugin-activation.php:3224 msgid "Plugin activation failed." msgstr "" -#: class-tgm-plugin-activation.php:3356 +#. translators: 1: plugin name, 2: action number 3: total number of actions. +#: class-tgm-plugin-activation.php:3564 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "" -#: class-tgm-plugin-activation.php:3358 +#. translators: 1: plugin name, 2: error message. +#: class-tgm-plugin-activation.php:3567 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "" -#: class-tgm-plugin-activation.php:3359 +#. translators: 1: plugin name. +#: class-tgm-plugin-activation.php:3569 #, php-format msgid "The installation of %1$s failed." msgstr "" -#: class-tgm-plugin-activation.php:3363 +#: class-tgm-plugin-activation.php:3573 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." msgstr "" -#: class-tgm-plugin-activation.php:3364 +#. translators: 1: plugin name. +#: class-tgm-plugin-activation.php:3575 #, php-format msgid "%1$s installed and activated successfully." msgstr "" -#: class-tgm-plugin-activation.php:3364 class-tgm-plugin-activation.php:3370 +#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 msgid "Show Details" msgstr "" -#: class-tgm-plugin-activation.php:3364 class-tgm-plugin-activation.php:3370 +#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 msgid "Hide Details" msgstr "" -#: class-tgm-plugin-activation.php:3365 +#: class-tgm-plugin-activation.php:3576 msgid "All installations and activations have been completed." msgstr "" -#: class-tgm-plugin-activation.php:3366 +#. translators: 1: plugin name, 2: action number 3: total number of of actions. +#: class-tgm-plugin-activation.php:3578 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "" -#: class-tgm-plugin-activation.php:3369 +#: class-tgm-plugin-activation.php:3581 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." msgstr "" -#: class-tgm-plugin-activation.php:3370 +#. translators: 1: plugin name. +#: class-tgm-plugin-activation.php:3583 #, php-format msgid "%1$s installed successfully." msgstr "" -#: class-tgm-plugin-activation.php:3371 +#: class-tgm-plugin-activation.php:3584 msgid "All installations have been completed." msgstr "" -#: class-tgm-plugin-activation.php:3372 +#. translators: 1: plugin name, 2: action number 3: total number of of actions. +#: class-tgm-plugin-activation.php:3586 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr ""