From e9924f9e45ca281f7f3f1bdf05d598f02c494807 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 17 May 2016 13:35:59 +0200 Subject: [PATCH 1/2] Use the correct placeholder in action link strings. Issue introduced in #516. Fixes #587 --- class-tgm-plugin-activation.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/class-tgm-plugin-activation.php b/class-tgm-plugin-activation.php index 01b0b654..202259d4 100755 --- a/class-tgm-plugin-activation.php +++ b/class-tgm-plugin-activation.php @@ -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'] ) . '' ); From 4f5dcc38b55690e90c60136e5c7b8b10b3675bea Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 19 May 2016 15:31:17 +0200 Subject: [PATCH 2/2] Releasing version 2.6.1. * Upped version numbers * Added changelog * Updated .pot file and synced all translation files (and where necessary adjusted the offending string. --- CHANGELOG.md | 7 ++ README.md | 2 +- class-tgm-plugin-activation.php | 4 +- example.php | 2 +- languages/tgmpa-cs_CZ.mo | Bin 11391 -> 11326 bytes languages/tgmpa-cs_CZ.po | 196 +++++++++++++++--------------- languages/tgmpa-de_DE.mo | Bin 10644 -> 10987 bytes languages/tgmpa-de_DE.po | 196 +++++++++++++++--------------- languages/tgmpa-en_AU.mo | Bin 9775 -> 9927 bytes languages/tgmpa-en_AU.po | 196 +++++++++++++++--------------- languages/tgmpa-en_CA.mo | Bin 9395 -> 9930 bytes languages/tgmpa-en_CA.po | 196 +++++++++++++++--------------- languages/tgmpa-en_GB.mo | Bin 9732 -> 9925 bytes languages/tgmpa-en_GB.po | 196 +++++++++++++++--------------- languages/tgmpa-eo.mo | Bin 9637 -> 9966 bytes languages/tgmpa-eo.po | 196 +++++++++++++++--------------- languages/tgmpa-es_ES.mo | Bin 9920 -> 10486 bytes languages/tgmpa-es_ES.po | 196 +++++++++++++++--------------- languages/tgmpa-fr_FR.mo | Bin 10969 -> 11222 bytes languages/tgmpa-fr_FR.po | 196 +++++++++++++++--------------- languages/tgmpa-he_IL.mo | Bin 9439 -> 10347 bytes languages/tgmpa-he_IL.po | 204 ++++++++++++++++---------------- languages/tgmpa-hr_HR.mo | Bin 11038 -> 11187 bytes languages/tgmpa-hr_HR.po | 196 +++++++++++++++--------------- languages/tgmpa-it_IT.mo | Bin 9891 -> 10457 bytes languages/tgmpa-it_IT.po | 196 +++++++++++++++--------------- languages/tgmpa-nl_NL.mo | Bin 10309 -> 10483 bytes languages/tgmpa-nl_NL.po | 196 +++++++++++++++--------------- languages/tgmpa-pt_BR.mo | Bin 10446 -> 11723 bytes languages/tgmpa-pt_BR.po | 196 +++++++++++++++--------------- languages/tgmpa-ro_RO.mo | Bin 10523 -> 10803 bytes languages/tgmpa-ro_RO.po | 196 +++++++++++++++--------------- languages/tgmpa-ru_RU.mo | Bin 14436 -> 14353 bytes languages/tgmpa-ru_RU.po | 196 +++++++++++++++--------------- languages/tgmpa-sr_RS.mo | Bin 13220 -> 13711 bytes languages/tgmpa-sr_RS.po | 196 +++++++++++++++--------------- languages/tgmpa-sv_SE.mo | Bin 10001 -> 10267 bytes languages/tgmpa-sv_SE.po | 196 +++++++++++++++--------------- languages/tgmpa.pot | 186 ++++++++++++++--------------- 39 files changed, 1774 insertions(+), 1767 deletions(-) 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 202259d4..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. 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 33b761d41aec3f09c39d6139ff6896743def3e0f..62dc290557478f9e7fbb67d1ecc45b46eeb8cc88 100644 GIT binary patch delta 2814 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\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 aa7aa9652c4f184e87e781d894d96071451168a4..7aa30f052a7cee39f076067d41e8f1bcd4fa951c 100644 GIT binary patch delta 2818 zcmZ|Pdu&rx9Ki8Y80-n_Si80B9+z(2I<{J!9|DPqMll2v6^tTLM1qg+Z|$5Q+_d*|&bjBF$M5{w zXBS;s(tmDT+H;C)CEsGcIU}W})QwR}SyI;EU(`!*!f2)3I2$vt565C0`KWE&7U3?O zg6FUj?deKQ#TM+qIF3`QU%f+NA`PFWypFZhYZyHrmtii3Fb6jyUDV?^2A@tn--{0F zZ=wrNA`_@@(SyIE9ZNEmnv9ds$^5E^LIVw3QC567rA=V@MEGJ*zLpDd@x{crWv-2!&O61oX0eTW-yx>c$9_#Upq z^gLd|ew>HVQqm@X}BF_Cj%%ueFkO1y(p0xML6Wl?O2XplpLCeRk#WzcXlFEs;3Ist|ZHT z8YD@Mqg>x%Eq;%3W_B`5CY+2Mx9UKda9*nJL)l>v@4>?;6JE!5baUWOVE~KpS8T!D zeroL$=HU$7jnd&XH%>)eLfO%Elm(1owM1JLq3o;{-Pn$DGyx=N>M^XuJxFlW32eqM zP;$w}Z(SD9-$-E!g$Pc?12_%OVJkZ5y#pV_ozk8%NLXYcm+?^?QO1pH2S#uw%28cI zS>WF&3vwIWxaJs2ZIN`FOF_=$6iRlUMcL`s*nk(2MXO@ACkt&tsYkE|2arTpM^KLN zW0Z+6rM!YN?jI=ENLJ&tkWUzpbT1`Sw(wvpZkG-f+_-k(Rvf@O94n)9wPF<8QuTwl zhWgv7dO6$NOua(3%e4+ubgNK{Tp{`1X1##GBu@^~A{UiP3w_!vsopF|n=YaEkF;XDOHc^Z6rQ+kcdR}nLM z!?CzO6f(PvSRxQGW3lc;D72wYAIo%R@x0dXG=e^sZp)T}>IlSp*P8m_0%wNL9f%~t zai4yPX> ze=OEI6c_!Xt#UYGmu;RqR9tp<+F-;Z_R`@lo%WjHinhyn!SOZp=9VaqwzZFG<^PR z9EA&$=ie7!+q+hJs1DNRwtKxP2kzKQ`>XTyi;e>l*9>nlliidc6)}=1nJ#sDhO^v| z#rDSHhCk6AG~-b-ZnD$=X4E$4Ed7~ty3Q(^q30KENQSY)m9M`n^5`tr{5%<9IK?Wu zscIm6d3n(}1yGs@hwoS-!(pIKlEzZ#&lr-rF za;EC5B@6V-(i4Z$%8pv}`^JuBM$R5Tz!uMrpR6<7;bhZBcNztW=mDMHD=rwN(3b<1`o7Oe_mO(IMqhPla1s<+jfVCiCa(boOe}Dmr8^?%|3rP99RDU D%o{kv delta 3320 zcmb8wdu&_P9l-IMkfv!G@@n2mlbeT=IEfuQNz>GcQ}Qg$+7OzgFiniQ_HE+UT&KP_ zAsq!HUSdT<9S2ZhLVI;@hBQJY&{#zz*bqW{2#HG7=p?jh+A5?@Y@ND4%DzAQ8Wbsi zY)AU}bI!Tf_nyb^*jMMDolRaT&3R6v946|B_p>!EiKn;lL0R3ZX&rb9<@$Nd!*$$_ z?_n-}i2e8xwqhAKNqZ3YVggI?RrKLIX_MM@DqVE6ZPTbK7`^Tu`I@aRHC@;E+O<2O0%CQgqIEB@C8htX==c&j@f8%%)`)KcCdL4Ki1NfZd z?{R?kc1CwAj^l1TgeIOrS&f{4A6@*uw59!z2&UG%=Ei- z$e#TIb$lBo7yg26cmpK|8Y@UFbYn9PqwM)nyaOM?yR$Uyx7bO$jRcVuokez4JBhM# zr=9lKt62XDI-aFNUUV5HTeI1)gE)#ccou{BGnASC4acyPi*h~A2dk`|L7B)4C@*^1 z>3;)dLhqs^E85Rd9{d_sv4l8_UTDPvS5 zUy`!dlDU$Nc|@l4P#Gj7YXd|!v5$~K@~4Wd4(XFhC?9qcl8l*>>r`af=ZV`0IUW3f zrpm7L&ZZMdmP88Mw4un-^ZT@+NWw{(N~85UW{}^AOp)v_Cx)Dk0c1y0r(rggSXx9(8dYUO4Er<8K!bOaoFkDk6)5y zAC(T5UuETXDo<{0?MT>;u7qqu%T#oim987=qg$&#Whdh1!mz7H{bcJu z)Ju6iRo(MT5x%L<+97+{%5nKytS;Tv)1rQzH?h6N(%Y#=x?R1hdRuTqJF;zH?WJu^ z*($H#m9?7%u`J~&a;qzat3;KG7oEAK#qz3)MUASyxK0fg4-$>)9Q6yucd9>?6skaJ zqk6QYR6SpE7xk#RRvJ;?-m#!&%e?B5vY>ja%vQU~d)15OUCLLUgMRgXd0lQ(IKFJ! z>RNegrdnU&+N8Q#(UfJWKUCCbuDxB+nW_G}Vr;`~Zm+!Ot07B|ngP9O#YkAuxT%{7 zec3!=#_ufu<(vVzWdf0|pL zOjnzR+g+A>s9WwC)@Bm%<3`x_?2mX3r{5gV=k^`cXPj51_f`h9(&O#-`toP)nDdM! zjF3&AXPnIo=siAvzsJ|->GA76U%=Pj>Fe>yjh;isN>nD3zAx$AxXa`3(|x@G|DN=X z2SS$ZnM;IBD;BcjiGZGeAY?8qhZYRaoDsS&HJ+J~&pQKp#JG2SBLCq2gA-qj+0W3% z;-+nwJnPgFqq2=vyL%}XikgFZcrlc)l7=0epPTdyd~u_^^q7(GOqk(#Bx)`M^ns&M zJD%x~;0RfHQK!UWu+mjfAb%s$M2zHFdtaS-o3b zul`y+sS0Z<)T1?}YOaR=7Zs}+<@1%AQ)Jb8?G80u>&pN9yjbdJ?evC}x>!5DpB$_s%h@y z#na7Zy6dgxVf9(_NV+lJGLkxIXIj2h!DOSBtsgTMV+)2AUW~DUrdI`BwtCfdlBia} z)`vz)Moos7MSJv7d$ZoOJ&9)jf)n28-?cGFklaqpMfK1b?ZIaZN+iQ3HKmEtu z^`)CU=D2&f%-ZZZ>+ZHqpTF*|Q&k;b-mt*Qjw6SU8Ye=gX=}@zN6w+K$wAzB`u?Yz F{tM2LV3q&? 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 a481f4a7ab64d7a7533e816107f2e09b39c1890f..409c18aaff2815f20c067f10df375c37116c5691 100644 GIT binary patch literal 9927 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 literal 9775 zcmeI1TWlOx8OKjkmx~*qq(E;JPE4HUwwqn&+D#nT#7^oGCmUZHq*5j0-DB_6voo8S zS#K-|h)|@WLWPhTq&`s)yr6>mQV>YIv?`)p9zYcj(54a+@X$U)eMP|Un>n-VTM`>7 zZyx3Nw`XR~?fd@cJ7-Sb+SK!$;+iCVlJx2Zr7l444*qZz-mlaSScLNYi|_+*9^MHr z!}q~w;ePlW+zNkh^Y6jWlHWn0P4G!rfR`+P3U`se3h#y+Kd974poSY^0aAq;guQUs zKCi%g$)ATB&cg@b^HAD(8TP^7!jHpuU=ePhlKbFZDE&AErQct*d>QT~|1R7C`xs;i zj#@qq50ZZcehB^>9)P`c)`v%-*yAPmDfkO0?fnIwhu0wg)EI>+s?I@%u4dtbForVz z@4_wc2k;*F8@LNzg;IXwhn3n6?}O6bG0R6GLse(syYO*Xg(FmY3BCy1aOYhqe+V`C z2R^D)9Ug`T{s`9KofuQtgk|`K&EJEw&XfN#JPY51qM>~sQ>q6(1EpWzfzqGvK?lA7 zWqh~e6!FvDP{XZI{C@&I1Rsau_pd{WsAu43;P;{U`Biutz75aZhA%&n`s*^r5}m#X z#jdYIvGbpy^yexRfByq+g%2Vk$qzx%>6f7N>sL_p@kh)5La~1VXG%YxfHIB?Q2g;V zDE)mFA{}+bK7RpHRJ~;HzYeAUZ$N418Wf%O+@I?7At*W>ggjCKlzw~@NmPyLKPGX6h6(dnBIld26=CU&|XO8FB|bUFd0y{}k)1Bx!b1x2S3ePp3Nl z7i^QC)+yhD{8Nu@PIcObqSLpb=<_&66#fL3;a!MD@?-Ek{5d=e@1?VounBwMYf$?2 zJ1G766LjF;pp5TGf9j`GP?L9{`2R8#onC?B_g_QN>1#IsS9m-5zrz#opYS$#n6!^1 zHp-Ee#Zq#t2NXKP`}b_AZO=+|UnwogQE0T&(MTL1?@SsZ&p35U>^5#*%nD(x#S%f>s1Tj9RqxX2 z%bNM%*qOX&G;PChBIB8=#DyiJ$>Yw&hFWNdm5O#owDzKQR4W#YwUv#jsfuTu$PiEb zm=R%Z%wKEZYG$w#%e<2Caul}lZ!n_)1=biqOrB%@iWvmv%JKm7i&yuZ#gi}4!q8iWjO(e}pn-JPk^RV!r~Y(L?VIABZ-56XCxxFBONBJ9LkRt3`CbkH;qnp`CvU`>q~ z;&a3JRKf2w1ayAr$#m{ZUpmn-dm7oN4e6Q&qWjz4^O)@dd>;mBpi#jn3Q=nUJu%x*ft(C3c!=)QV{*!x^{IE@>bj(l&;g! zWb$VbWwEN4774rB%B+hqlC{~7y?H`aQjb~LGRsS+A$axW?Sf_}#`D8)Tj@`2m4p>K=-bS(tCG(jzMsBq8|CAyqN@6^G+oUo@7s(8>!`Nze}1WKQl}@UF>ATH8+sopD*-QPEX{HvFVrZ z*xV3Hd`S-!iu-egy}5y+E)+_|;?BZAL0-&_nK@U!3>Uq(FIU{F3wuh%htu~?I#HaP z2pvCS;g*2Wd(!b|T39$YVVuT-e2ERjx$|R_$i#z_6UTE0yYESJ(zDf4cC0z+j&5d<2e=vWbS0!4q%ZPk@tRE<(p+%;f*k=7e zL5`ZTJ%9EQzwBcm(b4+R0gHM1anapFuOA(xXO%0S0NB+c;wz86){+B@R`PvXTe0B! z(Lr+LyMA=Aespjvjx5%X4wA(`{VMIAB6W_O(>?F{(ZOmCF;@PlUq3ona4y;XWKPbF y){hR>cpPBA`&M<#u(%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 fb37202a892600a993c082dc54aaae9e30cc3089..4772aa7da81a7464c1d3210f8c8aa1234afa3e5b 100644 GIT binary patch literal 9930 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" @@ -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 e1dc907a9475d8cdcd5346fb7429b05e087e805c..89761299467f73e79cb4029ee73c85263c251f17 100644 GIT binary patch literal 9925 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 JGkq^*{s%#HYw-X8 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 e54de1af81afc6b4abe4d59f1180ace990367b4d..69ba038b860ed54382c518c77242664b299d0b39 100644 GIT binary patch delta 2891 zcmb8vdu&rx9Ki82=-7j?c8}7%=x)1q3>c2FfurkYCL*9rK$$}+kGd5o>u$F`7#hRk zBZ?X#cr?VsXhMkxf z;QhE5C$S!#c}iW5LF~d5mMS%>4pUe_!*R>g*hqaIZ!g33XvY{9;q6Elbsx^a{nq^_ zu!8zCSdDKW1E|l@k3XXmXB8;biY-{l_-Z?aW*Y89nep?MCs8_j3t2VxVnF&?9>X^3 zzo1N{d3tt*SKtcjBWU8wNDx#Lvv=cSti&E%&iE=$VGABXeyW1E@r?2#lUB_rp%0)$ zVm`* zfg_k#!b3QUtMDLh$5U3lmv~30KZ)01A^X>lJt+NOz#hyiS86M6EN3`LhS#iyX>8Cf z)CX|`zKb_u<4mP&cn``-9za>?Lns42ffAWq!XbO^#5!z1$)Qy^8@Hh3&K_h)wa>+J zC0P#9AW8BH%JCJ} zRm#maoR6}`t+)_JcTK|^`fEFZW@kZ3WM?%jxm(%eGUzD$=@DF8{UXZ ztolBbuVBAbKaFAPXRP{0$wZD#*o&KS86Lp|sy( zqIwE<;8B!F)Dd6Fg+J+0NN;tzoo6fF&IW&SPOwS(b?Q`}&I#$f{00Z(1b8}? zh@0Cw8CG}X|1g!&^<@PM^&JJlVmcTNGN1k?e@jTeQP6Q=lcTULCp5mI&^twYihdq{ zx9IsC{cN#QuP)xiAWs+X%3LdK#z;7+A1`v{1i0<8jYJX=tJ+|1r;p$6)A!nIC{5Zu zdZoQ8Q|jPa?O3bbjt40{?da7<9EY`0GR9f0500U+Ivag@s&(6$kn#UtrtQ<+`r8s8vvZWnY`aTSTwf_| z;re6g0XE*iYTQ*WwpMQ4C^gCt#OH_U>^V%duba%P?T$kZ;r|v1A zd49uE8TY*X^YzbBnT(5?+l)1t1PU1bq<*#hYTf9pnHx?Ln}8AW?u;ao(YR@t2_tO| znDG%aTtQdaN*ZmPo_~!?A48qVn9^#(KTi2A;o@9ONGyWR%kcqnbMQ8Kv zA3LyyPa^x3L@&Bsy2Lj(6UTO+=Mn=A`8?+aI^gU5kE!^ZZ_SK>@D6202I6Ko6;^)% DK4L~x delta 3081 zcmZwHdu&@*9l-IEEKSoi&D&`njdShTp?Ns5oiufwI9=8zZP#Q?*Q8kxqq~joQZLSR z>U)!RjLp*!nkKYO)qzqWCJ<><8Ws?>R$+QtX1cDqtNSch_d6f1B6 zcj8$rM;nK64ZHB0#qlrkAmd7YRF8LK81FBbQ_s-p3nfaNbmvM;k&#(teS!NtV zMbBZ3@z-$|{ucM+J7}YySxZJPp%<^9yznYMfNvsyD$0*{@_u!Y4vSXDu^neoR+z;A zK7qUO1?(YU&b=r-dLDO70N^!(8P9>h2>DT=-Ec{Z_xP~ z7e0nRMA_?ikw5h}K02|24V1m@!xMNE?7;2?e)r6|9RaeNzP!c9E= z0M4OI{8^M5xrXxG-{1wT;S9_5CsB@R?(=jch2O=C_y?2~ew;i>3eTaW&_!;kM^Lur z3d%&jg|ebwqfGD}luUXleINFt{41F$dK#rBK7luRzj~0)qg z)eh1dBUn(rc#h!!vDsu2WyOI^Oxkb(HG}eUY10Mrb+w;9^T`*n?Dw|fJ(;jUQHoIt?kFJzC{=%g=q2tYVnhQmPRMph5pK3SH#v{$07&=eO^z4mfdR)N!*J zduc2f)h}-Ui+-*m+B`6~n&g+pDc5w@oU&jf;Pe^6Xh8qCVq#~&G4|3=4g?2v%Z|it zDS+{87b=1-r7BSq;`bx=_~YKsXeKG zUstW;^*;TXx_W)NZk~Qh->gsSuQd4dVxw0-(U{ObXms^H&!GO2r%#7HWf;-dJbTLh zie-)!=3-uqEg?`HS!O^3+HtBg3KaP$(KP!r^#ius0kH%NIlUTI(rUOyPUE;urUY zB11-aFdhvTzBpw%ZfG`Z+D_VZGugONIc3^QYvz&_nzhW84~^r7m8qOQHa+pdTq8{B zP{wvGn`b<{%4}TgqC2pfHdFS9v3SnRI+mN5o1F~BmOl8RyzD_M8=9~eGs%>_6gOgL zQ*I@T&YJ1aWG1^p$=c+Xp_7P?NUG^3Y{Qo@A|sXeg^pOZl`TwnCSxU2t`X^v_3y7# zoQ-#Pch$4Q&f4;#8JI2+4yVDwj;Kd1Xzd>=g<_qUAbhg&-ItHjk7 zul{R`zeMTA)|7s{^+4sVBjV`ST94j#CaT*eZyTR&JFxNPwzo?3`SxFI9QJ;;ME|tI zDdT)7J#MV$56Jh7c;UjojD(K)VugY0i{|3v45i2Ahzm60~E9SpXU-GAjcHP`L zq0e--6@K(s=aAm$e5^F!==VE2_33~|rvt-8q5pQEytvaRKeZMvpfHXqU_n;W*A1lPBG{{H|(%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 bed3e61cb6529b75d4ef524d8ce698dc892778e8..dc5718039e65c612c33e9cc7f9d17e8b4965475d 100644 GIT binary patch delta 2966 zcmb8vdu&rx9Ki82EtEZ6yBFC5Fvb{8L_wK~IKWUIr7dh>^s?TLIW#s( z1eK`3i5MSIiDLXiqk=&t5|x+;{^0|S@rjzCf*OsFh#)?`zxD!SVxl+g{hV`p?s@#q zulJRXU+1I_7CP=xT#NZu@Xb3{YD%3Lrc{<~9sWtZ62}Zz%8xT~1g^wY~s@!!0N)e$Mt=l#c!!c8&9~Mf%z9!Di~e zp)8~+H?zZOIFoum#_<&-2&$3Q`*0$bVkch4{K}-T6rV>v%FAdxqk_nyRTE0+TTmjg z00Y>C9=sFlaXZTM2e1}DLzy_6^AX+1o|Fe?VHKu+ps#%;LQVv{?vXhM{JKcgZ;ln7A8Adqd%uBEuYfy4%HlB}5QF7-tWJusBHH0_t5oXSd+XV;-b=ux}~UqD&N zF_aw-Cqrf8F}6*ZO}!cAx>(w?*nPU5B2!tGtoRDN1rMNHos4!X&O_<@iHy$mCl26W zc71?@?x((14xH;JjN{LCeVHT{R|I=8iWlSixRm)-Dcf9vYcYf$;R2jQ$_~R#$U8=D zMLF|rcs=ewiA-Hh=Io~Yp4y?yUydRzT21+g*Kmwo+W4^p-zM){KU{ffdKXsn( zkdkh5mM@zXx02zWp2p7A(QqZv1sJeS#ZL-sg*b9QS!9gG@TPqZ;OKBV_$PaWFi&S}mH?VOq8KSx*P z9o_kM-g8;{nfwxcRsLcoc`E<<^xf+)`oorfD9@AC!p|N@e=HHRt2M4E^a;8GdV{Ni z(m_|1p5-b_m!@(rchAv2_uZ79a?jV#yLV}$;90)qdRxJqR5%ec%sAhKvC5>Ji1qe$ zCt^`)NW>!Ms#URgl&T#sBWW6hO@d!<^kt$?Pjzh<3o`!yVA_@I)87>YSe?62R@+gS zNev> zJYn?3SH{i$c*yUtOT5lW;v*w#Q!;oamf@&rM9c*7PKJqhGS-mJ`60QSXt8rSF*udO z2?7%}t+R&YjKm$%%{wUD&*-OTdF~_bBzOf&JR`va7Jq_Fx;N-AJq`c-2UK~d=tbUU zz17>UKk!=Vf5R1}7wC1R?L$-lt(6e*P^}_PG>GFnCig$K~D>rB9AAL7ESZ0In9kp(l6qG(Xsx8wr*=T3DwZ^ne^(JGae%GkAd;MiR z=#nE?PA+#x!wpK!&^c9QdT-SdZTJWH`t&aUHCakKtLriYOst;fOiwYx(kFZs`rhiR zGe5jk?bF!-7n6Ad4Vk9P0~b*34^;lkTjYj7>FHd1JrF#5w=F@>>0Xt=y5X63n=Ys> t^`Gsvb;d!q>nYXc`jKGX=^=Im=l{o~_KdzNe?UcJR>X{(k?yFe{st?`Tj&4) delta 3210 zcma*odu$v>9l-Ii>pHfRCbr{8{LJ3j=l7oP&PnXv`4Pu;9QS7&mk&zi2Bmti3g!MVmfO%?Yj_{NfP?rKw9(I~B_p53R(t}b!|&rG_#E=5B7Aux{i`u5Oj`RmDBhGOroz! zsRVx9^9GL7K15#Sy2eNFZ9Iy{Shson4wm4Cn!-Rfp$udzTG)azu^h@0eY%GH8&tl^ zg--k_%38mI{HZtjXu~oVP}a5&58{4&sEE{J7wtdQ6*5;znk17!WcAb_%KP@<{Wyh^ z(T`#bFV~a*{Z#(Q1?e!zj@p3}C|_7b>F^55{bCl9Y^r)BDXIgd!y#n()i{zwHG}-A z<9x_KRevPWh(vxE3BK8~M5*((ifG})XvgNhuJF-+k}lr_4JGNTtfU&apFZz0K2O?-Ph z4xnV_2=2zyC>>u$S-S6`bog7(mr(Y^%Xn`Q>;G3OALGK?yzL|SVWZGizCwx~$Fp3& zglEvlXl=ZROISuPd+;otz#rjpY-XX4;Tq24uTg%}dIN=)VPVL~#}NpN8DWrR=JkWz*TIXzO?pHg!9l=l=G zYA;R@9D@ArloP>^TYiJdF=g}Se~J%cFL9WV(;-J{oRFg^r((VAUaxq{#w;b+!}-%R zna?$iVuF369w2Tjfv_$r?bT*!Q`2}nn_985Nwr=v0&bz6)W0j$`q2$to7>%}G3;iY zjJ+@#i0I23-q25$MYi?NFD3YS;s14gik*~{kxTi z^zW-S>u9x4pRcOc7pjg@PwCgI6Z$J#eL7y#s?XJo=xa4uy|Z>ef3dbthiXeOtgqKL zm-^$GWjm{1ukBc`w$=siQeCa{7rFYmy4Ll3&(`&>SN~o&K}K%Qu07GMPt@-{Zn;Lv zjvD@zq~oSCwqZNQvi(6jbH?_UconsjUS3Gq#<n#q7a3bHYhlS+1E6uzpb^5(@7!Lp#h!*a(H9;hnvqNJt(u4<}brGMU12Iq$)p zW_X7Y8i+2WBR3jWx`W zCNg$5Y4eV=ON=I)T+Q|`rLB}5GvcQ$$4zEO=I8dBLkqVal+I2i9dpu-XA&uUA!-br zOl2#Wv}2{sy%}ebEo+lsn(jy>CaI=6VjI2@BOI%EuemR2C!NA@XEVt}DrO&I-N>b zLH$nKntrT(m1xnGfx|ix=qZ=C?YGVvmVT|XNnZ(UFO@5kuAcEV>$d{4#qF-H?=bYK zjxBnnBUtF{>mBB-JT_}NmSN>Lp>vmQeaBw@?+@$l&YNfTUDb1)z53goT{U+*9s1SI puJv=<(slICb9=Gt;KPZe8_(F8cq)xp|{ta6(NfrPA 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 5191b9e7f3195b9f3981ba162ec8aed812d8183b..16df22fe91039bc1a480cb1411202e6e4fff76d2 100644 GIT binary patch delta 2743 zcmaLXdu&rx9Ki8Y80-mqc5Bx?F5TL78*Hp7EM*%kfILJ5VT?yXN-1nI+PQW-1YIIZ z1T}(3c_bj95}k=M1A=cr{6i%s#6%MnF$5x@1R=yo45Hs(TUc#-2OmQpmCUGHF3{=XFlQ0RF<6w*+Kee9IOx%Pc z@iaQooT$_&tiwi(V3tx{>JW|LT=+chA2^h_lDB8$98AYHOv80Z7qt-w;gfx9_&Ul& zYEok>9D|dHS78v3BAcM9nSBwCL@PGoM8;Pk8jJ8S@>3Sx#xu%+Oj^~TY`q6%C+1)& zwqPDUi$ifA%JW}gIsS+;a5DK3Gmtf@Je-U}uPpUl>S&789?) z`FIlN;?P{B5^w{`N}fhp>GLQ9?nc>}0c?ll+>9mYLaCvtScZ#GYUe3rNVPeS#GGH~z3+j;FRpaCF12~I#9@gT1loVV*S$P%-*Z3gHz}IjB zCUxbwzL1nxzd zu+vbApBm0d#+e}j$D;=SBc$9Oqd}TgGRu&vFGk66CGt~lPE1Cb980m(q|`EeSjznwDrE~dZsG>qEZ-JK9tE)zEyz#3BPWjU zk(sMg@pze2sYi%gP>!?Mj_2ZWQ(5dQn2ijlKENF~ngV-BE__X+6~~s7M|=b4p{XKP z^x;>CgXv(nWUwXGjuBoxJf;55ORH0AP2K}NDfWJPMp};Em3H<(?Vy7u zeJtIq4-a0Lz#FOv@^p3jKY>~AOW(v4sx!vQL^4K4&qMTyjDr63*S^ebeIuhz|D5q0 zch+P!>-Cw3^rg(V`LpR2S=;pCthL;6XV=S<*%8iXvqx~w%^A-5o}3zojH_majOf<* zA_11k;thYBFC4DFwJ&-{j@Yfm%Y&g+L9aa_-lE7UfTIK&iHTon|Z19^3RxSx|2gl`bjQt+rx)*f!$M4g1YDj>*&( z{G?B&7VCqlHeFP>jJ5|y=?@Ft(d!jyR(-kfn0~A1hXb36FPe16kc|TvqiU)?Q)bZ? zyOf5udrYzTygd*r!s#Uwxv{OJabUD_K({;1`dUdv^jW2i(u1-@!)F}t_P2yOk9Swe z#bQ09bcJ5wSjS(nPIS)HbDb~5UU=0xS@te_f^I0=7`t?$%*~}5SH8}3<;O0WT)FyQ zmu;F1su~Sn^i%El&vLx&GyVUry2s`0Bc&g^EWKr!RPK)E!&BZ@_qy`Z-tI4zFSs)) T11mby0uj|3^oN4M&Vc$G_I?(x delta 3372 zcma*odvH`&9l-Gu2q6z34@d|JBsa-!l3mzjvm_yG9yCozNJ`p}2edkUTsD_vak(4! z?glE*bQH!)>-acBX{#NrI$BU`mFbMmbf^sVFk zPDi~nC!gQB&vVZ2cQ%*z{d#)wT3POC#j%&Rk@m(ir55qn3jS~$S*esCA4R$T70kzr zScE^pJiLsZcoiFQ9XCn88+Tv=%kVoG#2;i_RR1K{!ilB=rPksU7ULYQ!XwB#)k!SG zPrBEi!AklsqJbB&8h?-Sp<7swr94!Q?bwE+xB-u0P^S7cfsFJ=uD7tAeh1U@<3SAL zY1dz17yTkew;Bg=8&05&r%+bpCf19tiW&3 zgYV#aEMDWT6v_*x(1#|<2cLBPEHZiZEMCViV+23LOON9}@Gv?hq*{V^2@H&svg~*Q zExe91ILUfW<9AW|YsgbSIw<{D@DZ$9r_???igN!iF&BNTzYMSiWndj>;*N6GUuOCO zCnRUzMgw0*sf9ma6W&Crfw~F`3w_vteJDBKkN4qYcr-_;pQAiCN`XkxCQzRL6p~$a z#_fNplJ)Q6#5qpLQoe=v;A#>!jt`)G@Ei`|YdDH|RV+X5K^gd0kyTdTL%ILQC^Nl^ zlBz!V0H@_~o(6h4V$K~)%;eZK`I zr(GyB+JTHsnJ5D}j*LOQjQ#jCl;?}NxdXk(^NZ?(nLzDF89)>pawslL&_Ba6d>RW$ z_(}X6eje*QncZ;#Wq@ztN6_{vHIIMB8T>#ab%C$p{n$rgMDYyH$^Or2rouUK5T$xA zU@lhpGC8eAHiGhF9D7hw^$nDiTtrFP6_gby^k;rA8c~YQM0q}n`FIrhkyR&f58qcG zCt$+qI*_VnrPUZs4tW8W(*u&cucu`XDZoy*(~lE0*#)xfj76=W$+43*M3Z!8j{$=1 zv_&a0soX-Ej4pdf4!dcx4Z}1U@i0venYA2JNYqn$c0p{VZKGum@|!+(^LLtd7p;s| zM3aL$kojk}$ntbVVYp@~CMd~vT-#hnUAMmHx}+z2+)E&Z*W;e(LQj9w%({ILSoZp6&C7^x2hv z)z9aLDqE-LXL!<>Oq$7*lk08sI9m*F$fJLlzq82W7|p~pt=_GALqYG7{!BsF`R5Dj zm+AafFP*=&Dwd-I#Xfy)%@JCqju)R=?r~c5h2lD0Q?gNamvqzW^fSb-l!+%u_ESb%&^$$K|I!4qE8}$oT!imOh z!%i3}`$Km8uw9?)25LT*nvL2|N zZrp7;$-q>?w4Iolj3>gzE^8)g49uC){ZXSQ61S6PBze~yCnM=|Es^-4zQWz6J)1IT zt-zFJ9!igSy#MyeuyG*q@X$oz*vQz<+w)p9+8F-;@3U+^_~<-CPg+Nkt@AN6YIhsF zJ>gi%-s!2KK-Zo7WMBuZL|~^KiO)ps*|5>IKbkDOKQL_BRw6Uv@i?PP^8T)tZG|jd z!i)um;)z34y-k+rI=!LtZpj#NZ?kRm8EwAqLfJ;|u5a$3)T6eOG-I(#XAN_~iWp8R z61nuE)8cNVMAqAT>(W{MQsp-(bEUtyq4T{P?ClMMIZFGhcImOI4f<5oHhLGU4lj4q zhI)+r83Y<;q1p=o!{edHOS*H$DC7J$uDl zt2@1?nUG-`m(E7!;;Bn#Tl5w0Q+lrPD6K{>Yns%1n{?*6>rEq>;8^n~GC_eaqNlvND0}OD_Qui;@!#&$fAihm_5Tsx>klm>4Hx{L>;`|wU#)-YUw^0j i;F9&6-kf?UN;%nf%2HNRO~q4=5wo2CIk^A(#(x8QVRA$O 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 7f5a7043ff6c8fc394ccdb58e27a5c5622986dc6..607f4fbdc6c57db3f321d965fa8937b3c04d811f 100644 GIT binary patch delta 3435 zcmb8wdvH`&9l-Gu8WI9|Y(h2(&Ff~f3wfE4QW28?38g?P)pXJf2usVddz0*B_io&K zmw=;gZ9A<6wWX(YnrUr-1|NS^sMI>*IKqs7h<|jjPG`r*z#lr}qpj7MI&^GD{Qh=t zCKO$jo8*4ZIeVVJbN1xw@LMD4D^-QZ70(0wHSkw@o8*-GaH&!SuATT#@{QP0q?8YL z;4+-Ta&(Yi^$4#~Jc8@-3a&ry|2XGSb;Gt z#V;UL)Du{S$K227u#Ws0tjC`r1E}9)0I#7J8%vbB6W8G?##fUhdMS7qWyY_%zJ*fJ zx13euF6@(fu0O^NNY!!SuT%rbvWw zFTKlzeu9T_vq!0W@rO8r#g#O|H15QcIEjC8^Sg+*Nq!#h!R72<1jkV7pT{vQu2yOs z_f<2T9EP8|1x0Mo0rGL&i#Xm<0 z@q5^V%Z%JbwE?@xkD+}2FiQPrQQBWXiQpwH!K*0GpA0U$0;T?p+2cOUb#{d0J@^>D ziSh)Q_AKs0S-~}V@zfLVW7vT5eAo4i>si-VT)*df4i8ZORoslV9JoVi61zw^co}!& z-K%rHh!Wy!D3K{TS|*7wLkaP8YX%=&z5~PBLLlY+@Y!{o=pf#whxm%dB!fG}>hFNKas0 zP&b!syt!ziWJ5vl++2xoi5^^0t-reBcY00fU(=>zIFqI^9ZH&(^PtT{jc~#mk4_i| zL&<39K+Mbr!VE>a)#zkm#@K2)p=iujqlvibOh&B}tPfBkw~Vhxgl_b-bG^*Yf^MWiRiCDjSw9eChP5%GHaR*DC{gGX5%GVfHJ2 zsH$nP%2ZY7V&;Xay8<8mI{G8+DtlWvyWQZF3LWkkLWRIu_2|mO^rh z!ymQ!jG*tJnY5z`%dnD0%9^qgGgi=7=%)Cm&81cC?PNupy$uaFUPLPMOlCfFD)U0- z86}s4p78qg)BdVFcg->X$~>Pu?tPZ-8*6(0{TA9&vqgWYrcs}-@#_otVNIuQt9>GS zGrdy#=*`#AVBLidQ0Q!+*K6!t6VZ`A&APf5dZKvGAvi%xp#z<5TKillK>% delta 2958 zcma*nUu+b|9l-Iiag8zH7~`|?pPtv}yTjO=eRl@ix#OG~n?DY?IEg9!lL8yx#=dau z!R;E1l=cz|Dm;{e21sc@ZBeTxL?Wt4tF)C86#CFgX;mJgQ>&0DQdOl*X{oBJQXZmy zfA=SeD;_$!+0V@G+|JBzX7+=rcPDc1G*n$sq)Bo+`9!5sv-r0vE~Hb{O7-Arl;^Kt z4c^A(_($ZY{>)_%?_v=BON;d#_z?Bu*nn?f7~d+IQ`Nj}JvWAMH74-^T)-803Tdk@ zU@cxLJ%0h$P=6KM@HR>ZchQGxnNl9;!U#TyEqDNB04H%!<&^qap}-$;0}uT4A~XIH z#_&YR*KwHohqw|4nEnusqK(H;BJnu%toZNVg z!hY;prPLlgfxGc-lx+|tuF~-k5+pT(CT>R=@HOP8e!<1S-{M;QJIc~Ev968i#V#B` zS+YH=iT^GN4mUnuq0}wxq29p4NkkGzwAELTNvbE2Cd$Pqp2AN2C2qz$xD|~iI>lKo zqxkibH&OblB&@P`9&IN6{6`(&Mk_vx>>qU*rNbYg%^HQ8r~xJJ5bho z9EWi)N(7$6F?=2Sa0!jXXh}0iA;FEaIElY2+0JOB{uIgpUd3_zH9mtYiJuJg3`$6! z!$KtRS?YI?)l>U8vl79>DD9udb$AjblDU^D^i#Nn{M5fn59*1({K1bBp%8wxg4y6{ z>OWwMpTu6maS4Bda_n{(N}WR+O_WhR1W({myowIC(s(!ht24!d`V-1bV@yXz{4lbS z)ozqOCQ(NGHp+nRVJ}t_|MeI}8Sp-2b<`Zn5Kq1Ardg#9} z$}yDD$>xz{6t2a~=Rjsegw-apY%EC&#B?oHE*Jr)Shn4LarN&)m*M53{T<3bt$#$n zyQ)sd8ankiRyF90tM*Vf^!~<9eY`QDZ#KGmqh~;W*Rx)SJyjUdZ+hCReKVPP+tv3x z!E({t6u3`up~+X_=-W-+^0Qwx^_GkOX&NIEA5YnzT&MRnZ{2G;M#_#Ez9UxFNo8!q z&KmRf0XuWl_EnV%>QH)qHf0;5MvrMHdyG{nn8b7S!C@6hB(4t@J zyi_<36TVpS<~My4`nE4#tkidHD?EL?>t)%U`S0hS&%c(%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 b708f1e6fae86fef6808dc60afb13986714cdae4..e542e3102482fb56e8dad012fb7ee26459e4f53d 100644 GIT binary patch delta 2995 zcmb`{drVtZ9Ki8|uDA-Y$lqy;YK&PK;0^=WwbCEn;13f zri*hYz7pM{5#wV%CX4eCl_iVO7!#-QFU=M+<2&>5hZ;AH-(PzNh?49NZ`%7gzjMz$ z&tJQL?L^1eiR^?271u_-g?!WEB~t3_Jf-3+tMM=5BCMLPlpC+aB<#Zsj36I%2e;L@ z8yoNhmZKw4sYYzYc8p-QQe)~>3Ja-t-|`QvA+Dx(JKlhq*pF$r18JgmVLCowJwJf? z#4n)>-$MpaU!n(pLkAWmD|HbrMknK|%@pdXxE*E2hb_NHY3NR2)!2c}($4ZNY$E<0 zWg_*du@x@ED~Y#Z5GRpMP<70{7#q-uYw!xjS0M^rcm(;Ve0t*@QT178D%GK zz%ty7dAJ8_a2)0RkI{=KQ3g)td_)_vCY6U*VF`}?NTH8H4|dYKOz0gP!DTk3uEE!F z8zyG)5{}_2d;&M)X)Eqvzx~8d;nkSJ`Ss!&l=g4n8cfVl>L%Qf!*G%e$E=F^98fp$ z7VN~2a2?jmGUeTs5qa?p)Xj4ikp<-L8l z4xbvM;G^)DWoJPwi(f;IPaQ{2N1a5Oz-g2foL`-j#A%+l{kdVMeWB1 zJc4}GX)7K};YVLbMLWvRaI58$xPPmsaxXrDyReMWWXoT~7JOSq=lTN!cm`!> z{0o%gqqcC9iSChr>v=RK-40TaGs-YxTkA&2`dXAfnnolI)Ox%a2T(eC8k_JKlAr2N zl&#MoL+9ZVlw4VclJzT4u4{2LPO0leN%s#K-Xij8t6OI(6-?LhgJ?8IB~E4&Z=6-wRB`05u5qqv;|+k?O2UcA$* zR6IIZmL#1MC3!sfJT{`_>nY?o)fueDJZ@6I9BZ%>h~fWpq{~W+3M#g7|K)c z)1!&iE?-&L2n53sv%lZpYlMe-di>$=O+)?tBei-m*_p!g8pE>)^kiaAsuWavPb4tx z*E@5aNj`T^Xeb!*>Bn-59p?gfTcs!LZLJFrn87yvd7_T<=}=Oojdz=k)^KDn6x`HC zpL#s$=XiS54<#?s-zK+a(7>pa!FuaFi+y@w%F@|Yx1==1`6gaYabKXXOUu!Zr=6N; zNvO4q~S+D9JvJUZe=`Gn0>m%8tJXvI4DsS2&+)vpTbI;9L$bCgly+_7X*N2Sg z)|e4L%VhCJPrn%sFFm&}`q7;7=^gti$1_LZa<~(sJ05ZrPdDjyR8I%mv3&N{eBs!j zyK@VxOgYeI!{;9M4~7Gwpb;E2hJt;;(6*q@onV#7D-s}_U&Z_%&o3M!nmTCJ-pBa{ z2F;rz{+Z=i8pLYMpjtf~_|H}TyPU21U1u@hDxFzi zU$EXB2p!uK3~&&!Q{P(t`0gebCq*%ipS!(WwF*mbov~JKSEr-LdMT(#EL*&#y0SiG?4QHcS=Lq8X{K z9Sre<)+h4|bVb>SeP*S#GrFW~lg{&W>0ysgANSlD>tS7a%~XLQLiWq`>*YhSsv9f3 zQw5$Kswm6~oZH%FBbrII`b32%)`-GbblCN#VOoh5IgjK1ADhp&{-eIA^v>}g^+2U- z?kCf~I-9pTni4JE@;REn;4Pc`$#h2ty!rY^?`5+SsI4lH8c;$1Kxli=jHtf>u0U@h delta 3585 zcmb`}dr(|g9l-HRLU@IQK!ETF%VpW+y|BAHLKhZ767pz>B>|F1+qAc^B@6T}*}D*u zlCEQ|)jr0l$1*hzumhu zbmI6=&*bdqcg{Wc-gD3S9VSahzI8Z$r6B!DjdGZ}mAbq})8e?WjvvZ=rlvLEDU|Ey zF$*u@di)h;;GeJq-@+O!WRSGGuot6PfG?pJFDH#_|0Zanqc&U9Hsdhn;c?8xdE}Ye zLzsh)+t;7M657w9j+d|;|Bmva>*&OMZYshy^x>^oiVNtKPhBLCnf}7|I=0bn=kpqH z5(D_8?QgM@_IhTw0e9gxJcK4bg0dnXpaW%)ys#4Q##@j}+F4vLOMQWWMbMV80)K+C z0)IvqzJpsZZ==0ZC=VFMdNfd8_^9nyk&oBDj_=|#IEGK~&@=cRo9m-pD@np@q_Z8SlojLQOk@_oIye1Eym=>n{^*MwwVU8rWOJ z`pcI-O^58+i>TvkD7o-9*5U^!IZ#zhVqra2V-L!n--EZ|1NfaZO?v}nWloSFvZCKW zc1?Q)Sq$wm%JbeVVf|%~|7s7+WTQH0yYUvh16c%Z5pT!m@EE3-B^^U<)qaNTlJ*yr z7yJ`ti{3~1z;(=0CSHUxp#~()w7qcxNs=LZKos4yA4YlbMQp{_k$>8U{Ip{+XR!qb zP>$1r?M0M{U%^2v;cW*oZ2M!B32oq|T^O$*2oro3Wl4UHmH2CvnO;TNt86-DOQukk zGLDk8kD?s2uOYjn{Sak>zd^Zwt)4tBRY;m?qbMsrh5U($Yl{Su9N$Dqj%V;Rdw3Dg z(5~a@FXFTK0v=`KKZlvFh zK)z4=K2Gs|?IpW|TuEd#E2kZxN|6U}IdP1FC@)BrVFF23DSgyKR5=A~eIol=-bCr= zcQ>^$*-ZTI|g*#sN1P>%w<)jkSFr}$)h4mE`{w{RU}&_ac(R=yK$?noRAxf9JN&W41pwOx82c+ zwNyDBL-zaaOUZqcy={*soFnQ`vahhj!-)=GE#Tvn6r_Pf;US^eu>mR?6Z-r{amrP;w% z?eXl+rE}TNH7YCjg{AAc(`m|+SFf&YoTrwkNZuoBT~@PtHLprJHf>d1o4Tk~>M7!v zHyu=e%ipL11y$<7`~tO@e}p)!t`&@{Z*QJZLxs)i^MyfW)b^`&MJ=kms8yXUYEs^! zbo8m^qOBRuvB<0$Q`d@WQlX>ReUos$*qLUj-xWJj*Ip}bOojg`-nr_F_HMcJm|^K* zGoU-?LQyLmF?BPl&ze(aV0~HVU9QGc5_EME&H04-ZwqXYR?#^ zJ~nMwR?wdB_c9#uWa#Xvb6fS@Ei$G@8;nLKLt`<|zH!gtp^r z{LLNB-kibPhCMr@AtOegXBQh7(EVOthsWFQ@%nXNYrx;$==FPLpyyC%E-W9D92Z|1 z=xfux4D=-j4j5LggmA0IWQJ-Z{(`^a6Bb*5sj7?Vg}Nb*VepCLwopGmfe+EF|w?khh+jeB9)(@5(vq*%LBD(c~HoMndD^nC@%t zY~Ge5C+_N&hH_5DWQa7eV#aisx$Cpm%w*{D(`KYu^^}xlbM&UR( z@1fG}G)-M9b*PU@bJcR`W~`)Es1HkZYM#2cY_l3It58SEboGO>5tUosp0jc^Ew#OT zU{&UxE#I-K{Z9FI)wuN^>Q0AKO;)rde6PZb=hUl?GF4Q$xb%GG`80K~>Qp+%R8wzM z-MeLTV+C}S$1%K|XfZA6lj!uiIx%&FlAC#MinGKDqy`iS?X6IhbG`Rlfh16sJ*l@?H c-R*4*pEN@=k<+FT<9}j9bN~ONKdmwU1@@q&hX4Qo 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 bb9d448a0d8f590059a178fbcbe7054b0b2d1e4c..3b076695289a2cfcde1864d8c1da9cdf3f760e20 100644 GIT binary patch delta 2944 zcmb8vdu&rx9Ki82>DUHy>mFS@3gfP8p^VBH2+p~UEQFVC$ZLUxK`2`{8cI9bJ1UAa zNTLGD>%>1y3}ieKqFKN|K#fKr{(&JFkeEme=pQC%AfSoK5YhPkwHJ8^QE%G&Ilt4> zd(QctU%S8c;{4R*V%uAaYdPlkLT$nxC9F^g88@s8KSn}GRzCeGu0L_4x4<-|EyiK!bjR@3Ojr9530^eL{#X?CSr z@k2~vP7zfik6R_$taywxR5FH_C*2Q8JTFI^@h9ScQI+8fw9@xB{hiUPq=>JDqG- zisc|3QY0r)t}E!rA5l_YL}kf@H7G~YV8t^~7PJ88VmmhBA$$U_Sh0fxZzNuX>`Cp$ zNir@)V=9eraV8dz$P8#lPDRC#?5d3@6YsS8-$vQ-A(Wr(2gpl(%}sXpGs*_C*&S<8 z6EJ|YP{x@!9aB4K$j|QrPDUF~lO5FI6inhS9I%{5I(87BM_FKyl71R{rL?);#R$HK zl6u$ZOw|WaCVmd(>c(|aZap+4wU;fgqU`J@%8GN1OqEZ;@x-ktJ6w;F!tE&IPojK& z9wk$MU^Wh=Vx{WyrE82d_$~n=58H_|~+IqW!X2@7*2F<>NO~xexhHnz6=1w!bjt~EC+}j^gy^+42a5Q0S zjzo-xL~k%^bVh=SL}Q1iGu9V1J9M|B!f_|?H2HmraSb&xu1T9YI;%tHbYA0wUG`yhSsh1b5A!^xEAt1B zp36U$rH>Ri^z#MFnPi~gh4kHJGm^oC-jnals^?>;Eg6c3tk7Th3}bwSUj16(NLrT* zEA^bh5$RSVcej1MuCVW*HDF(?PuP!Zqv(C!ZrxurKNXCJj98R++*lK%9S^PT3&%rU z(h(1J#@4I}MY{;Cd>LlUAZ?QTfYF!9J|oqlRV>K({}0oJ!z=W)A}_167t3l}i%sq) zizjpcwRj?TZ%M6>JWf!HV#b|AefW_jOUC5hIWqlaiSH4?ZzUd^l!$IEt++d6ZK*@I zm6qMxFD1i7gvho z_1W^e2fOSe<}%ar5jXS!4!vc#TerB|^#t0lrQ755S@*i=-8QKK-8;HFJ6#O=;^^i~SA`+<-)>mp9;410v8}Q~4;owZr#kbXf~qDS)LJ}4&#Oviy3SMu=o+l5$%NJ3>iOx}Gsi>4hadj$ zao>U59sJN!(fwZkBmQYFdCTwC<87}$op7)3QNvgG?y3Jbe9Qi0`40LP6ogcwGZu{{ KI>UWtO#KBO^H;wB delta 3213 zcmajhdu&@*9l-IEHp|0( zZ_wC}RchdfT?$S*Djr#I0DcU^IPJDlzQfF}bK7P?^E0yZSI+V|MVHF<7 z4frTlpoKed1v~NE#r|(_H+>IZs>cT~j3-?4>I)?OT)2)~@Fv!vs#a{Y$tBU&o#JCR*rc)UqPap%m+29UjBg#OwpotwQ6U(D)(X$P#zd`af zE_C6~Q1<#Q+Qf#kD5@Rhg#*a;tDPt_oJ2V- z^GF$~Wo*SyqD<^O2JwYF3C~nFQ1nfT@gY3M5qcP}q7i_lFkzHa%nRzg>980mPza-7*}BnK&>YXA}_@y zXOUI>P?LRq_Dv|ueSl~uV#Hyhk2pe%5>n9eJrZc0E=*M)>sew<&m!^jwp_%+@!Wyrs{6-qcr0Z#PY{B6nsNNcQMQnx{Ty+D6)n8UEE& z&Q517!^#;e*2k^vS<7EuOw@8_WhreL6GpFTC3}rxcW*hp;%9dGL?**xFPoN;$e6Yr zFAn)z72dp?`p3J2cF(Rsxo2F>=CY5a5>Dt~GW3x9=9satf5wYOvUoH5hZn2|Vb=IoRcUtE|9jV|52QC@Z`l?&~&64_+hT8bH?kMd|H zoij6`sci0XO4ee1>Duw=m@GAE+%kM|BQoYW7TTY(QaN|Hv)NQK?HG}P(Se;F#o2hP zxqFx$PFuEPW@JuAg7vdk5{Z;;XVruwM<&OSDI|phQ^@q?tylD1OW=bC=INGQWlH~~ zWkkQ$(yr@T14O%?ZJpQOXdU$2IXAZcZR>$G2c@@dbWMM`?U26S_IK^^_UO8fL499) zt^Rz+0s3FnFL-}+ZE4%pGTrP;m2-}i{*3RG&iJ=}(cka(U-WO$lm2e5O_VN-7EanN z|2I9%_Y{*&JEp$n_v)9opVYp>d<=6~Jy%dR_z{dU)h4<6ko jx{o|;v%Oh6kzR4K{7-RV#bL)kd<54HTJB2!-@E<;=R8Ql 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 5c8a6cd2100dda59b0765e438a9c8889abddb8d4..509277f077dc7c5b09c1933a4be42331a97e6ed0 100644 GIT binary patch delta 2740 zcma*ndu&rx9Ki8280^W`ZEd%%d)$?F4+eXIFy;UkL6ES7MUYoP%GNzxY026R7tlpW z5K)3~&;=twGnNdU+yp0yjO;BnQPDC5yt5zD7bZkJG@u8^KQEqf3vT9s}HF96nqgYM+ zC(1-BlOijefpdu0q92bVNl@j?J`X3O4Hx2U##aFvD{%n%s4SkwZhu_$t~lnhjb- zyc(C`SzLnStxCn>CX|)DfwIyaCFyA$xAYu~>{!L-Vi*SEAI;W@Je9Rwm1p zV(F(tisS^!aRtlpXUxY;DoX~Og0dwuk))}5lnJ>}R@jJA%m>iGOIV2`*zlb=31vd3 zaT`!FUku0P*S`f3vd8sr58}D`UcA0S&hiRr6`$d zMOkqtO0B$)GJ$@Ss{aJ#IBZY@F+3Mvka9o9DBWDh=Wk8kf?e|W#_>1GitnR5c!N|F z$39$x`=fC_d2c2*B>x<*p}ZBFqw!5#N_-0&u%1He!#(I>eD!o84eUoZ#!;#(u?b`G zB+5#@Mp@}OlmRYAx>e#x)v-a#gzZ zy0}ui+Zi<4{K1gN=kqoh!Oq4;Z!p;0>GO4$>Ej8uM6QoFTvect$C;C)q3Rk#ZCzgd zveg#vb~FY${UNu0&zfg>5ICk6yMiUP<-s)`|8)IboQ`qpKzy-@-_{tl!B9uQ-!h$N z>i+nfBYC2JC!tDTO{h)b2BTO8Ybtk5bnA-5X~Vl-O014?A3Tug7@-@I&3bq8<%88@ z4#nsbsTMtuvLcozlo4d=^3=h=qWe>~Fokl{Q!)|Lli_oLK4Z!m$^F`smZ9&NYV|eK zHm-E1Ez%p)4(l6fpYgTp)#<%@AblNIsxqd@FEc`%FK0~TY&BPKe#Ttsl5y37fDulO zC*)5j4jkfqBq!3E7%2-E9mc6G;;=wJC z?zFdKun{SRaOiDTbrj7bS30Bu{@-2Uhv}VJ>zN6~lEW;96pJ%RK}AZZOlR1t|65H< zY}0kOEl=OECF{#JtG+<|mn}z6%AOmpvRAUJ^q1Ms56@SQeb(?UpS_MM+h?zj(Pxut z^xd3GdUtM?zLnc|aA)48m=rbBYpn5gwzT;TN#93CSIS^dFxu6x=NGg^>hWknO}NnV z3$k=yfi==OzrdzvI;^9@m7|wC-nG&)+Jc6^%^NaWyg{GG)6!I?bkf)ky?$&f-`pL} zdOgqiYUBauoK8tq#w>luxh>N5rfULSM_d(=@Rx9yU6}irH#4vBUoY^Bg(cMw3U$c# yE$|NhL3DWikKArOSh0CU#$yJ{FUlWUx=V^C4A1-aq7}(rzY6$QdE34ICiM>ufENh> delta 3354 zcma*ndu$v>9l-Ii>)Ns7#E%G~wNk0f`wyV#C%jvbu0L)w5iR8d4hKmn^#)DlEc3lc;KRH+he6DkY-p+poA&=3*v{oNzM zRirZV_%k!Rw>$Hj-|XM_yg8n^Qd@FXQ4UbssF#YB%HU&n@{clCrqn7tiE{lVT!I&I zDgF{m@ontK%h-u^+$8-$+=MBt#UEh^-^`g&|D>^ofv$3;R^S9y;R9HSbI3E*Q&@pt z%3psTo9Mrc8ZTliE}*>V270lEAJtX4`LM0 z=KT#0&|k{zmf==hk9*OB8yjF#jE%YoW!s2&{OyiJb`XCTP=+bXlR_QA?)}C zwDBs&a3As9kLOYP%h{(9bW!@R;!$j=Q|cgo4(0y0umpREzf3TQGO<3ia8o_;mzBQA zfb7{1QR5pZx$sBq!fPlw;AtSSum|tLVU#^ThWFs(c&JFJUt@rN7YQO;upcGDX=L}* zDU=C4-9-E)8^6qe#)~NZ1>A!x*f^Ppjl*~nH{*GfoVcF9-rthjl3geZI*6o^iX*$H zQYZ_20_7B${PiDXX!sa-9c7Q-M_KVl$e+?IuNMcAcd2Pyk7rPh)z5GQi+So0ZpA)4 zjWT{7NAcgdO|Fw*vY<1#5i?(-k*4u3N=U|u7fp2#SKYxaY}KPEFM0+gX)mFis^1~Gkx?Z&_u_Jt=Oq>-H*IWJ%Z$&I*Z(*zKf;!7D^=EL5bL3uoyqWQQohv(_q2b z{gww288t?gQbv_<$%KZek|TvOL8Cw48Nt0&IR$KWHZpgjlx@`Q)Ya0-mo2z~njw0M z??ZM^Wp;%Up)p96WQkH`#yhA|BoU=ZW=pO}6y(&brAl%ZimYDBZt8yOr>K%6l1EZV zR9Sy6oOfhfO0gS@iX5lvMI*WIxD4&ekFWdKbqRN&+)abeM>Yv%Y=BC@vpKOZ|9%?4%yZ4~*ic z%@jmoJa6R7GjSC-FFn@qCm%pE>AXns=VF&))yX0UpY>M_sLezkg!`F+iD z6Rq`_Cu?fWb2SHPC(MVnG4u5makH;3XinD+nV;6BO<(;wbFO}k3DuWi*j%b_EA>t$ zXPmV8u)ed<>}c@cra9N(Epp9o8#)Tt-e_1|X#T5V%c9lnY&?9#a&^LqYVWL_auZ2M zJ1ITmJme%#INp+cLrqW3#1oDl(W@*cwo2!_n@i~Buel{7Q&U8G+H&;dl;yfZ`T2gQ zv?G&idWXCHZqLTGa?h|DPbD9;C)0t^Sl~eJ%~3tEV@!|dUzOWinb2$`*dGj4jNda6 z*pjlXG-H9SY+h7HLgD^Es5cM^>rf~fTE99J3CWFtz4mNE7L&U#lfSVq5bo8Xb0~OZD|TB>e8!5~feG7sI6I&5k(+~2?M&T&_wI_Z(Xnl}<{V~f zTar%Nc6ipwX=atS=hADZr>ulCs3#w=Qf|gh5AC1W9vHZFqrCLEoeFGoCX=y*6OZbF zV~KPHi%(fof$hoE!{n_)oawqlkwFPL&7p2bdxmtlXRzW>V2AD4soccJlXfhT*5Tkl zaD4?wgba3PCMRuoHaVr^=31jRA2hbM2lJ=HPTg!2j*NZWywdb}l2@6T=7EnNn+wgu z=Dp^X=H8Y{<8NswQf9Da*xc9BZqBysG7Bw{@>?gUw)GG{zj=auu^uzt+Gw6_UA-vv ze$_fMzpQPn$XsdfG_SS4Ze}}Pn-8yis;F|ST}Uv_`cBWI6|9}?b9J`+P1E6BX0CY- zXAfG3x5J$9wio+cbHUSOUhy`RaQ>9J>S;EQdmFO%{KtE)jtM1P?Ii59j@xXv6^{kY z_wGs=?Tb^}%uBv8^EclUxnIxveYwW_{%7RTBb}Y)uC^?W33GU{GeqsYm*=r}Y@Mt< zs3vS}Nz&RW+qum_Se*TzaI-nk)l)dL|I_4XoANgWy5FM 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 2956ae5902f2a82bad15e8d264db141e2cc7bef8..9ffbfc4f1311753638e3abcf6f73bdc924a57325 100644 GIT binary patch literal 11723 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 R^Z#G*e}Y4kVxkeL{{lq|`da`1 delta 3278 zcma*pdu&@*9l-IEE=?P^G)+6+=RZN@Ki6wP_MUOdVoqnxIUKKX^<+72jX( zbxTqI;3&tRbIv`!=k+^Qel>mhz~VbqrB5o-VR8fc^<_#e;)BciAT6v=ssm4=JpT@^ z#7npee~D%I8|=p`*oxJ3lKLQS!yH!O%NWC-dM>JeQ0Szgtz4;fn8XU4#nrfgyi=XV z0Djqj{uHjK{yZ9Z2{+=qC<9%?W~}5(HQ0-B+>7=2AjV{=XDG-_f987)d#U%aybin% z6ZoX>8#q9H6|?&o?!Ya05N&)6Wk){3MwCu6;3m8m??4`@v$#sO`Z)@0g1UgW$eDc~4SW?P7T&`){0JomnraCw4B=)RMmh7NxF0`qt2x6yoTk3FNvVhN zS>JZH=TYh}Aahc^1cKD3@C07Lqqv_@Bp6>t8v_J{9N9^{2QT4ax&Mu=UdIB;fWO94 z3=w%Up(x6A8$cOg965gV1K&51G1XNh?o>s)_q)-GE2tkp>3=uMdt79F>hpLfqlTfewO1)mZ)|D7bjB<=N3J-$UG5R2(93UZUS`V9lfNvTQlls~@z$oqNa zG*pxbpBg>idv!RI3rK<-^SB@}JhE)7CjJwH){rVofQ+@=t zOG7ZOOUlAJQnqp9XeytXH}jS%7L1_ll`VaxOzRUX+SjzW31h39&pGzYaIjl{cg5fI zxs~1PyAI8z`KB?IH}eIzG#GDjJB?s>i+*k8_^KAyXs4X+3ijyw@}ZmR>GFXK=gOOx z>6NQrx^QiEwnRrNLi(LG3*`0Msd((R7B{MYT+yT(*EZo&##-&Q`J#@s(MKOq&lzrYI^k9nob?7DaE*cy{4h8Ipq}W zy#BDJwODMd4c?--P}^MM>Njf}i_c!I4Ht|5tR1^)HM{FR`6<&iGIqjfp0{#t#<2}M zXB6zu*v|cSbE#iYbJ@a7#x_Qc4%1F|7=CqoDK-C@TRNJ}veR>>ZKSfM>kj$zeW9#z z(JM9&w+G$O)-LHYtR{2LeO4+T*^`bO_C`(^$z2o1q(78*wlbml?r48B7MR?hjEvoH>SL_8Lbb;qP*&b9JGhmt!Z12_7~6pvZC$he(y(iwXuVGJD259?d=%?3zNq5wD{_hPtRzFgr^t1J&e7;}5gU|4WIsL5--Q_nf z+2sv8_}cYL){+kCX`}z9$UJY1UigC%S*9yCzjEQ{o4-+_)4@kdxm!yACHSbGZ;h^2 z`(4AeW(pa0Q#9&r zpAMz;pF*d+zD~!GezBwARa(QHdMe!ERUQt9^!LII>uwRs`lWDv@q+z3+Ej<~TolaYB%CTpyR3>fmFJ{t7JMJxR*UeYz|LgT1yyHzY 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 39ae64b863e4198c8cd9a667b77ae38d30526570..6c4c408fa6ea3d205c5dca71b38a272989d41cb7 100644 GIT binary patch delta 3195 zcmb8vdu&rx9Ki82C~kv2x~*OJV%(K>8!#DTI&qE-;sY=s&TT=Z8n5kTEOfV{y=4l- z#zz!1K2H<~MnJ{HKYRtmSA3wDU^K+|pNXPIjV7YTM?{SQzrXe}kcZ06+RyKt-h0nE zzw_Z zZCFM7IjqI~$N=gq4C7(+iL_11t*{3d(jG+{-$Ih0TA6)4c3?FQ-~z^134$B&CFD<4@iv}OVPw*(4JGxR zD4Dn#L%0$HcrUi#PL$_A!fE&!%D{!}kLX3#qyo4I8!+=D!773%F6Zqsp*Qhn?C~nK z1Yf~X%rE01%-~|&fh+L`x4n#fTeP3V%W)$67sCOR`(MQY%=am^0vXXmHR{9XifZI?qGl6u-p8IhsHlx(gVr;@2P-6Qg(}X3s9bcCGb6rFJHsG~L_SKh? zPp%^GDM6dAI`;Rq(-Ob_Dw60dUuUk9$IxnL0 z3!1%*)5+6LGGPyPGpwFl@Y8rk*E0)e>st%EO1Qyjmife5!|f5hzi{r!UEYav@*=wy zP7IFI4Mm4{eOR7k?*la8bnO$-lPc8sQ*FT+U~q)n3FVx)7~=T6nXk_j1S|1w=Vsa_u{3o$!y zxy*J+xx@F~@^-#|EuY1AsG==Q9%rilgmG+BPrqfO6^#YQwoD(W2%n+xM@7&hC8C%3 z>W|;D+UM5;zRD9jE|zgm*uPM0n#xw(kUeNznJu7BBb?H2`!3Th{<`UAirjP>k>DCD znHoyihMhFh_9{CuYDa<|H{#zpMO+(bVQC8j^_f$P)-u{ z|52j-2{{#~E9+Bkt33UEdT+B&Zwzc?lI2ycrxyCss&0K>RSln@e!t46Kd-9gGgVKi zuAKbNeRk9uG0dowHseEUDGHO?ilyULJdxBL)%7}AeQoxbd{BL^_SE#8d?v1_x!~lk z2Wq-GCI@QD#_4T!e*H_`Q@b`#emYOjn=6SvwX?$d-%VW6aKV9Wpw`0u~f$ zaQokDXwUT%xX&DI*pwaGG_3tw(xx+0>7xw+{Yr3!uAjP2Z=T9OXk8qdnR~7$G-E8_ z#alv7u2~jt8w=?FBplLP!^OF-&%?9E0)F#08ku7?`;X1J(z2aoTC&K$G3wwyck`?t zQ0^1DxT*4A=a4(_XETYjctZ6Lji^4|)#T5XL~m2*4F7iDYzm(Fm*dCwo2I`1d2AOp U_m-JOro_F$U=OgZnRRw% z2?3&w;)h-yk~SxyP>N`qwjohfDIzFQRTZkDDi3KT)Q7fG8`P>#4Uy7TRhmjc{eOEg zF>xz(v}b?cnfp2C`{wH8#eLa#YW*)Nw*9nL+Uq4sJ&wB{;E%1kOsQ_HK{>t|%W(=< z;1MiE2RC5`JMl+_{%>##{R%Fs#fLG9pU<0B&l2>o<2tU!JGctfa-}Mv8o7sBgB2J? zIUdC(+=>QHVGEu{dC)lw;wxB>Z(|JqjLlfb&7vx+R4;+N`Jsa6a0C5cVK%ejrP}a5w_u@nNw2!I9_4J#Wp0zlJ@<1C|4V6N<-x-v(pT~B* zhQs*VM&^G9K|Pt&fS<#0bWtkeCQe}!3n>3mC`Oa3lT&B}oHJ!yrzejOc5)9e;{r=;Pv@ zxD(|?p2HFR4xYi=D7o@k5{=6Qf>I{D;@B+#R%Sc^$^G1{r22rNE7nybS8IJSgTFX2V{xA8ol2{U@E>s0D_{5~$j0TQhohp=f<*|8rb z2mXmNHI=-+BwrY#xC`aN(os$ zPc~N;l1Q@cplzecx|2V-3RsEqEqI6~iI$-4rAadGqe(SL1&z|mY5la~wzU`(l;tX= zNy1CAj^*Z>poAuCy`8pb3&*stbiFo9TUth^z2r&DvsE!L!frmc^&d;Me!Q%!D&!`N z&90YDImbrAas5i!-}I&OcvIhjxf!lB_Is9>asA;~$n7!0@sR#y`Phn(YjhFM^o9F% z^YYeRB3+pB-JYN%klZmVw9L)AmHc72}s zTJ?m!T~nnKwe5PordFS;IY^w;@7K=g%d6Y`so#px&G1FStfhV za*XL&%XNnful#ChTQ(mCN4mmpWOJXKGor@RsV~~op1Etr{B-`w31f2S9%H=lsQmKE z3!RMjZt9IzjPIQ^x20{%W1qR5^-CD>Xl#=i-C)LJMl_n}kFAf!qjI9T&pw%y!Q{`& z7Eat~#x@wy{zSZR;%>|J%*nLnxU-g*N+*np-IjAKV;!^2N!vQ{v3|lxrz-aB+B0_V zU1Pk`wv^-94)=I+j<@mbQ(oWPtd(?zjOpW6+O@sm1Cu+B?np_px z)@iFyPicFho^Hqni3sv`^nY!+OGKYIpd_C3RAkhqfUp~ zk1p!uYHnpPesAZ&U~o}Kzkcs%fAL6v?z+1jje4%*=}PLtGVHf5WGt^&-|cuxpADVX zAA~a637h#VE{E4I1p41$uO#H^kkR!-=gMLydSCGSb**(vm4yCZ z2Z~kv(Yl3#UOIfCt4m++3awt^3HnA?$A8;jy#G{W|NUQyTak&ZV^3$ClsldAZq6$y c`|T+!y+pk)F7nBgd}lxTRrtTpTE-XSKg(un0RR91 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 1bb1f82375fa4547f87a3cdfdeb0c074976d6400..7323bd568e1ff1b0a3a678a7a8f446e643271fa7 100644 GIT binary patch delta 2896 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\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 789b52b00288d611ca71c0b44721509b48cfa45e..dadb9ded05b5b54baa221f3c28dcf4ec51ad02e8 100644 GIT binary patch delta 3136 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 a_3UMp{k|-uTYNHZ{!aWKE?acNXXk&sm!2{J 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 71c18ba57572bfd444c9ea990648561fe8c26e65..7d3abe663be8d6fb45b0f05662978f8012128d1b 100644 GIT binary patch delta 2819 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 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 ""