diff --git a/CHANGELOG.md b/CHANGELOG.md index bb6e55f1..ffda1020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog for TGM Plugin Activation library +## 2.6.1 (2016-05-19) + +* Fix a string replacement issue in the plugin action links. Thanks [Nilambar Sharma] for reporting. [#587], [#588] + ## 2.6.0 (2016-05-14) Since mid-February we offer a _"Custom TGMPA Generator"_. From now on, that is the preferred way for downloading your copy of TGMPA for use in a theme or plugin. @@ -324,6 +328,7 @@ TGMPA will start providing localized text strings soon. If you already have tran [Mika Epstein]: https://github.com/Ipstenu [Mohamed A. Baset]: https://github.com/SymbianSyMoh [Nate Wright]: https://github.com/NateWr +[Nilambar Sharma]: https://github.com/ernilambar [Ninos Ego]: https://github.com/Ninos [Ollie Treend]: https://github.com/ollietreend [Parhum Khoshbakht]: https://github.com/parhumm @@ -349,6 +354,8 @@ TGMPA will start providing localized text strings soon. If you already have tran [Marciel Bartzik]: http://www.bartzik.net/ [Zauan/Hogash Studio]: http://pastebin.com/u/Zauan +[#588]: https://github.com/TGMPA/TGM-Plugin-Activation/pull/588 +[#587]: https://github.com/TGMPA/TGM-Plugin-Activation/issues/587 [#577]: https://github.com/TGMPA/TGM-Plugin-Activation/pull/577 [#574]: https://github.com/TGMPA/TGM-Plugin-Activation/pull/574 [#571]: https://github.com/TGMPA/TGM-Plugin-Activation/pull/571 diff --git a/README.md b/README.md index 4a4c8afc..f32f676d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ **Lead Developers:** [Thomas Griffin](https://github.com/thomasgriffin) ([@jthomasgriffin](https://twitter.com/jthomasgriffin)), [Gary Jones](https://github.com/GaryJones) ([@GaryJ](https://twitter.com/GaryJ)), [Juliette Reinders Folmer](https://github.com/jrfnl) ([@jrf_nl](https://twitter.com/jrf_nl)) -**Version:** 2.6.0-RC1 +**Version:** 2.6.1 **Requires at least:** 3.7.0 **Tested up to:** 4.5.2 diff --git a/class-tgm-plugin-activation.php b/class-tgm-plugin-activation.php index 01b0b654..615fbca5 100755 --- a/class-tgm-plugin-activation.php +++ b/class-tgm-plugin-activation.php @@ -8,7 +8,7 @@ * or theme author for support. * * @package TGM-Plugin-Activation - * @version 2.6.0 + * @version 2.6.1 * @link http://tgmpluginactivation.com/ * @author Thomas Griffin, Gary Jones, Juliette Reinders Folmer * @copyright Copyright (c) 2011, Thomas Griffin @@ -55,7 +55,7 @@ class TGM_Plugin_Activation { * * @const string Version number. */ - const TGMPA_VERSION = '2.6.0'; + const TGMPA_VERSION = '2.6.1'; /** * Regular expression to test if a URL is a WP plugin repo URL. @@ -2692,19 +2692,19 @@ protected function get_row_actions( $item ) { // Display the 'Install' action link if the plugin is not yet available. if ( ! $this->tgmpa->is_plugin_installed( $item['slug'] ) ) { - /* translators: %s: plugin name in screen reader markup */ - $actions['install'] = __( 'Install %s', 'tgmpa' ); + /* translators: %2$s: plugin name in screen reader markup */ + $actions['install'] = __( 'Install %2$s', 'tgmpa' ); } else { // Display the 'Update' action link if an update is available and WP complies with plugin minimum. if ( false !== $this->tgmpa->does_plugin_have_update( $item['slug'] ) && $this->tgmpa->can_plugin_update( $item['slug'] ) ) { - /* translators: %s: plugin name in screen reader markup */ - $actions['update'] = __( 'Update %s', 'tgmpa' ); + /* translators: %2$s: plugin name in screen reader markup */ + $actions['update'] = __( 'Update %2$s', 'tgmpa' ); } // Display the 'Activate' action link, but only if the plugin meets the minimum version. if ( $this->tgmpa->can_plugin_activate( $item['slug'] ) ) { - /* translators: %s: plugin name in screen reader markup */ - $actions['activate'] = __( 'Activate %s', 'tgmpa' ); + /* translators: %2$s: plugin name in screen reader markup */ + $actions['activate'] = __( 'Activate %2$s', 'tgmpa' ); } } @@ -2723,7 +2723,7 @@ protected function get_row_actions( $item ) { ); $action_links[ $action ] = sprintf( - '' . esc_html( $text ) . '', + '' . esc_html( $text ) . '', // $text contains the second placeholder. esc_url( $nonce_url ), '' . esc_html( $item['sanitized_plugin'] ) . '' ); diff --git a/example.php b/example.php index 674a9de4..4d7208bb 100755 --- a/example.php +++ b/example.php @@ -10,7 +10,7 @@ * * @package TGM-Plugin-Activation * @subpackage Example - * @version 2.6.0 + * @version 2.6.1 * @author Thomas Griffin, Gary Jones, Juliette Reinders Folmer * @copyright Copyright (c) 2011, Thomas Griffin * @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later diff --git a/languages/tgmpa-cs_CZ.mo b/languages/tgmpa-cs_CZ.mo index 33b761d4..62dc2905 100644 Binary files a/languages/tgmpa-cs_CZ.mo and b/languages/tgmpa-cs_CZ.mo differ diff --git a/languages/tgmpa-cs_CZ.po b/languages/tgmpa-cs_CZ.po index 2438dcf3..29db7399 100644 --- a/languages/tgmpa-cs_CZ.po +++ b/languages/tgmpa-cs_CZ.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-05-02 05:55+0200\n" -"PO-Revision-Date: 2016-05-14 03:19+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 02:57+0200\n" +"PO-Revision-Date: 2016-05-19 02:58+0200\n" "Last-Translator: Karolína Vyskočilová \n" "Language-Team: Karolína Vyskočilová \n" "Language: cs_CZ\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Instalovat vyžadované pluginy" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Instalovat pluginy" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Instaluji plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Aktualizace pluginu:%s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Došlo k potížím s API pluginu." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -48,7 +48,7 @@ msgstr[1] "Tato šablona vyžaduje následující pluginy: %1$s." msgstr[2] "Tato šablona vyžaduje následující pluginy: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -57,7 +57,7 @@ msgstr[1] "Tato šablona doporučuje následující pluginy:%1$s." msgstr[2] "Tato šablona doporučuje následující pluginy:%1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -76,7 +76,7 @@ msgstr[2] "" "maximální kompatibility s šablonou: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -85,7 +85,7 @@ msgstr[1] "Aktualizace k dispozici pro: %1$s." msgstr[2] "Aktualizace k dispozici pro: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -96,7 +96,7 @@ msgstr[2] "" "Následující požadované pluginy jsou v současné době deaktivovany:%1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -106,41 +106,41 @@ msgstr[1] "" msgstr[2] "" "Následující doporučené pluginy jsou v současné době deaktivovany:%1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Začít instalaci pluginu" msgstr[1] "Začít instalaci pluginů" msgstr[2] "Začít instalaci pluginů" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Začít aktualizaci pluginu" msgstr[1] "Začít aktualizaci pluginů" msgstr[2] "Začít aktualizaci pluginů" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Začít aktivaci pluginu" msgstr[1] "Začít aktivaci pluginů" msgstr[2] "Začít aktivaci pluginů" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Návrat do instalátoru požadovaných pluginů" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Návrat na nástěnku" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin byl úspěšně aktivován." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "Následující plugin byl úspěšně aktivován:" @@ -148,13 +148,13 @@ msgstr[1] "Následující pluginy byly úspěšně aktivovány:" msgstr[2] "Následující pluginy byly úspěšně aktivovány:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Nic se nestalo. Plugin %1$s již byl aktivní." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -164,16 +164,16 @@ msgstr "" "Aktualizujte, prosím, tento plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Všechny pluginy byly úspěšně nainstalovány a aktivovány. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Skrýt toto oznámení" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -181,24 +181,24 @@ msgstr "" "Existuje jeden nebo více požadovaných nebo dorporučených pluginů k " "instalaci, aktualizaci nebo aktivaci." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Pro pomoc kontaktujte, prosím, administrátora tohoto webu." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Tento plugin je třeba aktualizovat, aby byl kompatibilní s vaší šablonou." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Je vyžadována aktualizace" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Doporučujeme nastavit konfigurační proměnnou parent_slug." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -206,7 +206,7 @@ msgstr "" "Vzdálený komprimovaný plugin neobsahuje složku s vyžadovaným slugem a " "přejmenování nefunguje." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -214,7 +214,7 @@ msgstr "" "Prosím obraťte se na poskytovatele pluginu a požádejte ho, aby plugin " "zabalil dle směrnic WordPressu." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -222,70 +222,70 @@ msgstr "" "Vzdálený balíček pluginu obsahuje více než jeden soubor, ale soubory nejsou " "zabaleny ve složce." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "a" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Požadovaný" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Doporučený" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "Úložiště WordPressu" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Externí zdroj" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Součást šablony" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Není nainstalováno" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Nainstalováno, ale neaktivováno" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Aktivní" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Vyžadovaná aktualizace není dostupná" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Vyžaduje aktualizaci" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Doporučujeme aktualizovat" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -295,7 +295,7 @@ msgstr[1] "Všechny (%s)" msgstr[2] "Všech (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -304,7 +304,7 @@ msgstr[1] "Instalovat (%s)" msgstr[2] "Instalovat (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -313,7 +313,7 @@ msgstr[1] "K dispozici jsou (%s) aktualizace" msgstr[2] "K dispozici jsou (%s) aktualizací" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" @@ -321,128 +321,128 @@ msgstr[0] "Aktivovat (%s)" msgstr[1] "Aktivovat (%s)" msgstr[2] "Aktivovat (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "neznámá" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Nainstalovaná verze:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimální požadovaná verze:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Dostupná verze:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Žádné pluginy k instalaci, aktualizaci nebo aktivaci." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Zdroj" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Typ" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Verze" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Stav" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Nainstalovat %s" +msgid "Install %2$s" +msgstr "Nainstalovat %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Aktualizovat %s" +msgid "Update %2$s" +msgstr "Aktualizovat %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Aktivovat %s" +msgid "Activate %2$s" +msgstr "Aktivovat %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Aktualizovat zprávu od autora pluginu:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instalovat" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Aktualizace" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Aktivovat" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "Žádné pluginy nebyly vybrány k instalaci. Akce nebyla provedena." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "Žádné pluginy nebyly vybrány k aktualizaci. Akce nebyla provedena." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "V tuto chvíli nejsou k dipozici žádné pluginy k instalaci." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "V tuto chvíli nejsou k dipozici žádné pluginy k aktualizaci." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "Žádné pluginy nebyly vybrány k aktivaci. Akce nebyla provedena." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "V tuto chvíli nejsou k dipozici žádné pluginy k aktivaci." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Aktivace pluginu selhala." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Probíhá aktualizace pluginu %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Při instalaci došlo k chybě %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Instalace %1$s se nezdařila." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -451,30 +451,30 @@ msgstr "" "operace trvat delší dobu, proto vás prosíme o trpělivost." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s byl úspěšně nainstalován a aktivován." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Zobrazit podrobnosti" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Skrýt podrobnosti" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Všechny instalace a aktivace byly úspěšně dokončeny." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Probíhá instalace a aktivace pluginu %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -483,17 +483,17 @@ msgstr "" "delší dobu, proto vás prosíme o trpělivost." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s úspěšně nainstalován." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Veškeré instalace byly dokončeny." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Probíhá instalace pluginu %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-de_DE.mo b/languages/tgmpa-de_DE.mo index aa7aa965..7aa30f05 100644 Binary files a/languages/tgmpa-de_DE.mo and b/languages/tgmpa-de_DE.mo differ diff --git a/languages/tgmpa-de_DE.po b/languages/tgmpa-de_DE.po index c3b135e9..2a294d14 100644 --- a/languages/tgmpa-de_DE.po +++ b/languages/tgmpa-de_DE.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:06+0200\n" -"PO-Revision-Date: 2016-05-14 03:19+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 02:58+0200\n" +"PO-Revision-Date: 2016-05-19 02:58+0200\n" "Last-Translator: \n" "Language-Team: TGMPA\n" "Language: de_DE\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Erforderliche Plugins installieren" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Installiere Plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installiere Plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Aktualisiere Plugin: %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Etwas mit der Plugin-API schlug fehl." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Dieses Theme erfordert folgendes Plugin: %1$s." msgstr[1] "Dieses Theme erfordert folgende Plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Dieses Theme empfiehlt das folgende Plugin: %1$s." msgstr[1] "Dieses Theme empfiehlt die folgenden Plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "maximale Kompatibilität mit diesem Theme sicherzustellen: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "Es ist ein Update verfügbar für: %1$s." msgstr[1] "Es sind ein Updates verfügbar für: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -88,58 +88,58 @@ msgstr[1] "" "Die folgenden erforderlichen Plugins sind derzeit deaktiviert: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "Das folgende empfohlene Plugin ist derzeit deaktiviert: %1$s." msgstr[1] "Die folgenden empfohlenen Plugins sind derzeit deaktiviert: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Beginne Installieren des Plugins" msgstr[1] "Beginne Installieren der Plugins" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Beginne Aktualisieren des Plugins" msgstr[1] "Beginne Aktualisieren der Plugins" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Beginne Aktivieren des Plugins" msgstr[1] "Beginne Aktivieren der Plugins" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Zum Installer für erforderliche Plugins zurückkehren" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Zum Dashboard zurückkehren" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin wurde erfolgreich aktiviert" -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "Das folgende Plugin wurde erfolgreich aktiviert:" msgstr[1] "Die folgenden Plugins wurden erfolgreich aktiviert:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Nichts wurde verändert. Plugin %1$s war bereits aktiviert." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -149,16 +149,16 @@ msgstr "" "erforderlich für dieses Theme. Bitte aktualisiere das Plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Alle Plugins wurden erfolgreich installiert und aktiviert. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Benachrichtigung verwerfen" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -166,25 +166,25 @@ msgstr "" "Es sind ein oder mehrere erforderliche oder empfohlene Plugins zum " "installieren, aktualisieren oder aktivieren verfügbar." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "" "Bitte wende dich sich an den Administrator dieser Seite um Hilfe zu erhalten." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Dieses Plugin muss aktualisiert werden, mit deinem Theme kompatibel zu sein." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Aktualisierung erforderlich" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Setze die parent_slug Variable stattdessen." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -192,7 +192,7 @@ msgstr "" "Das externe Plugin-Paket enthält keine Ordner mit der gewünschten Benennung " "(slug) und Umbenennung hat nicht funktioniert." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -200,7 +200,7 @@ msgstr "" "Bitte kontaktiere den Plugin-Anbieter und bitte ihn, seine Plugins nach den " "Wordpress-Richtlinien zu verpacken." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -208,70 +208,70 @@ msgstr "" "Das externe Plugin-Paket besteht aus mehr als einer Datei, aber die Dateien " "sind nicht in einem Ordner verpackt." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "und" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Erforderlich" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Empfohlen" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Externe Quelle" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Gepackt" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Nicht installiert" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installiert, aber nicht aktiviert" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Aktviviert" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Erforderliche Aktualisierung ist nicht verfügbar" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Aktualisierung erforderlich" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Aktualisierung empfohlen" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -280,7 +280,7 @@ msgstr[0] "Alle (%s)" msgstr[1] "Alle (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -288,7 +288,7 @@ msgstr[0] "(%s) zu installieren" msgstr[1] "(%s) zu installieren" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -296,140 +296,140 @@ msgstr[0] "(%s) Aktualisierung verfügbar" msgstr[1] "(%s) Aktualisierungen verfügbar" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "(%s) zu aktivieren" msgstr[1] "(%s) zu aktivieren" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "unbekannt" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Installierte Version:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Erforderlicher Versionsstand:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Verfügbarer Versionstand:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Keine Plugins zu installieren, aktualisieren oder aktivieren." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Quelle" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Typ" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Installiere %s" +msgid "Install %2$s" +msgstr "Installiere %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Aktualisiere %s" +msgid "Update %2$s" +msgstr "Aktualisiere %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Aktiviere %s" +msgid "Activate %2$s" +msgstr "Aktiviere %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Upgrade-Nachricht des Plugin-Autors:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Installieren" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Aktualisieren" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Aktivieren" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "Es wurden keine Plugins zur Installation ausgewählt. Nichts wurde verändert." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" "Es wurden keine Plugins zur Aktualisierung ausgewählt. Nichts wurde " "verändert." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Zurzeit sind keine Plugins zur Installation verfügbar." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Zurzeit sind keine Plugins zur Aktualisierung verfügbar." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" "Es wurden keine Plugins zur Aktivierung ausgewählt. Nichts wurde verändert." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Zurzeit sind keine Plugins zur Aktivierung verfügbar." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Aktivieren des Plugins fehlgeschlagen." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Aktualisiere Plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "" "Ein Fehler beim Installieren von %1$s ist aufgetreten: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Die Installation von %1$s ist fehlgeschlagen." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -438,30 +438,30 @@ msgstr "" "Zeit in Anspruch nehmen, bitte habe einen Moment Geduld." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s erfolgreich installiert und aktiviert." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Zeige Details" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Details ausblenden" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Alle Installationen und Aktivierungen sind erfolgreich abgeschlossen." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installieren und Aktivieren von Plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -470,17 +470,17 @@ msgstr "" "nehmen, bitte habe einen Moment Geduld." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s erfolgreich installiert." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Alle Installationen sind abgeschlossen." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installiere Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-en_AU.mo b/languages/tgmpa-en_AU.mo index a481f4a7..409c18aa 100644 Binary files a/languages/tgmpa-en_AU.mo and b/languages/tgmpa-en_AU.mo differ diff --git a/languages/tgmpa-en_AU.po b/languages/tgmpa-en_AU.po index fbeba0e9..67edd772 100644 --- a/languages/tgmpa-en_AU.po +++ b/languages/tgmpa-en_AU.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:11+0200\n" -"PO-Revision-Date: 2016-05-14 03:19+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 02:59+0200\n" +"PO-Revision-Date: 2016-05-19 02:59+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: en_AU\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Install Required Plugins" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Install Plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installing Plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Updating Plugin: %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Something went wrong with the plugin API." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "This theme requires the following plugin: %1$s." msgstr[1] "This theme requires the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "This theme recommends the following plugin: %1$s." msgstr[1] "This theme recommends the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "maximum compatibility with this theme: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "There is an update available for: %1$s." msgstr[1] "There are updates available for the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "The following required plugin is currently inactive: %1$s." msgstr[1] "The following required plugins are currently inactive: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "The following recommended plugin is currently inactive: %1$s." msgstr[1] "The following recommended plugins are currently inactive: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Begin installing plugin" msgstr[1] "Begin installing plugins" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Begin updating plugin" msgstr[1] "Begin updating plugins" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Begin activating plugin" msgstr[1] "Begin activating plugins" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Return to Required Plugins Installer" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Return to the Dashboard" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin activated successfully." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "The following plugin was activated successfully:" msgstr[1] "The following plugins were activated successfully:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "No action taken. Plugin %1$s was already active." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,38 +148,38 @@ msgstr "" "Please update the plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "All plugins installed and activated successfully. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Dismiss this notice" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Please contact the administrator of this site for help." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "This plugin needs to be updated to be compatible with your theme." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Update Required" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Set the parent_slug config variable instead." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -187,7 +187,7 @@ msgstr "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -195,7 +195,7 @@ msgstr "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -203,70 +203,70 @@ msgstr "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "and" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Required" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Recommended" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "External Source" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-Packaged" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Not Installed" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installed But Not Activated" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Active" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Required Update not Available" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Requires Update" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Update recommended" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -275,7 +275,7 @@ msgstr[0] "All (%s)" msgstr[1] "All (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -283,7 +283,7 @@ msgstr[0] "To Install (%s)" msgstr[1] "To Install (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -291,135 +291,135 @@ msgstr[0] "Update Available (%s)" msgstr[1] "Update Available (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "To Activate (%s)" msgstr[1] "To Activate (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "unknown" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Installed version:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimum required version:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Available version:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "No plugins to install, update or activate." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Source" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Type" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Install %s" +msgid "Install %2$s" +msgstr "Install %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Update %s" +msgid "Update %2$s" +msgstr "Update %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activate %s" +msgid "Activate %2$s" +msgstr "Activate %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Upgrade message from the plugin author:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Install" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Update" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activate" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "No plugins were selected to be installed. No action taken." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "No plugins were selected to be updated. No action taken." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "No plugins are available to be installed at this time." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "No plugins are available to be updated at this time." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "No plugins were selected to be activated. No action taken." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "No plugins are available to be activated at this time." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Plugin activation failed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Updating Plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "An error occurred while installing %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "The installation of %1$s failed." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -428,30 +428,30 @@ msgstr "" "while on some hosts, so please be patient." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s installed and activated successfully." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Show Details" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Hide Details" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "All installations and activations have been completed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -460,17 +460,17 @@ msgstr "" "hosts, so please be patient." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s installed successfully." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "All installations have been completed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installing Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-en_CA.mo b/languages/tgmpa-en_CA.mo index fb37202a..4772aa7d 100644 Binary files a/languages/tgmpa-en_CA.mo and b/languages/tgmpa-en_CA.mo differ diff --git a/languages/tgmpa-en_CA.po b/languages/tgmpa-en_CA.po index 1a2c067e..81aab471 100644 --- a/languages/tgmpa-en_CA.po +++ b/languages/tgmpa-en_CA.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:06+0200\n" -"PO-Revision-Date: 2016-05-14 03:19+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 02:59+0200\n" +"PO-Revision-Date: 2016-05-19 02:59+0200\n" "Last-Translator: \n" "Language-Team: TGMPA\n" "Language: en_CA\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Install Required Plugins" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Install Plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installing Plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Something went wrong with the plugin API." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "This theme requires the following plugin: %1$s." msgstr[1] "This theme requires the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "This theme recommends the following plugin: %1$s." msgstr[1] "This theme requires the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "maximum compatibility with this theme: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "There is an update available for: %1$s." msgstr[1] "There are updates available for the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,45 +87,45 @@ msgstr[0] "The following required plugin is currently inactive: %1$s." msgstr[1] "The following required plugins are currently inactive: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "The following recommended plugin is currently inactive: %1$s." msgstr[1] "The following recommended plugins are currently inactive: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Begin installing plugin." msgstr[1] "Begin installing plugins." -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Begin updating plugin." msgstr[1] "Begin updating plugins." -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Begin activating plugin." msgstr[1] "Begin activating plugins." -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Return to Required Plugins Installer" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Return to the dashboard" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin activated successfully." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 #, fuzzy msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" @@ -133,13 +133,13 @@ msgstr[0] "The following plugin was activated successfully:" msgstr[1] "The following plugin was activated successfully:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "No action taken. Plugin %1$s was already active." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -149,38 +149,38 @@ msgstr "" "Please update the plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "All plugins installed and activated successfully. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Dismiss this notice." -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Please contact the administrator of this site for help." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "This plugin needs to be updated to be compatible with your theme." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Update Required" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Set the parent_slug config variable instead." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -188,7 +188,7 @@ msgstr "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -196,7 +196,7 @@ msgstr "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -204,70 +204,70 @@ msgstr "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "and" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Required" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Recommended" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "External Source" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-Packaged" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Not Installed" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installed But Not Activated" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Active" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Required Update not Available" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Requires Update" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Update recommended" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -276,7 +276,7 @@ msgstr[0] "All (%s)" msgstr[1] "All (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -284,7 +284,7 @@ msgstr[0] "To Install (%s)" msgstr[1] "To Install (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -292,135 +292,135 @@ msgstr[0] "Update Available (%s)" msgstr[1] "Update Available (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "To Activate (%s)" msgstr[1] "To Activate (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "unknown" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Installed version:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimum required version:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Available version:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "" -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Source" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Type" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Install %s" +msgid "Install %2$s" +msgstr "Install %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Update %s" +msgid "Update %2$s" +msgstr "Update %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activate %s" +msgid "Activate %2$s" +msgstr "Activate %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Upgrade message from the plugin author:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Install" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Update" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activate" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "No plugins were selected to be installed. No action taken." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "No plugins were selected to be updated. No action taken." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "No plugins are available to be installed at this time." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "No plugins are available to be updated at this time." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "No plugins were selected to be activated. No action taken." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "No plugins are available to be activated at this time." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Plugin activation failed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Updating Plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "An error occurred while installing %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "The installation of %1$s failed." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -429,30 +429,30 @@ msgstr "" "while on some hosts, so please be patient." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s installed and activated successfully." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Show Details" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Hide Details" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "All installations and activations have been completed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -461,17 +461,17 @@ msgstr "" "hosts, so please be patient." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s installed successfully." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "All installations have been completed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installing Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-en_GB.mo b/languages/tgmpa-en_GB.mo index e1dc907a..89761299 100644 Binary files a/languages/tgmpa-en_GB.mo and b/languages/tgmpa-en_GB.mo differ diff --git a/languages/tgmpa-en_GB.po b/languages/tgmpa-en_GB.po index 961ac2c9..64b37da6 100644 --- a/languages/tgmpa-en_GB.po +++ b/languages/tgmpa-en_GB.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:07+0200\n" -"PO-Revision-Date: 2016-05-14 03:19+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:00+0200\n" +"PO-Revision-Date: 2016-05-19 03:00+0200\n" "Last-Translator: Gary Jones\n" "Language-Team: TGMPA\n" "Language: en_GB\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Install Required Plugins" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Install Plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installing Plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Something went wrong with the plugin API." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "This theme requires the following plugin: %1$s." msgstr[1] "This theme requires the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "This theme recommends the following plugin: %1$s." msgstr[1] "This theme recommends the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "maximum compatibility with this theme: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "There is an update available for: %1$s." msgstr[1] "There are updates available for the following plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "The following required plugin is currently inactive: %1$s." msgstr[1] "The following required plugins are currently inactive: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "The following recommended plugin is currently inactive: %1$s." msgstr[1] "The following recommended plugins are currently inactive: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Begin installing plugin" msgstr[1] "Begin installing plugins" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Begin updating plugin" msgstr[1] "Begin updating plugins" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Begin activating plugin" msgstr[1] "Begin activating plugins" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Return to Required Plugins Installer" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Return to the Dashboard" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin activated successfully." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "The following plugin was activated successfully:" msgstr[1] "The following plugin was activated successfully:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "No action taken. Plugin %1$s was already active." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,38 +148,38 @@ msgstr "" "Please update the plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "All plugins installed and activated successfully. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Dismiss this notice" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Please contact the administrator of this site for help." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "This plugin needs to be updated to be compatible with your theme." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Update Required" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Set the parent_slug config variable instead." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -187,7 +187,7 @@ msgstr "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -195,7 +195,7 @@ msgstr "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -203,70 +203,70 @@ msgstr "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "and" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Required" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Recommended" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "External Source" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-Packaged" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Not Installed" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installed But Not Activated" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Active" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Required Update not Available" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Requires Update" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Update recommended" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -275,7 +275,7 @@ msgstr[0] "All (%s)" msgstr[1] "All (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -283,7 +283,7 @@ msgstr[0] "To Install (%s)" msgstr[1] "To Install (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -291,135 +291,135 @@ msgstr[0] "Update Available (%s)" msgstr[1] "Update Available (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "To Activate (%s)" msgstr[1] "To Activate (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "unknown" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Installed version:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimum required version:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Available version:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "No plugins to install, update or activate." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Source" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Type" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Install %s" +msgid "Install %2$s" +msgstr "Install %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Update %s" +msgid "Update %2$s" +msgstr "Update %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activate %s" +msgid "Activate %2$s" +msgstr "Activate %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Upgrade message from the plugin author:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Install" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Update" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activate" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "No plugins were selected to be installed. No action taken." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "No plugins were selected to be updated. No action taken." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "No plugins are available to be installed at this time." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "No plugins are available to be updated at this time." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "No plugins were selected to be activated. No action taken." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "No plugins are available to be activated at this time." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Plugin activation failed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Updating Plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "An error occurred while installing %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "The installation of %1$s failed." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -428,30 +428,30 @@ msgstr "" "while on some hosts, so please be patient." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s installed and activated successfully." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Show Details" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Hide Details" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "All installations and activations have been completed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -460,17 +460,17 @@ msgstr "" "hosts, so please be patient." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s installed successfully." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "All installations have been completed." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installing Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-eo.mo b/languages/tgmpa-eo.mo index e54de1af..69ba038b 100644 Binary files a/languages/tgmpa-eo.mo and b/languages/tgmpa-eo.mo differ diff --git a/languages/tgmpa-eo.po b/languages/tgmpa-eo.po index 430a0b81..6ab54990 100644 --- a/languages/tgmpa-eo.po +++ b/languages/tgmpa-eo.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:13+0200\n" -"PO-Revision-Date: 2016-05-14 03:20+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:00+0200\n" +"PO-Revision-Date: 2016-05-19 03:00+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: eo\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Instali devigajn kromprogramojn" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Instali kromprogramojn" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Instalas kromprogramon: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Io misis pri la kromprograma API." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Tiu ĉi etoso postulas la sekvan kromprogramon: %1$s." msgstr[1] "Tiu ĉi etoso postulas la sekvajn kromprogramojn: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Tiu ĉi etoso rekomendas la sekvan kromprogramon: %1$s." msgstr[1] "Tiu ĉi etoso rekomendas la sekvajn kromprogramojn: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "certigi kongruecon kun tiu ĉi etoso: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "Ĝisdatigo haveblas por: %1$s." msgstr[1] "Ĝisdatigoj haveblas por la sekvaj kromprogramoj: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "La sekva deviga kromprogramo ne estas aktiva nun: %1$s." msgstr[1] "La sekvaj devigaj kromprogramoj ne estas aktivaj nun: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "La sekva rekomendita kromprogramo ne estas aktiva nun: %1$s." msgstr[1] "La sekvaj rekomenditaj kromprogramoj ne estas aktivaj nun: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Ek al instalo de kromprogramo" msgstr[1] "Ek al instalo de kromprogramoj" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Ek al ĝisdatigo de kromprogramo" msgstr[1] "Ek al ĝisdatigo de kromprogramoj" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Ek al aktivigo de kromprogramo" msgstr[1] "Ek al aktivigo de kromprogramoj" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Reen al instalilo de devigaj kromprogramoj" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Reen al la panelo" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Kromprogramo estis aktivigita sukcese." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Nenio farita. Kromprogramo %1$s jam estis aktiva." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,38 +148,38 @@ msgstr "" "etoso. Bonvole ĝisdatigu la kromprogramon." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Ĉiuj kromprogramoj estis sukcese instalitaj kaj aktivigitaj. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Forsendi tiun ĉi avizon" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Bonvole kontaktu la retejan administranton por helpo." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "Tiu kromprogramo bezonas esti ĝisdatigita por kongrui kun via etoso." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Deviga ĝisdatigo" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Anstataŭe, fiksu la agordan variablon parent_slug." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -187,7 +187,7 @@ msgstr "" "La fora kromprograma pakaĵo ne enhavas dosierujon kun dezirata url-nomo kaj " "alinomo ne sukcesis." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -195,7 +195,7 @@ msgstr "" "Bonvole kontaktu la programiston de tiu kromprogramo kaj petu pakon de la " "kromprogramo laŭ la gvidlinioj de WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -203,70 +203,70 @@ msgstr "" "La fora kromprograma pakaĵo enhavas pli ol unu dosieron, sed la dosieroj ne " "estas pakitaj en dosierujo." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "kaj" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Deviga" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Rekomendita" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress-deponejo" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Ekstera fonto" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Antaŭ-pakita" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Ne instalita" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Instalita sed ne aktivigita" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Aktiva" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Deviga ĝisdatigo ne havebla" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Postulas ĝisdatigon" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Ĝisdatigo rekomendita" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -275,7 +275,7 @@ msgstr[0] "Ĉiuj (%s)" msgstr[1] "Ĉiuj (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -283,7 +283,7 @@ msgstr[0] "Por instali (%s)" msgstr[1] "Por instali (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -291,135 +291,135 @@ msgstr[0] "Ĝisdatigo havebla (%s)" msgstr[1] "Ĝisdatigoj haveblaj (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "Por aktivigi (%s)" msgstr[1] "Por aktivigi (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "nekonata" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Instalita versio:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimuma deviga versio:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Havebla versio:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Neniuj kromprogramoj por instali, ĝisdatigi aŭ aktivigi." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Kromprogramo" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Fonto" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Tipo" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Versio" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Stato" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Instali %s" +msgid "Install %2$s" +msgstr "Instali %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Ĝisdatigi %s" +msgid "Update %2$s" +msgstr "Ĝisdatigi %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Aktivigi %s" +msgid "Activate %2$s" +msgstr "Aktivigi %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Ĝisdatigo-mesaĝo de la aŭtoro de la kromprogramo:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instali" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Ĝisdatigi" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Aktivigi" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "Neniuj kromprogramoj elektitaj por instalo. Nenio farita." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "Neniuj kromprogramoj elektitaj por ĝisdatigo. Nenio farita." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Neniuj kromprogramoj haveblaj por instalo nuntempe." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Nun, neniuj ĝisdatigoj por kromprogramoj." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "Neniuj kromprogramoj elektitaj por aktivigo. Neniu ago farita." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Neniuj kromprogramoj aktivigeblaj nuntempe." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Aktivigo de kromprogramo malsukcesis." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Ĝisdatigante kromprogrameton %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Eraro okazis dum instalo de %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "La instalo de %1$s malsukcesis." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -428,30 +428,30 @@ msgstr "" "bonvole estu pacienca. " #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s sukcese instalis kaj aktiviĝis." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Montri detalojn" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Kaŝi detalojn" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Ĉiuj instaloj kaj aktivigoj estas finitaj." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Instalas kaj aktivigas kromprogramon %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -460,17 +460,17 @@ msgstr "" "pacienca." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s sukcese instalis" -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Ĉiuj instaloj estas finitaj." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Instalas kromprogramon %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-es_ES.mo b/languages/tgmpa-es_ES.mo index bed3e61c..dc571803 100644 Binary files a/languages/tgmpa-es_ES.mo and b/languages/tgmpa-es_ES.mo differ diff --git a/languages/tgmpa-es_ES.po b/languages/tgmpa-es_ES.po index 2fc5508c..2bca1990 100644 --- a/languages/tgmpa-es_ES.po +++ b/languages/tgmpa-es_ES.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:15+0200\n" -"PO-Revision-Date: 2016-05-14 03:20+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:01+0200\n" +"PO-Revision-Date: 2016-05-19 03:01+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: es\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Requiere instalar plugins" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Instalar plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Instalando plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Algo salió mal con API del plugin." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Este tema requiere el siguiente plugin: %1$s." msgstr[1] "Este tema requiere los siguientes plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Este Tema recomienda utilizar el plugin: %1$s." msgstr[1] "Este Tema recomienda utilizar los plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "asegurar la máxima compatibilidad con este tema: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "Hay una actualización disponible para: %1$s." msgstr[1] "Hay actualizaciones disponibles para los siguientes plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,7 +87,7 @@ msgstr[0] "El siguiente requiere plugin está actualmente inactiva: %1$s." msgstr[1] "El siguiente requiere los plugins son actualmente inactivos: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -95,51 +95,51 @@ msgstr[0] "Recomienda el siguiente plugin está actualmente inactiva: %1$s." msgstr[1] "" "Recomienda lo siguiente los plugins son actualmente inactivos: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Comenzar a instalar el plugin" msgstr[1] "Comenzar a instalar plugins" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Comenzar la actualización del plugin" msgstr[1] "Comenzar la actualización de los plugins" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Comenzar a activar plugin" msgstr[1] "Comenzar a activar plugins" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Volver al instalador de Plugins" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Volver al Escritorio" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin activado correctamente." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "No se realizó ninguna acción. El plugin %1$s ya estaba activado." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -149,38 +149,38 @@ msgstr "" "favor, actualiza el plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Todos los plugin instalados y activados correctamente. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Descartar este aviso" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Por favor, contacta con al administrador de este sitio." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "Este plugin debe actualizarse para que sea compatible con tu tema." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Requiere actualización" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Establece la variable de configuración parent_slug en su lugar." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -188,7 +188,7 @@ msgstr "" "El paquete remoto del plugin no contiene una carpeta con el slug apropiado y " "no funcionó el cambio de nombre." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -196,7 +196,7 @@ msgstr "" "Por favor, ponte en contacto con el autor del plugin y pídele que lo " "empaquete de acuerdo a las prácticas recomendadas de WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -204,70 +204,70 @@ msgstr "" "El paquete remoto del plugin está compuesto por más de un archivo, pero los " "archivos no están dentro de una carpeta." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "y" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Obligatorio" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "RECOMENDADO" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "Repositorio WordPress" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Fuente externa" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-empaquetado" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "No Instalado" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Instalado pero no activado" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Activar" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Actualización requerida no disponible" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Requiere actualización" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Actualización recomendada" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -276,7 +276,7 @@ msgstr[0] "Todos (%s)" msgstr[1] "Todos (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -284,7 +284,7 @@ msgstr[0] "A instalar (%s)" msgstr[1] "A instalar (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -292,140 +292,140 @@ msgstr[0] "Actualización disponible (%s)" msgstr[1] "Actualizaciones disponibles (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "Para activar (%s)" msgstr[1] "Para activar (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "desconocido" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Versión instalada:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Versión mínima requerida:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Versión disponible:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "No hay plugins para instalar, actualizar o activar." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Origen" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Clase" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Instalar %s" +msgid "Install %2$s" +msgstr "Instalar %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Actualizar %s" +msgid "Update %2$s" +msgstr "Actualizar %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activar %s" +msgid "Activate %2$s" +msgstr "Activar %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Mensaje de actualización del autor del plugin:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instalar" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Actualizar" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activar:" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "No se han seleccionado plugins para instalar. No se realizará ninguna acción." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" "No se han seleccionado plugins para actualizar. No se realizará ninguna " "acción." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "No hay plugins disponibles para instalar en este momento." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "No hay plugins disponibles para activar en este momento." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" "No se han seleccionado plugins para instalar. No se realizará ninguna acción." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "No hay plugins disponibles para activar en este momento." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Fallo en la activación de Plugin." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Actualizando plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "" "A ocurrido un error durante la instalación %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "La instalación de %1$s fallida." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -434,30 +434,30 @@ msgstr "" "un poco en algunos alojamientos, por favor sea paciente." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s Instalado y activado correctamente." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Ver Detalles" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Esconder detalles" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Todas las instalaciones y activaciones se han completado." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Instalación y Activación Plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -466,17 +466,17 @@ msgstr "" "según el alojamiento, por favor sea paciente." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s instalado correctamente." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Todas las instalaciones completadas." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Instalar Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-fr_FR.mo b/languages/tgmpa-fr_FR.mo index 5191b9e7..16df22fe 100644 Binary files a/languages/tgmpa-fr_FR.mo and b/languages/tgmpa-fr_FR.mo differ diff --git a/languages/tgmpa-fr_FR.po b/languages/tgmpa-fr_FR.po index f5628963..73afc596 100644 --- a/languages/tgmpa-fr_FR.po +++ b/languages/tgmpa-fr_FR.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:07+0200\n" -"PO-Revision-Date: 2016-05-14 03:20+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:01+0200\n" +"PO-Revision-Date: 2016-05-19 03:01+0200\n" "Last-Translator: Hedi Chaibi \n" "Language-Team: TGMPA\n" "Language: fr_FR\n" @@ -14,32 +14,32 @@ msgstr "" "X-Generator: Poedit 1.8.7\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Installer les extensions requises" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Installer les extensions" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installation de l’extension : %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Mise à jour du plugin : %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Il y a eu un problème avec l’API de l’extension." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Ce thème nécessite l’extension suivante : %1$s." msgstr[1] "Ce thème nécessite les extensions suivante : %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Ce thème recommande l’extension suivante : %1$s." msgstr[1] "Ce thème recommande les extensions suivantes : %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "versions afin d’assurer une compatibilité maximale avec ce thème : %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -80,7 +80,7 @@ msgstr[1] "" "Il y’a des mises à jour disponibles pour les extensions suivantes : %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -89,7 +89,7 @@ msgstr[1] "" "Les extensions requise suivantes sont actuellement inactives : %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -97,51 +97,51 @@ msgstr[0] "L’extension recommandée suivante est actuellement inactive : %1$s. msgstr[1] "" "Les extensions recommandées suivantes sont actuellement inactives : %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Commencer à installer l’extension" msgstr[1] "Commencer à installer les extensions" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Commencer à mettre à jour l’extension" msgstr[1] "Commencer à mettre à jour les extensions" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Commencer à activer l’extension" msgstr[1] "Commencer à activer les extensions" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Retour à l’installation des extensions requises" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Retourner au tableau de bord" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Extension activée avec succès." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "L’extension suivante a été activée avec succès :" msgstr[1] "Les extensions suivantes ont été activées avec succès :" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Aucune mesure prise. L’extension %1$s était déjà active." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -151,16 +151,16 @@ msgstr "" "pour ce thème. Veuillez mettre à jour l’extension." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Toutes les extensions ont été installées et activées avec succès. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Ignorer ce message" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -168,25 +168,25 @@ msgstr "" "Il y a une ou plusieurs extensions requise ou recommandées à installer, " "mettre à jour ou activer." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Veuillez contacter l’administrateur du site pour obtenir de l’aide." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Cette extension a besoin d’être mise à jour pour être compatible avec votre " "thème." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Mise à jour requise" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Définissez la variable de configuration parent_slug à la place." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -194,7 +194,7 @@ msgstr "" "Le pack d’extension distant ne contient pas de dossier avec le nom désiré et " "le renommage ne fonctionne pas." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -202,7 +202,7 @@ msgstr "" "Veuillez contacter le développeur de l’extension et demandez un " "reconditionnement respectant les lignes directrices de WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -210,70 +210,70 @@ msgstr "" "Le pack d’extension distant se compose de plus d’un fichier, mais les " "fichiers ne sont pas assemblés dans un dossier." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "et" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Requis" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Recommandé" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "Dépôt WordPress" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Source externe" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Inclus avec le thème" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Non installé" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installé mais pas activé" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Activé" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Mise à jour requise indisponible" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Nécessite une mise à jour" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Mise à jour recommandée" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -282,7 +282,7 @@ msgstr[0] "Tous les (%s)" msgstr[1] "Tous les (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -290,7 +290,7 @@ msgstr[0] "A installer (%s)" msgstr[1] "A installer (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -298,130 +298,130 @@ msgstr[0] "Mise à jour disponible (%s)" msgstr[1] "Mise à jour disponible (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "A activer (%s)" msgstr[1] "A activer (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "inconnue" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Version installée :" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Version minimum requise :" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Version disponible :" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Aucune extension à installer, à mettre à jour ou à activer." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Extension" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Source" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Type" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Statut" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Installer %s" +msgid "Install %2$s" +msgstr "Installer %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Mettre à jour %s" +msgid "Update %2$s" +msgstr "Mettre à jour %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activer %s" +msgid "Activate %2$s" +msgstr "Activer %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Message de mise à niveau de l’auteur de l’extension :" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Installer" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Mettre à jour" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activer" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "Aucune extension n’a été sélectionnée pour être installée. Aucune action n’a " "été effectuée." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" "Aucune extension n’a été sélectionnée pour être mise à jour. Aucune action " "n’a été effectuée." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Aucune extension à installer pour le moment." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Aucune extension à mettre à jour pour le moment." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" "Aucune extension n’a été sélectionnée pour être activée. Aucune action n’a " "été effectuée." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Aucune extension à activer pour le moment." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "L’activation de l’extension a échoué." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Mise à jour de l’extension %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "" @@ -429,12 +429,12 @@ msgstr "" "strong>." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "L’installation de %1$s a échoué." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -443,30 +443,30 @@ msgstr "" "prendre du temps selon votre hébergeur, merci de bien vouloir patienter." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s installé et activé avec succès." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Afficher les détails" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Masquer les détails" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Toutes les installations et activations sont terminées." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Mise à jour et activation de l’extension %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -475,17 +475,17 @@ msgstr "" "selon votre hébergeur, merci de bien vouloir patienter." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s installé avec succès." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Toutes les installations sont terminées." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installation de l’extension %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-he_IL.mo b/languages/tgmpa-he_IL.mo index 7f5a7043..607f4fbd 100644 Binary files a/languages/tgmpa-he_IL.mo and b/languages/tgmpa-he_IL.mo differ diff --git a/languages/tgmpa-he_IL.po b/languages/tgmpa-he_IL.po index bedb67de..0bc2088d 100644 --- a/languages/tgmpa-he_IL.po +++ b/languages/tgmpa-he_IL.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:18+0200\n" -"PO-Revision-Date: 2016-05-14 03:21+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:01+0200\n" +"PO-Revision-Date: 2016-05-19 03:02+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: he\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "התקנת תוספים נדרשים" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "תוסף חדש" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "התקנת התוסף: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "התבנית דורשת את התוסף הבא: %1$s." msgstr[1] "התבנית דורשת את התוספים הבאים: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "התבנית ממליצה על התוסף הבא: %1$s." msgstr[1] "התבנית ממליצה על התוספים הבאים: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "המקסימלית לתבנית זו: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "ישנו עדכון זמין עבור: %1$s." msgstr[1] "ישנם עדכונים זמינים עבור: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "התוסף הדרוש הבא לא פעיל כרגע: %1$s." msgstr[1] "התוספים הדרושים הבאים לא פעילים כרגע: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "התוסף המומלץ הבא לא פעיל כרגע: %1$s." msgstr[1] "התוספים המומלצים הבאים לא פעילים כרגע: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "החל בהתקנת התוסף" msgstr[1] "החל בהתקנת התוספים" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "מתחיל לעדכן את התוסף" msgstr[1] "מתחיל לעדכן את התוספים" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "החל בהפעלת התוסף" msgstr[1] "החל בהפעלת התוספים" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "חזרה להתקנת תוספים נדרשים" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "חזרה ללוח הבקרה" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "התוסף הופעל בהצלחה." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "לא בוצעה כל פעולה. התוסף %1$s כבר הופעל." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -147,119 +147,119 @@ msgstr "" "התוסף לא הופעל. תבנית זו דורשת גירסה עדכנית יותר של %s. נא לעדכן את התוסף." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "כל התוספים הותקנו והופעלו בהצלחה. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "שחרר הודעה זו" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "לקבלת עזרה יש ליצור קשר עם הנהלת האתר." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "יש לעדכן תוסף זה כדי שיתאים לתבנית." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "נדרש עדכון" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "" -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 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:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." msgstr "פנו בבקשה ליוצר התוסף ובקשו ממנו לארוז את התוסף בהתאם להנחיות וורדפרס." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 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:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "ו" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, fuzzy, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "נדרש" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "מומלץ" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "מאגר וורדפרס" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "מקור חיצוני" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "ארוז מראש" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "לא מותקן" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "מותקן אך לא מופעל" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "ערכה פעילה" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "העדכון הדרוש אינו זמין" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "דרוש עדכון" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "מומלץ לעדכן" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, fuzzy, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" -msgstr "%2$s, %1$s" +msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -268,7 +268,7 @@ msgstr[0] "הכל (%s)" msgstr[1] "הכל (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -276,7 +276,7 @@ msgstr[0] "התקנה (%s)" msgstr[1] "התקנה (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -284,135 +284,135 @@ msgstr[0] "עדכונים זמינים (%s)" msgstr[1] "עדכונים זמינים (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "הפעלה (%s)" msgstr[1] "הפעלה (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "לא ידוע" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "גרסה מותקנת:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "גירסה מינימלית נדרשת:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "גירסה זמינה:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "אין תוספים להתקנה, עדכון או הפעלה." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "תוסף" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "מקור" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "סוג משרה" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "גרסא" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "סטטוס הפוסט" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 -#, php-format -msgid "Install %s" -msgstr "התקנת %s" +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 +#, fuzzy, php-format +msgid "Install %2$s" +msgstr "התקנת %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 -#, php-format -msgid "Update %s" -msgstr " עדכון %s" +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 +#, fuzzy, php-format +msgid "Update %2$s" +msgstr " עדכון %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 -#, php-format -msgid "Activate %s" -msgstr "%s מופעל" +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 +#, fuzzy, php-format +msgid "Activate %2$s" +msgstr "%2$s מופעל" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "הודעת עדכון ממפתח התוסף:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "התקן" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "עדכון" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "הפעלה" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "לא נבחרו תוספים להתקנה. לא בוצעה שום פעולה." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "לא נבחרו תוספים לעדכון. לא בוצעה שום פעולה." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "אין תוספים זמינים להתקנה." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "אין תוספים זמינים לעדכון." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "לא נבחרו תוספים להפעלה. לא בוצעה שום פעולה." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "אין תוספים זמינים להפעלה." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "הפעלת התוסף נכשלה." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "שדרוג התוסף %1$s ‏(%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "ארעה שגיאה במהלך התקנת %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "ההתקנה של %1$s נכשלה." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -421,30 +421,30 @@ msgstr "" "בסבלנות." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s הותקן והופעל בהצלחה." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "הראה פרטים" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "הסתר מידע נוסף" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "כל ההתקנות וההפעלות הושלמו." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "מתקין ומפעיל את התוסף %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -453,17 +453,17 @@ msgstr "" "בסבלנות." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s הותקן בהצלחה." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "כל ההתקנות הושלמו." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "מתקין תוסף %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-hr_HR.mo b/languages/tgmpa-hr_HR.mo index b708f1e6..e542e310 100644 Binary files a/languages/tgmpa-hr_HR.mo and b/languages/tgmpa-hr_HR.mo differ diff --git a/languages/tgmpa-hr_HR.po b/languages/tgmpa-hr_HR.po index 5a24f764..95add01c 100644 --- a/languages/tgmpa-hr_HR.po +++ b/languages/tgmpa-hr_HR.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-05-02 13:25+0200\n" -"PO-Revision-Date: 2016-05-14 03:21+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:02+0200\n" +"PO-Revision-Date: 2016-05-19 03:02+0200\n" "Last-Translator: \n" "Language-Team: TGMPA\n" "Language: hr_HR\n" @@ -15,32 +15,32 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Instalirajte potrebne dodatke" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Instalirajte dodatke" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Instaliranje dodatka: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Ažuriranje dodatka: %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Nešto je pošlo po zlu sa API-jem dodatka" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -49,7 +49,7 @@ msgstr[1] "Ova tema traži sljedeće dodatke: %1$s." msgstr[2] "Ova tema traži sljedeće dodatke: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -58,7 +58,7 @@ msgstr[1] "Ova tema preporuča sljedeće dodatke: %1$s." msgstr[2] "Ova tema preporuča sljedeće dodatke: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -77,7 +77,7 @@ msgstr[2] "" "postigla maksimalna kompatibilnost sa ovom temom: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -86,7 +86,7 @@ msgstr[1] "Postoje nadogradnje za sljedeće dodatke: %1$s." msgstr[2] "Postoje nadogradnje za sljedeće dodatke: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -95,7 +95,7 @@ msgstr[1] "Sljedeći obavezni dodaci su trenutačno neaktivni: %1$s." msgstr[2] "Sljedeći obavezni dodaci su trenutačno neaktivni: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -103,41 +103,41 @@ msgstr[0] "Sljedeći preporučeni dodatak je trenutno neaktivan: %1$s." msgstr[1] "Sljedeći preporučeni dodaci su trenutno neaktivni: %1$s." msgstr[2] "Sljedeći preporučeni dodaci su trenutno neaktivni: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Započnite instalaciju dodatka" msgstr[1] "Započnite instalaciju dodataka" msgstr[2] "Započnite instalaciju dodataka" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Započnite nadogradnju dodatka" msgstr[1] "Započnite nadogradnju dodataka" msgstr[2] "Započnite nadogradnju dodataka" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Započnite aktivaciju dodatka" msgstr[1] "Započnite aktivaciju dodataka" msgstr[2] "Započnite aktivaciju dodataka" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Vratite se na instalacijski prozor potrebnih dodataka" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Vratite se na Nadzornu ploču" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Dodatak je uspješno aktiviran." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "Sljedeći dodatak je uspješno aktiviran:" @@ -145,13 +145,13 @@ msgstr[1] "Sljedeći dodaci su uspješno aktivirani:" msgstr[2] "Sljedeći dodaci su uspješno aktivirani:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Nije poduzeta akcija. Dodatak %1$s je već aktiviran." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -161,16 +161,16 @@ msgstr "" "nadogradite dodatak." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Svi dodaci su instalirani i aktivirani uspješno. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Zanemarite ovu obavijest" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -178,24 +178,24 @@ msgstr "" "Postoji jedan ili više dodataka ili preporučenih dodataka za instalaciju, " "nadogradnju ili aktiviranje." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Molimo vas kontaktirajte administratora stranice za pomoć." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Ovaj dodatak treba biti nadograđen da bi bio kompatibilan sa vašom temom." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Nadogradnja je potrebna" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Postavite parent_slug konfiguracijsku varijablu umijesto" -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -203,7 +203,7 @@ msgstr "" "Daljinski paket dodataka ne sadrži mapu sa traženim slug-om. Preimenovanje " "nije uspjelo." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -211,7 +211,7 @@ msgstr "" "Molimo vas kontaktirajte autora dodatka i tražite ih da zapakiraju dodatak " "prema WordPressovim pravilima" -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -219,70 +219,70 @@ msgstr "" "Daljinski paket dodataka sadrži više od jedne datoteke, ali one nisu " "zapakirane unutar mape." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "i" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Potreban" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Preporučen" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPressov repozitorij" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Vanjski izvor" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Unaprijed zapakiran" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Nije instaliran" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Instaliran, ali nije aktiviran" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Aktivan" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Potrebna nadogradnja nije dostupna" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Zahtijeva nadogradnju" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Nadogradnja je preporučena" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -292,7 +292,7 @@ msgstr[1] "Svi (%s)" msgstr[2] "Svi (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -301,7 +301,7 @@ msgstr[1] "Za instalaciju (%s)" msgstr[2] "Za instalaciju (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -310,7 +310,7 @@ msgstr[1] "Nadogradnje su dostupne (%s)" msgstr[2] "Nadogradnje su dostupne (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" @@ -318,134 +318,134 @@ msgstr[0] "Za aktivirati (%s)" msgstr[1] "Za aktivirati (%s)" msgstr[2] "Za aktivirati (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "nepoznat" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Instalirana verzija:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimalno potrebna verzija:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Dostupna verzija:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Nema dodataka za instalaciju, nadogradnju ili aktivaciju." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Dodatak" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Izvor" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Tip" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Verzija" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Instalirajte %s" +msgid "Install %2$s" +msgstr "Instalirajte %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Nadogradite %s" +msgid "Update %2$s" +msgstr "Nadogradite %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Aktivirajte %s" +msgid "Activate %2$s" +msgstr "Aktivirajte %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Poruka nadogradnje od strane autora dodatka:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instalirajte" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Nadogradite" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Aktivirajte" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "Niti jedan dodatak nije izabran za instalaciju. Neće se poduzeti nikakva " "akcija." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" "Niti jedan dodatak nije izabran za nadogradnju. Neće se poduzeti nikakva " "akcija." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Trenutno nema dodataka dostupnih za instalaciju." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Trenutno nema dodataka dostupnih za nadogradnju." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" "Niti jedan dodatak nije izabran za aktivaciju. Neće se poduzeti nikakva " "akcija." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Trenutno nema dodataka dostupnih za aktivaciju." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Neuspjela aktivacija dodatka." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Nadograđivanje dodatka %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Greška prilikom instalacije %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Neuspjela instalacija %1$s." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -454,30 +454,30 @@ msgstr "" "nekim poslužiteljima. Molimo vas, budite strpljivi." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s je uspješno instaliran i aktiviran." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Prikaži detalje" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Sakrij detalje" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Sve instalacije i aktivacije su završene." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Instaliranje i aktiviranje dodatka %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -486,17 +486,17 @@ msgstr "" "poslužiteljima. Molimo vas, budite strpljivi." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s je instaliran uspješno." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Sve instalacije su završene." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Instaliranje dodatka %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-it_IT.mo b/languages/tgmpa-it_IT.mo index bb9d448a..3b076695 100644 Binary files a/languages/tgmpa-it_IT.mo and b/languages/tgmpa-it_IT.mo differ diff --git a/languages/tgmpa-it_IT.po b/languages/tgmpa-it_IT.po index f6d21f7f..08816045 100644 --- a/languages/tgmpa-it_IT.po +++ b/languages/tgmpa-it_IT.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:23+0200\n" -"PO-Revision-Date: 2016-05-14 03:21+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:03+0200\n" +"PO-Revision-Date: 2016-05-19 03:03+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: it\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Installa i Plugins richiesti" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Installa plugin" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installazione plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Qualcosa è andato storto con l'API plugin." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Questo tema richiede il seguente plugin: %1$s." msgstr[1] "Questo tema richiede i seguenti plugin: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Questo tema raccomanda il seguente plugin: %1$s." msgstr[1] "Questo tema raccomanda i seguenti plugin: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "compatibilità con questo tema: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "C'è un aggiornamento disponibile per: %1$s." msgstr[1] "Sono disponibili degli aggiornamenti per i seguenti plugin: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "Il seguente plugin richiesto è al momento inattivo: %1$s." msgstr[1] "I seguenti plugin richiesti sono al momento inattivi: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "Il seguente plugin raccomandato è al momento inattivo: %1$s." msgstr[1] "I seguenti plugin raccomandati sono al momento inattivi: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Inizio installazione plugin" msgstr[1] "Inizio installazione plugin" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Iniziare l'aggiornamento del plugin" msgstr[1] "Iniziare l'aggiornamento dei plugin" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Inizio attivazione plugin" msgstr[1] "Inizio attivazione plugin" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Ritorna all' Installer del plugin richiesto" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Ritorna alla Bacheca" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin installato corretamente" -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Non verrà eseguita alcuna azione. Il plugin %1$s è già attivo. " #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,39 +148,39 @@ msgstr "" "più recente di %s. Aggiornare il plugin. " #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Tutti i plugin installati e attivati ​​con successo. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Elimina questo avviso" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Contattare l'amministratore del sito per chiedere aiuto. " -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Questo plugin deve essere aggiornato per essere compatibile con il tema. " -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "È richiesto l'aggiornamento " -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Imposta la variabile di configurazione parent_slug" -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -188,7 +188,7 @@ msgstr "" "Il pacchetto remoto del plugin non contiene una cartella con lo slug " "desiderato e non è possibile rinominare. " -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -196,7 +196,7 @@ msgstr "" "Contatta il fornitore del plugin per chiedergli di preparare il plugin " "secondo le linee guida di WordPress. " -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -204,70 +204,70 @@ msgstr "" "Il pacchetto remoto del plugin comprende più file ma questi file on sono " "raggruppati in una cartella. " -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "e" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Obbligatorio" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Raccomandato" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Fonte esterna " -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-Packaged" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Non installato" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installato ma non attivato" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Attiva" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "L'aggiornamento richiesto non è disponibile" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Aggiornamento richiesto" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Aggiornamento consigliato" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -276,7 +276,7 @@ msgstr[0] "Tutto (%s)" msgstr[1] "Tutti (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -284,7 +284,7 @@ msgstr[0] "Installare il (%s)" msgstr[1] "Installare i (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -292,141 +292,141 @@ msgstr[0] "Aggiornamento disponibile (%s)" msgstr[1] "Aggiornamenti disponibili (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "Attivare il (%s)" msgstr[1] "Attivare i (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "sconosciuto" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Versione installata:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Versione minima richiesta:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Versione disponibile:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Nessun plugin da installare, aggiornare o attivare." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin (estensione)" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Sorgente" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Typo" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Versione" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Stato" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Installa %s" +msgid "Install %2$s" +msgstr "Installa %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Aggiorna %s" +msgid "Update %2$s" +msgstr "Aggiorna %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Attiva %s" +msgid "Activate %2$s" +msgstr "Attiva %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Messaggio di aggiornamento dall'autore del plugin:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Installa" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Aggiornare" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Attivare" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "Nessun plugin è stato selezionato per l'installazione. L'azione non è stata " "eseguita" -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" "Nessun plugin è stato selezionato per l'aggiornamento. L'azione non è stata " "eseguita" -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Nessun plugin è disponibile per l'installazione. " -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Nessun plugin è al momento disponibile per l'aggiornamento. " -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" "Nessun plugin è stato selezionato per l'attivazione. L'azione non è stata " "eseguita. " -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Nessun plugin è disponibile per l'attivazione. " -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Attivazione plugin fallita" #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Aggiornamento plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Errore durante l'installazione %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "L'installazione di %1$s fallita" -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -435,30 +435,30 @@ msgstr "" "può richiedere tempo su alcuni host, quindi per favore sii paziente." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s installato e attivato con successo" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Mostra dettagli" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Nascondi dettagli" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Tutte le installazioni e le attivazioni sono state completate." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installo e attivo plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -467,17 +467,17 @@ msgstr "" "su alcuni host, quindi per favore sii paziente." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s installato con successo" -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Tutte le installazioni sono state completate." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installazione Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-nl_NL.mo b/languages/tgmpa-nl_NL.mo index 5c8a6cd2..509277f0 100644 Binary files a/languages/tgmpa-nl_NL.mo and b/languages/tgmpa-nl_NL.mo differ diff --git a/languages/tgmpa-nl_NL.po b/languages/tgmpa-nl_NL.po index 407f29af..349c7159 100644 --- a/languages/tgmpa-nl_NL.po +++ b/languages/tgmpa-nl_NL.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:07+0200\n" -"PO-Revision-Date: 2016-05-14 03:21+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:03+0200\n" +"PO-Revision-Date: 2016-05-19 03:03+0200\n" "Last-Translator: \n" "Language-Team: TGMPA\n" "Language: nl_NL\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Installeer benodigde plugins" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Installeer plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installeren van plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Updaten van plugin: %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Er ging iets mis met de API van de plugin." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Dit thema heeft de volgende plugin nodig: %1$s." msgstr[1] "Dit thema heeft de volgende plugins nodig: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Dit theme beveelt de volgende plugin aan: %1$s." msgstr[1] "Dit theme beveelt de volgende plugins aan: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "maximale compatibiliteit met dit thema te kunnen garanderen." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "Er is een update beschikbaar voor: %1$s." msgstr[1] "Er zijn updates beschikbaar voor: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "De volgende plugin is momenteel inactief: %1$s." msgstr[1] "De volgende plugins zijn momenteel inactief: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "De volgende aanbevolen plugin is momenteel inactief: %1$s." msgstr[1] "De volgende aanbevolen plugins zijn momenteel inactief: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Begin met installeren van plugin" msgstr[1] "Begin met installeren van plugins" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Begin met updaten van plugin" msgstr[1] "Begin met updaten van plugins" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Begin met activeren van plugin" msgstr[1] "Begin met activeren van plugins" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Terug naar de benodigde plugins installer" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Terug naar dashboard" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin succesvol geactiveerd." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "De volgende plugin is succesvol gedeactiveerd:" msgstr[1] "De volgende plugins zijn succesvol gedeactiveerd:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Geen actie ondernomen. De plugin %1$s was reeds actief." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,16 +148,16 @@ msgstr "" "thema. Update de plugin s.v.p." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Alle plugins geïnstalleerd en geactiveerd. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Negeer deze melding" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -165,25 +165,25 @@ msgstr "" "Er zijn een of meer vereiste of aanbevolen plugins te installeren, bijwerken " "of activeren." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Neem contact op met de beheerder van deze website voor hulp." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Deze plugin moet geüpdatet worden om maximale compatibiliteit met dit thema " "te kunnen garanderen." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Update nodig" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Zet in plaats daarvan de parent_slug variabele configuratie." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -191,7 +191,7 @@ msgstr "" "Het externe plugin pakket bevat geen map met de gewenste slug en het " "hernoemen van de map heeft gefaald." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -199,7 +199,7 @@ msgstr "" "Neem contact op met de plugin auteur en vraag hem om deze opnieuw samen te " "stellen conform de WordPress richtlijnen." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -207,70 +207,70 @@ msgstr "" "Het externe plugin pakket bestaat uit meer dan één bestand maar deze zijn " "niet geplaatst in een map." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "en" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Benodigd" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Aanbevolen" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Externe bron" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Voorverpakt" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Niet geïnstalleerd" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Geïnstalleerd maar niet geactiveerd" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Actief" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Benodigde update niet beschikbaar" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Heeft update nodig" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Aangeraden update" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -279,7 +279,7 @@ msgstr[0] "Alle (%s)" msgstr[1] "Alle (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -287,7 +287,7 @@ msgstr[0] "Te installeren (%s)" msgstr[1] "Te installeren (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -295,125 +295,125 @@ msgstr[0] "Update beschikbaar (%s)" msgstr[1] "Update beschikbaar (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "Te activeren (%s)" msgstr[1] "Te activeren (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "onbekend" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Geïnstalleerde versie:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Minimaal vereiste versie:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Beschikbare versie:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Geen plugins om te installeren, updaten of activeren." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Bron" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Type" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Versie" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Installeer %s" +msgid "Install %2$s" +msgstr "Installeer %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Update %s" +msgid "Update %2$s" +msgstr "Update %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activeer %s" +msgid "Activate %2$s" +msgstr "Activeer %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Upgrade melding van de plugin autheur:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Installeer" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Update" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activeer" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "Geen plugins waren geselecteerd om te installeren. Geen actie ondernomen." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "Geen plugins waren geselecteerd om te updaten. Geen actie ondernomen." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Op dit moment zijn er geen plugins beschikbaar om te installeren." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Op dit moment zijn er geen plugins beschikbaar om te updaten." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "Op dit moment zijn er geen plugins beschikbaar om te installeren." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Op dit moment zijn er geen plugins beschikbaar om te activeren." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Plugin activatie niet geslaagd." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Updaten van plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "" @@ -421,12 +421,12 @@ msgstr "" "strong>" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "De installatie van %1$s is niet geslaagd." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -435,30 +435,30 @@ msgstr "" "en verschilt per hoster dus heb een moment geduld s.v.p." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s succesvol geïnstalleerd en geactiveerd." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Toon details" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Verberg details" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Alle installaties en activeringen zijn voltooid." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installeren en activeren van plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -467,17 +467,17 @@ msgstr "" "hoster dus heb een moment geduld s.v.p." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s succesvol geïnstalleerd." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Alle installaties zijn voltooid." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installeren van plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-pt_BR.mo b/languages/tgmpa-pt_BR.mo index 2956ae59..9ffbfc4f 100644 Binary files a/languages/tgmpa-pt_BR.mo and b/languages/tgmpa-pt_BR.mo differ diff --git a/languages/tgmpa-pt_BR.po b/languages/tgmpa-pt_BR.po index 5878dfce..3b20b524 100644 --- a/languages/tgmpa-pt_BR.po +++ b/languages/tgmpa-pt_BR.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-05-03 01:10+0200\n" -"PO-Revision-Date: 2016-05-14 03:21+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:04+0200\n" +"PO-Revision-Date: 2016-05-19 03:04+0200\n" "Last-Translator: Elvis Henrique Pereira \n" "Language-Team: TGMPA\n" "Language: pt_BR\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Instalar Plugins Obrigatórios" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Instalar Plugins" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Instalando Plugin: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Atualizando Plugin: %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Algo deu errado com a API do plugin." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Este tema requer o seguinte plugin: %1$s." msgstr[1] "Este tema requer os seguintes plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Este tema recomenda o seguinte plugin: %1$s." msgstr[1] "Este tema recomenda os seguintes plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "para assegurar o máximo de compatibilidade com este tema: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "Há uma atualização disponível para: %1$s." msgstr[1] "Há atualizações disponíveis para os seguintes plugins: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "O seguinte plugin necessário está atualmente inativo: %1$s." msgstr[1] "Os seguintes plugins necessários estão atualmente inativos: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "O seguinte plugin recomendado está atualmente inativo: %1$s." msgstr[1] "Os seguintes plugins recomendados estão atualmente inativos: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Iniciar a instalação do plugin" msgstr[1] "Iniciar a instalação dos plugins" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Iniciar a atualização do plugin" msgstr[1] "Iniciar as atualizações dos plugins" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Iniciar a ativação do plugin" msgstr[1] "Iniciar a ativação dos plugins" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Voltar para a instalação dos plugins requeridos" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Voltar para o Painel" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Plugin ativado com sucesso." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "O seguinte plugin foi ativado com sucesso:" msgstr[1] "Os seguintes plugins foram ativados com sucesso:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Nenhuma ação tomada. o plugin %1$s já está ativo." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,16 +148,16 @@ msgstr "" "tema. Por favor atualize o plugin." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Todos os plugins foram ativados com sucesso. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Dispensar notificação" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -165,23 +165,23 @@ msgstr "" "Há um ou mais plugins necessários ou recomendados para instalar, atualizar " "ou ativar." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Entre em contato com o administrador do site para obter ajuda." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "Este plugin precisa ser atualizado para ser compatível com o seu tema." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Atualização Necessária" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Defina a variável de configuração parent_slug." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -189,7 +189,7 @@ msgstr "" "O pacote do plugin remoto não contem a pasta com a slug desejada e a " "renomeação não funcionou." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -197,7 +197,7 @@ msgstr "" "Por favor contate o provedor do plugin e peça-lhes para empacotar seu plugin " "de acordo com as diretrizes do WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -205,70 +205,70 @@ msgstr "" "O pacote remoto de plugin consiste em mais do que um arquivo, mas os " "arquivos não são empacotados em uma pasta." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "e" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Requerido" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Recomendado" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "Repositório do WordPress" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Fonte Externa" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-empacotado" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Não instalado" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Instalado Mas Não Ativado" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Ativo" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Atualização necessária não disponivel" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Requer Atualização" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Atualização recomendada" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -277,7 +277,7 @@ msgstr[0] "Todos (%s)" msgstr[1] "Todos (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -285,7 +285,7 @@ msgstr[0] "Para instalar (%s)" msgstr[1] "Para instalar (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -293,135 +293,135 @@ msgstr[0] "Atualização Disponivel (%s)" msgstr[1] "Atualização Disponivel (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "Para Ativar (%s)" msgstr[1] "Para Ativar (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "desconhecida" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Versão instalada:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Versão mínima requerida:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Versão disponível:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Não há plugins para instalar, atualizar ou ativar." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Origem" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Tipo" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Versão" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Instalar %s" +msgid "Install %2$s" +msgstr "Instalar %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Atualizar %s" +msgid "Update %2$s" +msgstr "Atualizar %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Ativar %s" +msgid "Activate %2$s" +msgstr "Ativar %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Atualização mensagem do autor do plugin:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instalar" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Atualizar" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Ativar" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "Nenhum plugin selecionado para ser instalado. Nenhuma ação tomada." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "Nenhum plugin selecionado para ser atualizado. Nenhuma ação tomada." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Não há plugins disponíveis para serem instalados nesse momento." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Não há plugins disponíveis para serem atualizados nesse momento." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "Nenhum plugin selecionado para ser ativado. Nenhuma ação tomada." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Não há plugins disponíveis para serem ativados nesse momento." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Ativação do plugin falhou." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Atualizando Plugin %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Ocorreu um erro durante a instalação %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "A instalação do %1$s falhou." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -430,30 +430,30 @@ msgstr "" "demorar um pouco em alguns hosts, por favor tenha paciência." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s instalado e ativado com sucesso." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Mostrar Detalhes" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Ocultar Detalhes" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Todas as instalações e ativações foram concluídos." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Instalando e Ativando Plugin %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -462,17 +462,17 @@ msgstr "" "demorar um pouco em alguns hosts, por favor tenha paciência." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s instalado com sucesso." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Todas instalações terminaram." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Instalando Plugin %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-ro_RO.mo b/languages/tgmpa-ro_RO.mo index 39ae64b8..6c4c408f 100644 Binary files a/languages/tgmpa-ro_RO.mo and b/languages/tgmpa-ro_RO.mo differ diff --git a/languages/tgmpa-ro_RO.po b/languages/tgmpa-ro_RO.po index 3edf25a4..c1341821 100644 --- a/languages/tgmpa-ro_RO.po +++ b/languages/tgmpa-ro_RO.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:31+0200\n" -"PO-Revision-Date: 2016-05-14 03:21+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:04+0200\n" +"PO-Revision-Date: 2016-05-19 03:04+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: ro\n" @@ -15,32 +15,32 @@ msgstr "" "20)) ? 1 : 2);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Instalare module necesare" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Instalare module" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Instalare modul: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Ceva nu a mers bine cu API-ul modulului." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -49,7 +49,7 @@ msgstr[1] "Această temă necesită următoarele module: %1$s." msgstr[2] "Această temă necesită următoarele module: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -58,7 +58,7 @@ msgstr[1] "Această temă recomandă următoarele module: %1$s." msgstr[2] "Această temă recomandă următoarele module: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -77,7 +77,7 @@ msgstr[2] "" "compatibilitatea maximă cu această temă: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -86,7 +86,7 @@ msgstr[1] "Există actualizări disponibile pentru: %1$s." msgstr[2] "Există actualizări disponibile pentru: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -95,7 +95,7 @@ msgstr[1] "Următoarele module necesare sunt acum inactive: %1$s." msgstr[2] "Următoarele module necesare sunt acum inactive: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -103,41 +103,41 @@ msgstr[0] "Următorul modul recomandat este acum inactiv: %1$s." msgstr[1] "Următoarele module recomandate sunt acum inactive: %1$s." msgstr[2] "Următoarele module recomandate sunt acum inactive: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Încep instalarea modulului" msgstr[1] "Încep instalarea modulelor" msgstr[2] "Încep instalarea modulelor" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Încep actualizarea modulului" msgstr[1] "Încep actualizarea modulelor" msgstr[2] "Încep actualizarea modulelor" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Încep activarea modulului" msgstr[1] "Încep activarea modulelor" msgstr[2] "Încep activarea modulelor" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Înapoi la instalatorul modulelor necesare" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Înapoi la Panoul de control" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Modul activat cu succes." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" @@ -145,13 +145,13 @@ msgstr[1] "" msgstr[2] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "N-am făcut nimic. Modulul %1$s este deja activat." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -161,38 +161,38 @@ msgstr "" "Te rog actualizează modulul." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Toate modulele au fost instalate și activate cu succes. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Renunțați la această notificare" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Te rog contactează administratorul acestui sit pentru ajutor." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "Acest modul trebuie actualizat pentru a fi compatibil cu tema ta." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Actualizare necesară." -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Setează în schimb variabila de configurare parent_slug." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -200,7 +200,7 @@ msgstr "" "Pachetul modulului de la distanță nu conține un folder cu cu descriptorul " "dorit și redenumirea nu a funcționat." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -208,7 +208,7 @@ msgstr "" "Te rog contactează furnizorul modulului și cere-i să împacheteze modulul în " "conformitate cu specificațiile WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -216,70 +216,70 @@ msgstr "" "Pachetul de la distanță al modulului conține mai mult de un fișier, dar " "acestea nu sunt împachetate într-un folder." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "and" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Obligatoriu" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "RECOMANDAT" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "Depozitarul WordPress" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Sursă externă" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Pre-împachetat" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Nu este instalat" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Instalat dar ne-activat" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Activă" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Actualizarea necesară nu este disponibilă" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Necesită actualizare" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Actualizare recomandată" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -289,7 +289,7 @@ msgstr[1] "Toate (%s)" msgstr[2] "Toate (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -298,7 +298,7 @@ msgstr[1] "Pentru instalare (%s)" msgstr[2] "Pentru instalare (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -307,7 +307,7 @@ msgstr[1] "Necesită actualizare (%s)" msgstr[2] "Necesită actualizare (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" @@ -315,128 +315,128 @@ msgstr[0] "Pentru activare (%s)" msgstr[1] "Pentru activare (%s)" msgstr[2] "Pentru activare (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "necunoscută" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Versiune instalată:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Versiunea minimă necesară:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Versiune disponibilă:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Niciun modul de instalat, actualizat sau activat." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Sursa" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Tip" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Versiune" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Instalare %s" +msgid "Install %2$s" +msgstr "Instalare %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Actualizare %s" +msgid "Update %2$s" +msgstr "Actualizare %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Activare %s" +msgid "Activate %2$s" +msgstr "Activare %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Mesaj de actualizare de la furnizorul modulului:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instalează" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Salveaza" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activeaza" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "N-a fost selectat niciun modul pentru instalare. Nu s-a făcut nimic." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "N-a fost selectat niciun modul pentru actualizare. Nu s-a făcut nimic." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Niciun modul nu este disponibil acum pentru instalare." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Niciun modul nu este disponibil acum pentru actualizare." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "N-a fost selectat niciun modul pentru activare. Nu s-a făcut nimic." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Niciun modul nu este disponibil acum pentru activare." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Activarea modulului a eșuat." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Actualizez modulul %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "A apărut o eroare în timpul instalării %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Instalarea %1$s a eșuat." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -445,30 +445,30 @@ msgstr "" "unele servere de găzduire, așa că te rog să ai răbdare." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s a fost instalat și activat cu succes." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Arată detalii" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Ascunde detalii" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Toate instalările și activările s-au terminat." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Instalare și activare modul %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -477,17 +477,17 @@ msgstr "" "de găzduire, așa că te rog să ai răbdare." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s a fost instalat cu succes." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Toate instalările s-au terminat." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Instalare modul %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-ru_RU.mo b/languages/tgmpa-ru_RU.mo index 1bb1f823..7323bd56 100644 Binary files a/languages/tgmpa-ru_RU.mo and b/languages/tgmpa-ru_RU.mo differ diff --git a/languages/tgmpa-ru_RU.po b/languages/tgmpa-ru_RU.po index 5fba31a2..991285cb 100644 --- a/languages/tgmpa-ru_RU.po +++ b/languages/tgmpa-ru_RU.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-05-02 05:55+0200\n" -"PO-Revision-Date: 2016-05-14 03:22+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:08+0200\n" +"PO-Revision-Date: 2016-05-19 03:08+0200\n" "Last-Translator: vburlak \n" "Language-Team: THEMETEORY \n" "Language: ru\n" @@ -15,32 +15,32 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Установить Необходимыe Плагины" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Установить Плагины" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Установить Плагин: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "Обновление плагина: %s" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Что-то пошло не так с API плагина." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -49,7 +49,7 @@ msgstr[1] "Эта тема требует следующие плагины: %1$ msgstr[2] "Эта тема требует следующие плагины: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -58,7 +58,7 @@ msgstr[1] "Эта тема рекомендует следующие плаги msgstr[2] "Эта тема рекомендует следующие плагины: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -77,7 +77,7 @@ msgstr[2] "" "максимальную совместимость с этой темой: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -86,7 +86,7 @@ msgstr[1] "Есть обновления, доступные для следую msgstr[2] "Есть обновления, доступные для следующих плагинов: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -95,7 +95,7 @@ msgstr[1] "Следующие обязательные плагины в нас msgstr[2] "Следующие обязательные плагины в настоящее время не активны: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -103,41 +103,41 @@ msgstr[0] "Следующий рекомендуемый плагин в нас msgstr[1] "Следующие рекомендуемые плагины в настоящее время не активны: %1$s." msgstr[2] "Следующие рекомендуемые плагины в настоящее время не активны: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Начать установку плагина" msgstr[1] "Начать установку плагинов" msgstr[2] "Начать установку плагинов" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Начать обновление плагина" msgstr[1] "Начать обновление плагинов" msgstr[2] "Начать обновление плагинов" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Активировать плагин" msgstr[1] "Активировать плагины" msgstr[2] "Активировать плагины" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Вернуться к установщику необходимым Плагинов" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Вернуться в Консоль" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Плагин авктивирован успешно." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "Этот плагин был успешно активирован:" @@ -145,13 +145,13 @@ msgstr[1] "Эти плагины были успешно активирован msgstr[2] "Эти плагины были успешно активированы:" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Никаких действий не было выполнено. Плагин %1$s уже активирован." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -161,16 +161,16 @@ msgstr "" "Пожалуйста, обновите плагин." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Все плагины успешно установлены и активированы. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Закрыть это уведомление" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." @@ -178,24 +178,24 @@ msgstr "" "Есть один или несколько обязательных или рекомендуемых плагинов для " "установки, обновления или активации." -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Пожалуйста, обратитесь к администратору этого сайта за помощью." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Этот плагин должен быть обновлен, чтобы быть совместимым с вашей темой." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Требуется обновление" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Установите parent_slug переменную конфигурации." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -203,7 +203,7 @@ msgstr "" "Удаленный пакет плагина не содержит папку с желаемым slug и переименовать " "его невозможно." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -211,7 +211,7 @@ msgstr "" "Пожалуйста, обратитесь к поставщику плагинов, и попросить их упаковать свой " "плагин в соответствии с руководством WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -219,70 +219,70 @@ msgstr "" "Удаленный модуль пакета состоит из более чем одного файла, но эти файлы не " "упакованы в папку." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "и" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Необходимый" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Рекомендуемый" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "Репозиторий WordPress" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Внешний ресурс" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Упакованный в тему" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Не установлен" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Установлен, но не Активирован" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Активирован" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Необходимое Обновление не доступно" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Требуется обновление" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Рекомендуется обновление" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -292,7 +292,7 @@ msgstr[1] "Все (%s)" msgstr[2] "Все (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -301,7 +301,7 @@ msgstr[1] "Установить (%s)" msgstr[2] "Установить (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -310,7 +310,7 @@ msgstr[1] "Доступно Обновление (%s)(%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" @@ -318,128 +318,128 @@ msgstr[0] "Активировать (%s)" msgstr[1] "Активировать (%s)" msgstr[2] "Активировать (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "неизвестный" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Установленная версия:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Минимальная требуемая версия:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Доступная версия:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Нет плагинова для установки, обновления или активации." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Плагин" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Источник" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Тип" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Версия" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Статус" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Установить %s" +msgid "Install %2$s" +msgstr "Установить %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Обновить %s" +msgid "Update %2$s" +msgstr "Обновить %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Активировать %s" +msgid "Activate %2$s" +msgstr "Активировать %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Информация об обновлении от автора плагина:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Установить" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Обновить" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Активировать" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "Плагины для установки не выбраны. Никаких действий не принимается." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "Плагины для обновления не выбраны. Никаких действий не принимается." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Сейчас нет плагинов доступных для установки." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Сейчас нет плагинов доступных для обновления." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "Плагины для активации не выбраны. Никаких действий не принимается." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Сейчас нет плагинов доступных для активации." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Активация плагина не удалась." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Обновить плагин %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Во время установки %1$s произошла ошибка: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Установка %1$s завершилась ошибкой." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -449,30 +449,30 @@ msgstr "" "терпеливы." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s установлен и активирован успешно." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Показать Детали" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Скрыть Детали" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Все установки и активации были завершены." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Устанавливаю и aктивирую Плагин %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -481,17 +481,17 @@ msgstr "" "процесс может занять некоторое время. Пожалуйста, будьте терпеливы." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s установлен успешно." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Все плагины установлены успешно." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Установка плагина %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-sr_RS.mo b/languages/tgmpa-sr_RS.mo index 789b52b0..dadb9ded 100644 Binary files a/languages/tgmpa-sr_RS.mo and b/languages/tgmpa-sr_RS.mo differ diff --git a/languages/tgmpa-sr_RS.po b/languages/tgmpa-sr_RS.po index f61f9cde..2c5c2f65 100644 --- a/languages/tgmpa-sr_RS.po +++ b/languages/tgmpa-sr_RS.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:35+0200\n" -"PO-Revision-Date: 2016-05-14 03:22+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:04+0200\n" +"PO-Revision-Date: 2016-05-19 03:04+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: sr\n" @@ -15,32 +15,32 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Инсталирај неопходне додатке" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Постави додатке" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Постављање додатка: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Нешто није у реду са приказом додатка (плаг-ина)." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -49,7 +49,7 @@ msgstr[1] "Ова тема захтева следеће додатке: %1$s." msgstr[2] "Ова тема захтева следеће додатке: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -58,7 +58,7 @@ msgstr[1] "Ова тема препоручује следеће додатке: msgstr[2] "Ова тема препоручује следеће додатке: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -77,7 +77,7 @@ msgstr[2] "" "компатибилност са овом темом: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -86,7 +86,7 @@ msgstr[1] "Доступно је ажурирање за следеће дода msgstr[2] "Доступно је ажурирање за следеће додатке: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -95,7 +95,7 @@ msgstr[1] "Следећи неопходни додаци су тренутно msgstr[2] "Следећи неопходни додаци су тренутно неактивани: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, php-format msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -103,41 +103,41 @@ msgstr[0] "Следећи препоручени додатак је трену msgstr[1] "Следећи препоручени додаци су тренутно неактивани: %1$s." msgstr[2] "Следећи препоручени додаци су тренутно неактивани: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Започни инсталацију додатка" msgstr[1] "Започни инсталацију додатка" msgstr[2] "Започни инсталацију додатака" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Започни ажурирање додатка" msgstr[1] "Започни ажурирање додатака" msgstr[2] "Започни ажурирање додатака" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Започни активирање додатка" msgstr[1] "Започни активирање додатка" msgstr[2] "Започни активирање додатака" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Врати се на захтевани инсталер додатка" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Врати се на Dashboard" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Додатак активиран успешно." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" @@ -145,13 +145,13 @@ msgstr[1] "" msgstr[2] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Није извршена акција. Додатак %1$s је већ активиран." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -161,39 +161,39 @@ msgstr "" "ажурирајте додатак." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Сви додаци инсталирани и активирани успешно. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Одбаци ово обавештење" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Молимо контактирајте администратора сајта за помоћ." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Овај додатак је потребно ажурирати да би био компатибилан са Вашом темом." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Неопходно је ажурирање" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Подесите parent_slug config променљиву." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -201,7 +201,7 @@ msgstr "" "Пакет захтеваног додатка не садржи фолдер са очекиваним садржајем и промена " "назива није успела." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -209,7 +209,7 @@ msgstr "" "Молимо да контактирате аутора додатка и замолите да Вам достави додатак по " "правилима захтеваним за WordPress." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -217,70 +217,70 @@ msgstr "" "Захтевани пакет са додатком се састоји из више од једног фајла, али фајлови " "нису смештени у фолдер." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "и" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Obaveyno" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Preporučeno" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress спремиште" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Екстерни извор" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Поново запаковано" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Није инсталирано" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Инсталирано али није активирано" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Активан" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Захтевано ажурирање није доступно" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Зехтева ажурирање" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Препоручује се ажурирање" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -290,7 +290,7 @@ msgstr[1] "Сви (%s)" msgstr[2] "Сви (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -299,7 +299,7 @@ msgstr[1] "За инсталацију (%s)" msgstr[2] "За инсталацију (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -308,7 +308,7 @@ msgstr[1] "Доступно ажурирање (%s) msgstr[2] "Доступно ажурирање (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" @@ -316,131 +316,131 @@ msgstr[0] "За активацију (%s)" msgstr[1] "За активацију (%s)" msgstr[2] "За активацију (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "непозната" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Инсталирана верзија:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Минимална захтевана верзија:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Доступна верзија:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Нема додатка за инсталацију, ажурирање или активацију." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Plugin" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Izvor" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Vrsta" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Инсталирај %s" +msgid "Install %2$s" +msgstr "Инсталирај %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Ажурирај %s" +msgid "Update %2$s" +msgstr "Ажурирај %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Активирај %s" +msgid "Activate %2$s" +msgstr "Активирај %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Порука о надоградњи додатка (плаг-ина) од стране аутора:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Instaliraj" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Ažuriraj" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Activate" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" "Ни један додатак није селектован да буде активиран. Није предузета акција. " -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" "Ни један додатак није селектован да буде активиран. Није предузета акција. " -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Тренутно нема додатака доступних за инсталацију." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Тренутно нема додатака (плаг-инова) који би били апдејтовани." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" "Ни један додатак није селектован да буде активиран. Није предузета акција." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Тренутно нема додатака доступних за активацију." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Активација додатка је била неуспешна." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Ажурирање додатка %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Појавила се грешка током инсталације %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Инсталација %1$s је била неуспешна." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -449,30 +449,30 @@ msgstr "" "молимо да будете стрпљиви." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s инсталиран и активиран успешно." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Прикажи детаље" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Сакриј детаље" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Све инсталације и активације су завршене." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Инсталира се и активира додатак %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -481,17 +481,17 @@ msgstr "" "стрпљиви." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s је инсталиран успешно." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Све инсталације су завршене." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Инсталира се додатак %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa-sv_SE.mo b/languages/tgmpa-sv_SE.mo index 71c18ba5..7d3abe66 100644 Binary files a/languages/tgmpa-sv_SE.mo and b/languages/tgmpa-sv_SE.mo differ diff --git a/languages/tgmpa-sv_SE.po b/languages/tgmpa-sv_SE.po index 95a1ced3..37817331 100644 --- a/languages/tgmpa-sv_SE.po +++ b/languages/tgmpa-sv_SE.po @@ -2,9 +2,9 @@ # This file is distributed under the same license as the TGMPA package. msgid "" msgstr "" -"Project-Id-Version: TGM Plugin Activation v2.6.0\n" -"POT-Creation-Date: 2016-04-21 00:08+0200\n" -"PO-Revision-Date: 2016-05-14 03:22+0200\n" +"Project-Id-Version: TGM Plugin Activation v2.6.1\n" +"POT-Creation-Date: 2016-05-19 03:05+0200\n" +"PO-Revision-Date: 2016-05-19 03:05+0200\n" "Last-Translator: \n" "Language-Team: TGMPA\n" "Language: sv_SE\n" @@ -14,32 +14,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.7\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "Installera obligatoriska tillägg" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "Installera tillägg" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "Installerar tillägg: %s" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "Något gick fel med tilläggets API." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -47,7 +47,7 @@ msgstr[0] "Detta tema kräver följande tillägg: %1$s." msgstr[1] "Detta tema kräver följande tillägg: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -55,7 +55,7 @@ msgstr[0] "Detta tema rekommenderar följande tillägg: %1$s." msgstr[1] "Detta tema rekommenderar följande tillägg: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -71,7 +71,7 @@ msgstr[1] "" "säkerställa maximal kompatibilitet med detta tema: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -79,7 +79,7 @@ msgstr[0] "Det finns en uppdatering tillgänglig för: %1$s." msgstr[1] "Det finns uppdateringar tillgängliga för de följande tillägg: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -87,58 +87,58 @@ msgstr[0] "Följande obligatoriska tillägg är för närvarande inaktivt: %1$s. msgstr[1] "Följande obligatoriska tillägg är för närvarande inaktiva: %1$s." #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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] "Följande rekommenderade tillägg är för närvarande inaktivt: %1$s." msgstr[1] "Följande rekommenderade tillägg är för närvarande inaktiva: %1$s." -#: class-tgm-plugin-activation.php:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "Installera tillägg" msgstr[1] "Installera tillägg" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "Uppdatera tillägg" msgstr[1] "Uppdatera tillägg" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "Aktivera tillägg" msgstr[1] "Aktivera tillägg" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "Tillbaka" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "Tillbaka till panelen" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "Tillägget har aktiverats utan fel." -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "Följande tillägg har aktiverats utan fel: " msgstr[1] "Följande tillägg har aktiverats utan fel: " #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "Ingen åtgärd utfördes. Tillägg %1$s är redan aktivt." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -148,39 +148,39 @@ msgstr "" "uppdatera tillägget." #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "Alla tillägg installerades och aktiverades utan fel. %1$s" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "Avfärda" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "Var god kontakta hemsidans administratör för att få hjälp." -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" "Detta tillägg behöver uppdateras för att vara kompatibelt med ditt tema." -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "Uppdatering behövs" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "Använd parent_slug konfigurationsvariabelen istället." -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 msgid "" "The remote plugin package does not contain a folder with the desired slug " "and renaming did not work." @@ -188,7 +188,7 @@ msgstr "" "Tilläggspaketet på servern innehåller ej en mapp som har önskad slug och det " "gick inte att byta namnet." -#: class-tgm-plugin-activation.php:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." @@ -196,7 +196,7 @@ msgstr "" "Var god kontakta tilläggsleverantör och begära att de ska förpacka deras " "tillägg enligt WordPressriktlinjerna." -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 msgid "" "The remote plugin package consists of more than one file, but the files are " "not packaged in a folder." @@ -204,70 +204,70 @@ msgstr "" "Tilläggspaketet på servern bestå av mer än en fil, men filerna förpackats " "inte i en mapp." -#: class-tgm-plugin-activation.php:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "och" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "TGMPA v%s" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "Behövde" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "Rekommenderade" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "WordPress Repository" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "Extern källa" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "Förpackad" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "Ej installerad" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "Installerad men inte aktiverad" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "Aktiv" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "Obligatorisk uppdatering saknas" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "Uppdatering behövs" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "Uppdatering rekommenderades" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -276,7 +276,7 @@ msgstr[0] "Alla (%s)" msgstr[1] "Alla (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -284,7 +284,7 @@ msgstr[0] "För att installera (%s)" msgstr[1] "För att installera (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -292,135 +292,135 @@ msgstr[0] "Uppdatering tillgänglig (%s)" msgstr[1] "Uppdatering tillgänglig (%s)" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "För att aktivera (%s)" msgstr[1] "För att aktivera (%s)" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "okänt" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "Installerade version:" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "Lägsta version som stöds:" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "Tillgänglig version:" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "Inga tillägg att installera, uppdatera eller aktivera." -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "Tillägg" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "Källa" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "Typ" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "Version" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "Status" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" -msgstr "Installera %s" +msgid "Install %2$s" +msgstr "Installera %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" -msgstr "Uppdatera %s" +msgid "Update %2$s" +msgstr "Uppdatera %2$s" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" -msgstr "Aktivera %s" +msgid "Activate %2$s" +msgstr "Aktivera %2$s" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "Uppgraderingsmeddelande från tilläggets utvecklare:" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "Installera" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "Uppdatera" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "Aktivera" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "Inga tillägg valdes för att installera. Ingen åtgärd utfördes." -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "Inga tillägg valdes för att uppdatera. Ingen åtgärd utfördes." -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "Inga tillägg är tillgängliga för att installera vid denna tidpunkt." -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "Inga tillägg är tillgängliga för att uppdatera vid denna tidpunkt." -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "Inga tillägg valdes för att aktivera. Ingen åtgärd utfördes." -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "Inga tillägg är tillgängliga för att aktivera vid denna tidpunkt." -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "Aktivering av tillägg lyckades ej." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Uppdaterar tillägg %1$s (%2$d/%3$d)" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "Ett fel uppstöd under installation av %1$s: %2$s." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "Installationen av %1$s lyckades ej." -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." @@ -429,30 +429,30 @@ msgstr "" "på vissa värdar - var god vänta." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "%1$s installerades och aktiverades utan fel." -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "Visa detaljer" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "Dölja detaljer" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "Alla installationer och aktiveringar har utförts." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "Installerar och aktiverar tillägg %1$s (%2$d/%3$d)" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." @@ -461,17 +461,17 @@ msgstr "" "värdar - var god vänta." #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "%1$s installerades utan fel." -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "Alla installationer har utförts." #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr "Installerar tillägg %1$s (%2$d/%3$d)" diff --git a/languages/tgmpa.pot b/languages/tgmpa.pot index 146b2b66..d7e1e09a 100644 --- a/languages/tgmpa.pot +++ b/languages/tgmpa.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" "Project-Id-Version: TGM Plugin Activation\n" -"POT-Creation-Date: 2016-04-21 00:04+0200\n" +"POT-Creation-Date: 2016-05-19 02:57+0200\n" "PO-Revision-Date: 2016-01-04 11:07+0100\n" "Last-Translator: Juliette Reinders Folmer \n" "Language-Team: TGMPA\n" @@ -21,32 +21,32 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SearchPathExcluded-1: example.php\n" -#: class-tgm-plugin-activation.php:331 +#: class-tgm-plugin-activation.php:334 msgid "Install Required Plugins" msgstr "" -#: class-tgm-plugin-activation.php:332 +#: class-tgm-plugin-activation.php:335 msgid "Install Plugins" msgstr "" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:334 +#: class-tgm-plugin-activation.php:337 #, php-format msgid "Installing Plugin: %s" msgstr "" #. translators: %s: plugin name. -#: class-tgm-plugin-activation.php:336 +#: class-tgm-plugin-activation.php:339 #, php-format msgid "Updating Plugin: %s" msgstr "" -#: class-tgm-plugin-activation.php:337 +#: class-tgm-plugin-activation.php:340 msgid "Something went wrong with the plugin API." msgstr "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:340 +#: class-tgm-plugin-activation.php:343 #, php-format msgid "This theme requires the following plugin: %1$s." msgid_plural "This theme requires the following plugins: %1$s." @@ -54,7 +54,7 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:346 +#: class-tgm-plugin-activation.php:349 #, php-format msgid "This theme recommends the following plugin: %1$s." msgid_plural "This theme recommends the following plugins: %1$s." @@ -62,7 +62,7 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:352 +#: class-tgm-plugin-activation.php:355 #, php-format msgid "" "The following plugin needs to be updated to its latest version to ensure " @@ -74,7 +74,7 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:358 +#: class-tgm-plugin-activation.php:361 #, php-format msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -82,7 +82,7 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:364 +#: class-tgm-plugin-activation.php:367 #, php-format msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -90,58 +90,58 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name(s). -#: class-tgm-plugin-activation.php:370 +#: class-tgm-plugin-activation.php:373 #, 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:375 +#: class-tgm-plugin-activation.php:378 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:380 +#: class-tgm-plugin-activation.php:383 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:385 +#: class-tgm-plugin-activation.php:388 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:389 +#: class-tgm-plugin-activation.php:392 msgid "Return to Required Plugins Installer" msgstr "" -#: class-tgm-plugin-activation.php:390 class-tgm-plugin-activation.php:917 -#: class-tgm-plugin-activation.php:2609 class-tgm-plugin-activation.php:3646 +#: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 +#: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 msgid "Return to the Dashboard" msgstr "" -#: class-tgm-plugin-activation.php:391 class-tgm-plugin-activation.php:3225 +#: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 msgid "Plugin activated successfully." msgstr "" -#: class-tgm-plugin-activation.php:392 class-tgm-plugin-activation.php:3028 +#: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 msgid "The following plugin was activated successfully:" msgid_plural "The following plugins were activated successfully:" msgstr[0] "" msgstr[1] "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:394 +#: class-tgm-plugin-activation.php:397 #, php-format msgid "No action taken. Plugin %1$s was already active." msgstr "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:396 +#: class-tgm-plugin-activation.php:399 #, php-format msgid "" "Plugin not activated. A higher version of %s is needed for this theme. " @@ -149,119 +149,119 @@ msgid "" msgstr "" #. translators: 1: dashboard link. -#: class-tgm-plugin-activation.php:398 +#: class-tgm-plugin-activation.php:401 #, php-format msgid "All plugins installed and activated successfully. %1$s" msgstr "" -#: class-tgm-plugin-activation.php:399 +#: class-tgm-plugin-activation.php:402 msgid "Dismiss this notice" msgstr "" -#: class-tgm-plugin-activation.php:400 +#: class-tgm-plugin-activation.php:403 msgid "" "There are one or more required or recommended plugins to install, update or " "activate." msgstr "" -#: class-tgm-plugin-activation.php:401 +#: class-tgm-plugin-activation.php:404 msgid "Please contact the administrator of this site for help." msgstr "" -#: class-tgm-plugin-activation.php:604 +#: class-tgm-plugin-activation.php:607 msgid "This plugin needs to be updated to be compatible with your theme." msgstr "" -#: class-tgm-plugin-activation.php:605 +#: class-tgm-plugin-activation.php:608 msgid "Update Required" msgstr "" -#: class-tgm-plugin-activation.php:722 +#: class-tgm-plugin-activation.php:725 msgid "Set the parent_slug config variable instead." msgstr "" -#: class-tgm-plugin-activation.php:1024 +#: class-tgm-plugin-activation.php:1027 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:1024 class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 msgid "" "Please contact the plugin provider and ask them to package their plugin " "according to the WordPress guidelines." msgstr "" -#: class-tgm-plugin-activation.php:1027 +#: class-tgm-plugin-activation.php:1030 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:1211 class-tgm-plugin-activation.php:3024 +#: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 msgctxt "plugin A *and* plugin B" msgid "and" msgstr "" #. translators: %s: version number -#: class-tgm-plugin-activation.php:2060 +#: class-tgm-plugin-activation.php:2075 #, php-format msgid "TGMPA v%s" msgstr "" -#: class-tgm-plugin-activation.php:2349 +#: class-tgm-plugin-activation.php:2366 msgid "Required" msgstr "" -#: class-tgm-plugin-activation.php:2352 +#: class-tgm-plugin-activation.php:2369 msgid "Recommended" msgstr "" -#: class-tgm-plugin-activation.php:2368 +#: class-tgm-plugin-activation.php:2385 msgid "WordPress Repository" msgstr "" -#: class-tgm-plugin-activation.php:2371 +#: class-tgm-plugin-activation.php:2388 msgid "External Source" msgstr "" -#: class-tgm-plugin-activation.php:2374 +#: class-tgm-plugin-activation.php:2391 msgid "Pre-Packaged" msgstr "" -#: class-tgm-plugin-activation.php:2391 +#: class-tgm-plugin-activation.php:2408 msgid "Not Installed" msgstr "" -#: class-tgm-plugin-activation.php:2395 +#: class-tgm-plugin-activation.php:2412 msgid "Installed But Not Activated" msgstr "" -#: class-tgm-plugin-activation.php:2397 +#: class-tgm-plugin-activation.php:2414 msgid "Active" msgstr "" -#: class-tgm-plugin-activation.php:2403 +#: class-tgm-plugin-activation.php:2420 msgid "Required Update not Available" msgstr "" -#: class-tgm-plugin-activation.php:2406 +#: class-tgm-plugin-activation.php:2423 msgid "Requires Update" msgstr "" -#: class-tgm-plugin-activation.php:2409 +#: class-tgm-plugin-activation.php:2426 msgid "Update recommended" msgstr "" #. translators: 1: install status, 2: update status -#: class-tgm-plugin-activation.php:2418 +#: class-tgm-plugin-activation.php:2435 #, php-format msgctxt "Install/Update Status" msgid "%1$s, %2$s" msgstr "" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2464 +#: class-tgm-plugin-activation.php:2481 #, php-format msgctxt "plugins" msgid "All (%s)" @@ -270,7 +270,7 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2468 +#: class-tgm-plugin-activation.php:2485 #, php-format msgid "To Install (%s)" msgid_plural "To Install (%s)" @@ -278,7 +278,7 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2472 +#: class-tgm-plugin-activation.php:2489 #, php-format msgid "Update Available (%s)" msgid_plural "Update Available (%s)" @@ -286,182 +286,182 @@ msgstr[0] "" msgstr[1] "" #. translators: 1: number of plugins. -#: class-tgm-plugin-activation.php:2476 +#: class-tgm-plugin-activation.php:2493 #, php-format msgid "To Activate (%s)" msgid_plural "To Activate (%s)" msgstr[0] "" msgstr[1] "" -#: class-tgm-plugin-activation.php:2558 +#: class-tgm-plugin-activation.php:2575 msgctxt "as in: \"version nr unknown\"" msgid "unknown" msgstr "" -#: class-tgm-plugin-activation.php:2566 +#: class-tgm-plugin-activation.php:2583 msgid "Installed version:" msgstr "" -#: class-tgm-plugin-activation.php:2574 +#: class-tgm-plugin-activation.php:2591 msgid "Minimum required version:" msgstr "" -#: class-tgm-plugin-activation.php:2586 +#: class-tgm-plugin-activation.php:2603 msgid "Available version:" msgstr "" -#: class-tgm-plugin-activation.php:2609 +#: class-tgm-plugin-activation.php:2626 msgid "No plugins to install, update or activate." msgstr "" -#: class-tgm-plugin-activation.php:2623 +#: class-tgm-plugin-activation.php:2640 msgid "Plugin" msgstr "" -#: class-tgm-plugin-activation.php:2624 +#: class-tgm-plugin-activation.php:2641 msgid "Source" msgstr "" -#: class-tgm-plugin-activation.php:2625 +#: class-tgm-plugin-activation.php:2642 msgid "Type" msgstr "" -#: class-tgm-plugin-activation.php:2629 +#: class-tgm-plugin-activation.php:2646 msgid "Version" msgstr "" -#: class-tgm-plugin-activation.php:2630 +#: class-tgm-plugin-activation.php:2647 msgid "Status" msgstr "" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2679 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2696 #, php-format -msgid "Install %s" +msgid "Install %2$s" msgstr "" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2684 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2701 #, php-format -msgid "Update %s" +msgid "Update %2$s" msgstr "" -#. translators: %s: plugin name in screen reader markup -#: class-tgm-plugin-activation.php:2690 +#. translators: %2$s: plugin name in screen reader markup +#: class-tgm-plugin-activation.php:2707 #, php-format -msgid "Activate %s" +msgid "Activate %2$s" msgstr "" -#: class-tgm-plugin-activation.php:2760 +#: class-tgm-plugin-activation.php:2777 msgid "Upgrade message from the plugin author:" msgstr "" -#: class-tgm-plugin-activation.php:2793 +#: class-tgm-plugin-activation.php:2810 msgid "Install" msgstr "" -#: class-tgm-plugin-activation.php:2799 +#: class-tgm-plugin-activation.php:2816 msgid "Update" msgstr "" -#: class-tgm-plugin-activation.php:2802 +#: class-tgm-plugin-activation.php:2819 msgid "Activate" msgstr "" -#: class-tgm-plugin-activation.php:2833 +#: class-tgm-plugin-activation.php:2850 msgid "No plugins were selected to be installed. No action taken." msgstr "" -#: class-tgm-plugin-activation.php:2835 +#: class-tgm-plugin-activation.php:2852 msgid "No plugins were selected to be updated. No action taken." msgstr "" -#: class-tgm-plugin-activation.php:2876 +#: class-tgm-plugin-activation.php:2893 msgid "No plugins are available to be installed at this time." msgstr "" -#: class-tgm-plugin-activation.php:2878 +#: class-tgm-plugin-activation.php:2895 msgid "No plugins are available to be updated at this time." msgstr "" -#: class-tgm-plugin-activation.php:2984 +#: class-tgm-plugin-activation.php:3001 msgid "No plugins were selected to be activated. No action taken." msgstr "" -#: class-tgm-plugin-activation.php:3010 +#: class-tgm-plugin-activation.php:3027 msgid "No plugins are available to be activated at this time." msgstr "" -#: class-tgm-plugin-activation.php:3224 +#: class-tgm-plugin-activation.php:3251 msgid "Plugin activation failed." msgstr "" #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3564 +#: class-tgm-plugin-activation.php:3591 #, php-format msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "" #. translators: 1: plugin name, 2: error message. -#: class-tgm-plugin-activation.php:3567 +#: class-tgm-plugin-activation.php:3594 #, php-format msgid "An error occurred while installing %1$s: %2$s." msgstr "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3569 +#: class-tgm-plugin-activation.php:3596 #, php-format msgid "The installation of %1$s failed." msgstr "" -#: class-tgm-plugin-activation.php:3573 +#: class-tgm-plugin-activation.php:3600 msgid "" "The installation and activation process is starting. This process may take a " "while on some hosts, so please be patient." msgstr "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3575 +#: class-tgm-plugin-activation.php:3602 #, php-format msgid "%1$s installed and activated successfully." msgstr "" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Show Details" msgstr "" -#: class-tgm-plugin-activation.php:3575 class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 msgid "Hide Details" msgstr "" -#: class-tgm-plugin-activation.php:3576 +#: class-tgm-plugin-activation.php:3603 msgid "All installations and activations have been completed." msgstr "" #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3578 +#: class-tgm-plugin-activation.php:3605 #, php-format msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" msgstr "" -#: class-tgm-plugin-activation.php:3581 +#: class-tgm-plugin-activation.php:3608 msgid "" "The installation process is starting. This process may take a while on some " "hosts, so please be patient." msgstr "" #. translators: 1: plugin name. -#: class-tgm-plugin-activation.php:3583 +#: class-tgm-plugin-activation.php:3610 #, php-format msgid "%1$s installed successfully." msgstr "" -#: class-tgm-plugin-activation.php:3584 +#: class-tgm-plugin-activation.php:3611 msgid "All installations have been completed." msgstr "" #. translators: 1: plugin name, 2: action number 3: total number of actions. -#: class-tgm-plugin-activation.php:3586 +#: class-tgm-plugin-activation.php:3613 #, php-format msgid "Installing Plugin %1$s (%2$d/%3$d)" msgstr ""