├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── class-tgm-plugin-activation.php ├── composer.json ├── example.php ├── languages ├── tgmpa-cs_CZ.mo ├── tgmpa-cs_CZ.po ├── tgmpa-de_DE.mo ├── tgmpa-de_DE.po ├── tgmpa-el.mo ├── tgmpa-el.po ├── tgmpa-en_AU.mo ├── tgmpa-en_AU.po ├── tgmpa-en_CA.mo ├── tgmpa-en_CA.po ├── tgmpa-en_GB.mo ├── tgmpa-en_GB.po ├── tgmpa-eo.mo ├── tgmpa-eo.po ├── tgmpa-es_ES.mo ├── tgmpa-es_ES.po ├── tgmpa-fr_CA.mo ├── tgmpa-fr_CA.po ├── tgmpa-fr_FR.mo ├── tgmpa-fr_FR.po ├── tgmpa-he_IL.mo ├── tgmpa-he_IL.po ├── tgmpa-hr_HR.mo ├── tgmpa-hr_HR.po ├── tgmpa-it_IT.mo ├── tgmpa-it_IT.po ├── tgmpa-ja.mo ├── tgmpa-ja.po ├── tgmpa-nl_NL.mo ├── tgmpa-nl_NL.po ├── tgmpa-pl_PL.mo ├── tgmpa-pl_PL.po ├── tgmpa-pt_BR.mo ├── tgmpa-pt_BR.po ├── tgmpa-pt_PT.mo ├── tgmpa-pt_PT.po ├── tgmpa-ro_RO.mo ├── tgmpa-ro_RO.po ├── tgmpa-ru_RU.mo ├── tgmpa-ru_RU.po ├── tgmpa-sr_RS.mo ├── tgmpa-sr_RS.po ├── tgmpa-sv_SE.mo ├── tgmpa-sv_SE.po ├── tgmpa-tr_TR.mo ├── tgmpa-tr_TR.po ├── tgmpa-vi_VN.mo ├── tgmpa-vi_VN.po ├── tgmpa-zh_TW.mo ├── tgmpa-zh_TW.po └── tgmpa.pot └── plugins └── tgm-example-plugin.zip /README.md: -------------------------------------------------------------------------------- 1 | # TGM Plugin Activation 2 | [![GitHub license](https://img.shields.io/badge/license-GPLv2-blue.svg)](https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/develop/LICENSE.md) 3 | [![Build Status](https://travis-ci.org/TGMPA/TGM-Plugin-Activation.svg?branch=develop)](https://travis-ci.org/TGMPA/TGM-Plugin-Activation) 4 | [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/TGMPA/TGM-Plugin-Activation/badges/quality-score.png?b=develop)](https://scrutinizer-ci.com/g/TGMPA/TGM-Plugin-Activation/?branch=develop) 5 | 6 | 7 | **Lead Developers:** 8 | [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)) 9 | **Version:** 2.6.1 10 | **Requires at least:** 3.7.0 11 | **Tested up to:** 4.5.2 12 | 13 | ## Description 14 | 15 | TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins). It allows your users to install, update and even automatically activate plugins in singular or bulk fashion using native WordPress classes, functions and interfaces. You can reference bundled plugins, plugins from the WordPress Plugin Repository or even plugins hosted elsewhere on the internet. 16 | 17 | ## Installation 18 | 19 | 1. Generate a customized version of the latest version of TGMPA based on your intended use-case using the [Custom TGMPA Generator](http://tgmpluginactivation.com/download/). 20 | 2. Extract the class file and place it somewhere in your theme hierarchy. 21 | 3. Add a `require_once` call within `functions.php` (or other file) referencing the class file. 22 | 4. Create a function, hooked to `tgmpa_register`, that registers the plugin and configurations. 23 | 24 | For steps 3 and 4, it is recommended you view, copy and paste the contents of `example.php` 25 | and amend to suit. The `example.php` file is a model for how you should include the class in your theme. 26 | 27 | Detailed documentation on [how to configure TGMPA](http://tgmpluginactivation.com/configuration/) is available on the website. 28 | 29 | __*We strongly recommend the use of the [Custom TGMPA Generator](http://tgmpluginactivation.com/download/) if you intend to use TGMPA in a theme which is to be published via WordPress.org or Themeforest.*__ 30 | 31 | The generated customized version of TGMPA will comply with the Theme Review guidelines and Theme Check. 32 | 33 | ### Composer 34 | 35 | TGM Plugin Activation is also available as a [package](https://packagist.org/packages/tgmpa/tgm-plugin-activation) installable via Composer: 36 | 37 | ~~~sh 38 | composer create-project tgmpa/tgm-plugin-activation --no-dev 39 | ~~~ 40 | 41 | ## Frequently Asked Questions 42 | 43 | See [the FAQ page](http://tgmpluginactivation.com/faq/). 44 | 45 | ## Feedback 46 | 47 | See https://github.com/TGMPA/TGM-Plugin-Activation/issues for current issues and the [guidelines for reporting bugs and enhancements](https://github.com/TGMPA/TGM-Plugin-Activation/wiki/Guidelines-for-reporting-bugs). 48 | 49 | __Note:__ TGM Plugin Activation library authors are not responsible for the *end-user support* for any plugin or theme which uses the library. 50 | 51 | ## Changelog 52 | 53 | See [CHANGELOG.md](CHANGELOG.md). 54 | 55 | ## Contributing to TGM Plugin Activation 56 | 57 | If you have a patch, or stumbled upon an issue with TGM Plugin Activation core, you can contribute this back to the code. Please read our [contributor guidelines](CONTRIBUTING.md) for more information how you can do this. 58 | 59 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tgmpa/tgm-plugin-activation", 3 | "description": "TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins).", 4 | "homepage": "http://tgmpluginactivation.com", 5 | "keywords": ["wordpress","plugins", "theme", "library", "activation"], 6 | "license": "GPL-2.0-or-later", 7 | "authors": [ 8 | { 9 | "name": "Thomas Griffin", 10 | "homepage": "http://thomasgriffinmedia.com", 11 | "role": "Developer" 12 | }, 13 | { 14 | "name": "Gary Jones", 15 | "homepage": "https://github.com/GaryJones", 16 | "role": "Developer" 17 | }, 18 | { 19 | "name": "Juliette Reinders Folmer", 20 | "homepage": "https://github.com/jrfnl", 21 | "role": "Developer" 22 | } 23 | ], 24 | "support": { 25 | "issues": "https://github.com/TGMPA/TGM-Plugin-Activation/issues", 26 | "source": "https://github.com/TGMPA/TGM-Plugin-Activation" 27 | }, 28 | "require": { 29 | "php": ">=5.2" 30 | }, 31 | "require-dev": { 32 | "dealerdirect/phpcodesniffer-composer-installer": "^0.6", 33 | "phpcompatibility/phpcompatibility-wp": "^2.0", 34 | "wp-coding-standards/wpcs": "^2.0" 35 | }, 36 | "autoload": { 37 | "files": ["class-tgm-plugin-activation.php"] 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- 1 | 'TGM Example Plugin', // The plugin name. 65 | 'slug' => 'tgm-example-plugin', // The plugin slug (typically the folder name). 66 | 'source' => get_stylesheet_directory() . '/lib/plugins/tgm-example-plugin.zip', // The plugin source. 67 | 'required' => true, // If false, the plugin is only 'recommended' instead of required. 68 | 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher. If the plugin version is higher than the plugin version installed, the user will be notified to update the plugin. 69 | 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 70 | 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. 71 | 'external_url' => '', // If set, overrides default API URL and points to an external URL. 72 | 'is_callable' => '', // If set, this callable will be be checked for availability to determine if a plugin is active. 73 | ), 74 | 75 | // This is an example of how to include a plugin from an arbitrary external source in your theme. 76 | array( 77 | 'name' => 'TGM New Media Plugin', // The plugin name. 78 | 'slug' => 'tgm-new-media-plugin', // The plugin slug (typically the folder name). 79 | 'source' => 'https://s3.amazonaws.com/tgm/tgm-new-media-plugin.zip', // The plugin source. 80 | 'required' => true, // If false, the plugin is only 'recommended' instead of required. 81 | 'external_url' => 'https://github.com/thomasgriffin/New-Media-Image-Uploader', // If set, overrides default API URL and points to an external URL. 82 | ), 83 | 84 | // This is an example of how to include a plugin from a GitHub repository in your theme. 85 | // This presumes that the plugin code is based in the root of the GitHub repository 86 | // and not in a subdirectory ('/src') of the repository. 87 | array( 88 | 'name' => 'Adminbar Link Comments to Pending', 89 | 'slug' => 'adminbar-link-comments-to-pending', 90 | 'source' => 'https://github.com/jrfnl/WP-adminbar-comments-to-pending/archive/master.zip', 91 | ), 92 | 93 | // This is an example of how to include a plugin from the WordPress Plugin Repository. 94 | array( 95 | 'name' => 'BuddyPress', 96 | 'slug' => 'buddypress', 97 | 'required' => false, 98 | ), 99 | 100 | // This is an example of the use of 'is_callable' functionality. A user could - for instance - 101 | // have Yoast SEO installed *or* Yoast SEO Premium. The slug would in that last case be different, i.e. 102 | // 'wordpress-seo-premium'. 103 | // By setting 'is_callable' to either a function from that plugin or a class method 104 | // `array( 'class', 'method' )` similar to how you hook in to actions and filters, TGMPA can still 105 | // recognize the plugin as being installed. 106 | array( 107 | 'name' => 'Yoast SEO', 108 | 'slug' => 'wordpress-seo', 109 | 'is_callable' => 'wpseo_init', 110 | ), 111 | 112 | ); 113 | 114 | /* 115 | * Array of configuration settings. Amend each line as needed. 116 | * 117 | * TGMPA will start providing localized text strings soon. If you already have translations of our standard 118 | * strings available, please help us make TGMPA even better by giving us access to these translations or by 119 | * sending in a pull-request with .po file(s) with the translations. 120 | * 121 | * Only uncomment the strings in the config array if you want to customize the strings. 122 | */ 123 | $config = array( 124 | 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 125 | 'default_path' => '', // Default absolute path to bundled plugins. 126 | 'menu' => 'tgmpa-install-plugins', // Menu slug. 127 | 'parent_slug' => 'themes.php', // Parent menu slug. 128 | 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 129 | 'has_notices' => true, // Show admin notices or not. 130 | 'dismissable' => true, // If false, a user cannot dismiss the nag message. 131 | 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 132 | 'is_automatic' => false, // Automatically activate plugins after installation or not. 133 | 'message' => '', // Message to output right before the plugins table. 134 | 135 | /* 136 | 'strings' => array( 137 | 'page_title' => __( 'Install Required Plugins', 'theme-slug' ), 138 | 'menu_title' => __( 'Install Plugins', 'theme-slug' ), 139 | // translators: %s: plugin name. 140 | 'installing' => __( 'Installing Plugin: %s', 'theme-slug' ), 141 | // translators: %s: plugin name. 142 | 'updating' => __( 'Updating Plugin: %s', 'theme-slug' ), 143 | 'oops' => __( 'Something went wrong with the plugin API.', 'theme-slug' ), 144 | 'notice_can_install_required' => _n_noop( 145 | // translators: 1: plugin name(s). 146 | 'This theme requires the following plugin: %1$s.', 147 | 'This theme requires the following plugins: %1$s.', 148 | 'theme-slug' 149 | ), 150 | 'notice_can_install_recommended' => _n_noop( 151 | // translators: 1: plugin name(s). 152 | 'This theme recommends the following plugin: %1$s.', 153 | 'This theme recommends the following plugins: %1$s.', 154 | 'theme-slug' 155 | ), 156 | 'notice_ask_to_update' => _n_noop( 157 | // translators: 1: plugin name(s). 158 | 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 159 | 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 160 | 'theme-slug' 161 | ), 162 | 'notice_ask_to_update_maybe' => _n_noop( 163 | // translators: 1: plugin name(s). 164 | 'There is an update available for: %1$s.', 165 | 'There are updates available for the following plugins: %1$s.', 166 | 'theme-slug' 167 | ), 168 | 'notice_can_activate_required' => _n_noop( 169 | // translators: 1: plugin name(s). 170 | 'The following required plugin is currently inactive: %1$s.', 171 | 'The following required plugins are currently inactive: %1$s.', 172 | 'theme-slug' 173 | ), 174 | 'notice_can_activate_recommended' => _n_noop( 175 | // translators: 1: plugin name(s). 176 | 'The following recommended plugin is currently inactive: %1$s.', 177 | 'The following recommended plugins are currently inactive: %1$s.', 178 | 'theme-slug' 179 | ), 180 | 'install_link' => _n_noop( 181 | 'Begin installing plugin', 182 | 'Begin installing plugins', 183 | 'theme-slug' 184 | ), 185 | 'update_link' => _n_noop( 186 | 'Begin updating plugin', 187 | 'Begin updating plugins', 188 | 'theme-slug' 189 | ), 190 | 'activate_link' => _n_noop( 191 | 'Begin activating plugin', 192 | 'Begin activating plugins', 193 | 'theme-slug' 194 | ), 195 | 'return' => __( 'Return to Required Plugins Installer', 'theme-slug' ), 196 | 'plugin_activated' => __( 'Plugin activated successfully.', 'theme-slug' ), 197 | 'activated_successfully' => __( 'The following plugin was activated successfully:', 'theme-slug' ), 198 | // translators: 1: plugin name. 199 | 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'theme-slug' ), 200 | // translators: 1: plugin name. 201 | 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'theme-slug' ), 202 | // translators: 1: dashboard link. 203 | 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'theme-slug' ), 204 | 'dismiss' => __( 'Dismiss this notice', 'theme-slug' ), 205 | 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'theme-slug' ), 206 | 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'theme-slug' ), 207 | 208 | 'nag_type' => '', // Determines admin notice type - can only be one of the typical WP notice classes, such as 'updated', 'update-nag', 'notice-warning', 'notice-info' or 'error'. Some of which may not work as expected in older WP versions. 209 | ), 210 | */ 211 | ); 212 | 213 | tgmpa( $plugins, $config ); 214 | } 215 | -------------------------------------------------------------------------------- /languages/tgmpa-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-cs_CZ.mo -------------------------------------------------------------------------------- /languages/tgmpa-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-de_DE.mo -------------------------------------------------------------------------------- /languages/tgmpa-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-el.mo -------------------------------------------------------------------------------- /languages/tgmpa-en_AU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-en_AU.mo -------------------------------------------------------------------------------- /languages/tgmpa-en_AU.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (Australia) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 02:59+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:59+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: en_AU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "Updating Plugin: %s" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme recommends the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin" 101 | msgstr[1] "Begin installing plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin" 107 | msgstr[1] "Begin updating plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin" 113 | msgstr[1] "Begin activating plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the Dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "The following plugin was activated successfully:" 132 | msgstr[1] "The following plugins were activated successfully:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "No action taken. Plugin %1$s was already active." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "All plugins installed and activated successfully. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Dismiss this notice" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Please contact the administrator of this site for help." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "This plugin needs to be updated to be compatible with your theme." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Update Required" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Set the parent_slug config variable instead." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "and" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Required" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Recommended" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress Repository" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "External Source" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Pre-Packaged" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Not Installed" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Installed But Not Activated" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Active" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Required Update not Available" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Requires Update" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Update recommended" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "All (%s)" 275 | msgstr[1] "All (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "To Install (%s)" 283 | msgstr[1] "To Install (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Update Available (%s)" 291 | msgstr[1] "Update Available (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "To Activate (%s)" 299 | msgstr[1] "To Activate (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "unknown" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Installed version:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimum required version:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Available version:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "No plugins to install, update or activate." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Plugin" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Source" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Type" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Version" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Status" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Install %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Update %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Activate %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Upgrade message from the plugin author:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Install" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Update" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Activate" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "No plugins were selected to be installed. No action taken." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "No plugins were selected to be updated. No action taken." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "No plugins are available to be installed at this time." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "No plugins are available to be updated at this time." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "No plugins were selected to be activated. No action taken." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "No plugins are available to be activated at this time." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Plugin activation failed." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "An error occurred while installing %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "The installation of %1$s failed." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s installed and activated successfully." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Show Details" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Hide Details" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "All installations and activations have been completed." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s installed successfully." 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "All installations have been completed." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /languages/tgmpa-en_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-en_CA.mo -------------------------------------------------------------------------------- /languages/tgmpa-en_CA.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (Canada) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 02:59+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:59+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: en_CA\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme requires the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin." 101 | msgstr[1] "Begin installing plugins." 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin." 107 | msgstr[1] "Begin updating plugins." 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin." 113 | msgstr[1] "Begin activating plugins." 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | #, fuzzy 130 | msgid "The following plugin was activated successfully:" 131 | msgid_plural "The following plugins were activated successfully:" 132 | msgstr[0] "The following plugin was activated successfully:" 133 | msgstr[1] "The following plugin was activated successfully:" 134 | 135 | #. translators: 1: plugin name. 136 | #: class-tgm-plugin-activation.php:397 137 | #, php-format 138 | msgid "No action taken. Plugin %1$s was already active." 139 | msgstr "No action taken. Plugin %1$s was already active." 140 | 141 | #. translators: 1: plugin name. 142 | #: class-tgm-plugin-activation.php:399 143 | #, php-format 144 | msgid "" 145 | "Plugin not activated. A higher version of %s is needed for this theme. " 146 | "Please update the plugin." 147 | msgstr "" 148 | "Plugin not activated. A higher version of %s is needed for this theme. " 149 | "Please update the plugin." 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "All plugins installed and activated successfully. %1$s" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "Dismiss this notice." 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "Please contact the administrator of this site for help." 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "This plugin needs to be updated to be compatible with your theme." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Update Required" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Set the parent_slug config variable instead." 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | "The remote plugin package does not contain a folder with the desired slug " 189 | "and renaming did not work." 190 | 191 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 192 | msgid "" 193 | "Please contact the plugin provider and ask them to package their plugin " 194 | "according to the WordPress guidelines." 195 | msgstr "" 196 | "Please contact the plugin provider and ask them to package their plugin " 197 | "according to the WordPress guidelines." 198 | 199 | #: class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "The remote plugin package consists of more than one file, but the files are " 202 | "not packaged in a folder." 203 | msgstr "" 204 | "The remote plugin package consists of more than one file, but the files are " 205 | "not packaged in a folder." 206 | 207 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 208 | msgctxt "plugin A *and* plugin B" 209 | msgid "and" 210 | msgstr "and" 211 | 212 | #. translators: %s: version number 213 | #: class-tgm-plugin-activation.php:2075 214 | #, php-format 215 | msgid "TGMPA v%s" 216 | msgstr "TGMPA v%s" 217 | 218 | #: class-tgm-plugin-activation.php:2366 219 | msgid "Required" 220 | msgstr "Required" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Recommended" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "WordPress Repository" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "External Source" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Pre-Packaged" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Not Installed" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installed But Not Activated" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Active" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Required Update not Available" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Requires Update" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Update recommended" 261 | 262 | #. translators: 1: install status, 2: update status 263 | #: class-tgm-plugin-activation.php:2435 264 | #, php-format 265 | msgctxt "Install/Update Status" 266 | msgid "%1$s, %2$s" 267 | msgstr "%1$s, %2$s" 268 | 269 | #. translators: 1: number of plugins. 270 | #: class-tgm-plugin-activation.php:2481 271 | #, php-format 272 | msgctxt "plugins" 273 | msgid "All (%s)" 274 | msgid_plural "All (%s)" 275 | msgstr[0] "All (%s)" 276 | msgstr[1] "All (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2485 280 | #, php-format 281 | msgid "To Install (%s)" 282 | msgid_plural "To Install (%s)" 283 | msgstr[0] "To Install (%s)" 284 | msgstr[1] "To Install (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2489 288 | #, php-format 289 | msgid "Update Available (%s)" 290 | msgid_plural "Update Available (%s)" 291 | msgstr[0] "Update Available (%s)" 292 | msgstr[1] "Update Available (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2493 296 | #, php-format 297 | msgid "To Activate (%s)" 298 | msgid_plural "To Activate (%s)" 299 | msgstr[0] "To Activate (%s)" 300 | msgstr[1] "To Activate (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "unknown" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Installed version:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Minimum required version:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Available version:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "" 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Plugin" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Source" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Type" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Version" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Status" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2696 345 | #, php-format 346 | msgid "Install %2$s" 347 | msgstr "Install %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2701 351 | #, php-format 352 | msgid "Update %2$s" 353 | msgstr "Update %2$s" 354 | 355 | #. translators: %2$s: plugin name in screen reader markup 356 | #: class-tgm-plugin-activation.php:2707 357 | #, php-format 358 | msgid "Activate %2$s" 359 | msgstr "Activate %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Upgrade message from the plugin author:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Install" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Update" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Activate" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "No plugins were selected to be installed. No action taken." 380 | 381 | #: class-tgm-plugin-activation.php:2852 382 | msgid "No plugins were selected to be updated. No action taken." 383 | msgstr "No plugins were selected to be updated. No action taken." 384 | 385 | #: class-tgm-plugin-activation.php:2893 386 | msgid "No plugins are available to be installed at this time." 387 | msgstr "No plugins are available to be installed at this time." 388 | 389 | #: class-tgm-plugin-activation.php:2895 390 | msgid "No plugins are available to be updated at this time." 391 | msgstr "No plugins are available to be updated at this time." 392 | 393 | #: class-tgm-plugin-activation.php:3001 394 | msgid "No plugins were selected to be activated. No action taken." 395 | msgstr "No plugins were selected to be activated. No action taken." 396 | 397 | #: class-tgm-plugin-activation.php:3027 398 | msgid "No plugins are available to be activated at this time." 399 | msgstr "No plugins are available to be activated at this time." 400 | 401 | #: class-tgm-plugin-activation.php:3251 402 | msgid "Plugin activation failed." 403 | msgstr "Plugin activation failed." 404 | 405 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 406 | #: class-tgm-plugin-activation.php:3591 407 | #, php-format 408 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 409 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 410 | 411 | #. translators: 1: plugin name, 2: error message. 412 | #: class-tgm-plugin-activation.php:3594 413 | #, php-format 414 | msgid "An error occurred while installing %1$s: %2$s." 415 | msgstr "An error occurred while installing %1$s: %2$s." 416 | 417 | #. translators: 1: plugin name. 418 | #: class-tgm-plugin-activation.php:3596 419 | #, php-format 420 | msgid "The installation of %1$s failed." 421 | msgstr "The installation of %1$s failed." 422 | 423 | #: class-tgm-plugin-activation.php:3600 424 | msgid "" 425 | "The installation and activation process is starting. This process may take a " 426 | "while on some hosts, so please be patient." 427 | msgstr "" 428 | "The installation and activation process is starting. This process may take a " 429 | "while on some hosts, so please be patient." 430 | 431 | #. translators: 1: plugin name. 432 | #: class-tgm-plugin-activation.php:3602 433 | #, php-format 434 | msgid "%1$s installed and activated successfully." 435 | msgstr "%1$s installed and activated successfully." 436 | 437 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 438 | msgid "Show Details" 439 | msgstr "Show Details" 440 | 441 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 442 | msgid "Hide Details" 443 | msgstr "Hide Details" 444 | 445 | #: class-tgm-plugin-activation.php:3603 446 | msgid "All installations and activations have been completed." 447 | msgstr "All installations and activations have been completed." 448 | 449 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 450 | #: class-tgm-plugin-activation.php:3605 451 | #, php-format 452 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 454 | 455 | #: class-tgm-plugin-activation.php:3608 456 | msgid "" 457 | "The installation process is starting. This process may take a while on some " 458 | "hosts, so please be patient." 459 | msgstr "" 460 | "The installation process is starting. This process may take a while on some " 461 | "hosts, so please be patient." 462 | 463 | #. translators: 1: plugin name. 464 | #: class-tgm-plugin-activation.php:3610 465 | #, php-format 466 | msgid "%1$s installed successfully." 467 | msgstr "%1$s installed successfully." 468 | 469 | #: class-tgm-plugin-activation.php:3611 470 | msgid "All installations have been completed." 471 | msgstr "All installations have been completed." 472 | 473 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 474 | #: class-tgm-plugin-activation.php:3613 475 | #, php-format 476 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 477 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 478 | -------------------------------------------------------------------------------- /languages/tgmpa-en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-en_GB.mo -------------------------------------------------------------------------------- /languages/tgmpa-en_GB.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in English (UK) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:00+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:00+0200\n" 8 | "Last-Translator: Gary Jones\n" 9 | "Language-Team: TGMPA\n" 10 | "Language: en_GB\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Install Required Plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Install Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installing Plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Something went wrong with the plugin API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "This theme requires the following plugin: %1$s." 47 | msgstr[1] "This theme requires the following plugins: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "This theme recommends the following plugin: %1$s." 55 | msgstr[1] "This theme recommends the following plugins: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "The following plugin needs to be updated to its latest version to ensure " 68 | "maximum compatibility with this theme: %1$s." 69 | msgstr[1] "" 70 | "The following plugins need to be updated to their latest version to ensure " 71 | "maximum compatibility with this theme: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "There is an update available for: %1$s." 79 | msgstr[1] "There are updates available for the following plugins: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "The following required plugin is currently inactive: %1$s." 87 | msgstr[1] "The following required plugins are currently inactive: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "The following recommended plugin is currently inactive: %1$s." 95 | msgstr[1] "The following recommended plugins are currently inactive: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin installing plugin" 101 | msgstr[1] "Begin installing plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin updating plugin" 107 | msgstr[1] "Begin updating plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin activating plugin" 113 | msgstr[1] "Begin activating plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Return to Required Plugins Installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Return to the Dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin activated successfully." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "The following plugin was activated successfully:" 132 | msgstr[1] "The following plugin was activated successfully:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "No action taken. Plugin %1$s was already active." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "All plugins installed and activated successfully. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Dismiss this notice" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Please contact the administrator of this site for help." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "This plugin needs to be updated to be compatible with your theme." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Update Required" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Set the parent_slug config variable instead." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "and" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Required" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Recommended" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress Repository" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "External Source" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Pre-Packaged" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Not Installed" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Installed But Not Activated" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Active" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Required Update not Available" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Requires Update" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Update recommended" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "All (%s)" 275 | msgstr[1] "All (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "To Install (%s)" 283 | msgstr[1] "To Install (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Update Available (%s)" 291 | msgstr[1] "Update Available (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "To Activate (%s)" 299 | msgstr[1] "To Activate (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "unknown" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Installed version:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimum required version:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Available version:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "No plugins to install, update or activate." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Plugin" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Source" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Type" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Version" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Status" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Install %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Update %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Activate %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Upgrade message from the plugin author:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Install" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Update" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Activate" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "No plugins were selected to be installed. No action taken." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "No plugins were selected to be updated. No action taken." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "No plugins are available to be installed at this time." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "No plugins are available to be updated at this time." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "No plugins were selected to be activated. No action taken." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "No plugins are available to be activated at this time." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Plugin activation failed." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Updating Plugin %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "An error occurred while installing %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "The installation of %1$s failed." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s installed and activated successfully." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Show Details" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Hide Details" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "All installations and activations have been completed." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Installing and Activating Plugin %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s installed successfully." 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "All installations have been completed." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Installing Plugin %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /languages/tgmpa-eo.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-eo.mo -------------------------------------------------------------------------------- /languages/tgmpa-eo.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Esperanto 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:00+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:00+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: eo\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Instali devigajn kromprogramojn" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Instali kromprogramojn" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Instalas kromprogramon: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Io misis pri la kromprograma API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Tiu ĉi etoso postulas la sekvan kromprogramon: %1$s." 47 | msgstr[1] "Tiu ĉi etoso postulas la sekvajn kromprogramojn: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Tiu ĉi etoso rekomendas la sekvan kromprogramon: %1$s." 55 | msgstr[1] "Tiu ĉi etoso rekomendas la sekvajn kromprogramojn: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "La sekva kromprogramo bezonas esti ĝisdatigita al la plej nova versio por " 68 | "certigi kongruecon kun tiu ĉi etoso: %1$s." 69 | msgstr[1] "" 70 | "La sekvaj kromprogramoj bezonas esti ĝisdatigitaj al la plej nova versio por " 71 | "certigi kongruecon kun tiu ĉi etoso: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Ĝisdatigo haveblas por: %1$s." 79 | msgstr[1] "Ĝisdatigoj haveblas por la sekvaj kromprogramoj: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "La sekva deviga kromprogramo ne estas aktiva nun: %1$s." 87 | msgstr[1] "La sekvaj devigaj kromprogramoj ne estas aktivaj nun: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "La sekva rekomendita kromprogramo ne estas aktiva nun: %1$s." 95 | msgstr[1] "La sekvaj rekomenditaj kromprogramoj ne estas aktivaj nun: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Ek al instalo de kromprogramo" 101 | msgstr[1] "Ek al instalo de kromprogramoj" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Ek al ĝisdatigo de kromprogramo" 107 | msgstr[1] "Ek al ĝisdatigo de kromprogramoj" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Ek al aktivigo de kromprogramo" 113 | msgstr[1] "Ek al aktivigo de kromprogramoj" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Reen al instalilo de devigaj kromprogramoj" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Reen al la panelo" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Kromprogramo estis aktivigita sukcese." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Nenio farita. Kromprogramo %1$s jam estis aktiva." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Kromprogramo ne aktivigita. Pli nova versio de %s estas bezonata por tiu ĉi " 148 | "etoso. Bonvole ĝisdatigu la kromprogramon." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Ĉiuj kromprogramoj estis sukcese instalitaj kaj aktivigitaj. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Forsendi tiun ĉi avizon" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Bonvole kontaktu la retejan administranton por helpo." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "Tiu kromprogramo bezonas esti ĝisdatigita por kongrui kun via etoso." 173 | 174 | #: class-tgm-plugin-activation.php:608 175 | msgid "Update Required" 176 | msgstr "Deviga ĝisdatigo" 177 | 178 | #: class-tgm-plugin-activation.php:725 179 | msgid "Set the parent_slug config variable instead." 180 | msgstr "Anstataŭe, fiksu la agordan variablon parent_slug." 181 | 182 | #: class-tgm-plugin-activation.php:1027 183 | msgid "" 184 | "The remote plugin package does not contain a folder with the desired slug " 185 | "and renaming did not work." 186 | msgstr "" 187 | "La fora kromprograma pakaĵo ne enhavas dosierujon kun dezirata url-nomo kaj " 188 | "alinomo ne sukcesis." 189 | 190 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 191 | msgid "" 192 | "Please contact the plugin provider and ask them to package their plugin " 193 | "according to the WordPress guidelines." 194 | msgstr "" 195 | "Bonvole kontaktu la programiston de tiu kromprogramo kaj petu pakon de la " 196 | "kromprogramo laŭ la gvidlinioj de WordPress." 197 | 198 | #: class-tgm-plugin-activation.php:1030 199 | msgid "" 200 | "The remote plugin package consists of more than one file, but the files are " 201 | "not packaged in a folder." 202 | msgstr "" 203 | "La fora kromprograma pakaĵo enhavas pli ol unu dosieron, sed la dosieroj ne " 204 | "estas pakitaj en dosierujo." 205 | 206 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 207 | msgctxt "plugin A *and* plugin B" 208 | msgid "and" 209 | msgstr "kaj" 210 | 211 | #. translators: %s: version number 212 | #: class-tgm-plugin-activation.php:2075 213 | #, php-format 214 | msgid "TGMPA v%s" 215 | msgstr "TGMPA v%s" 216 | 217 | #: class-tgm-plugin-activation.php:2366 218 | msgid "Required" 219 | msgstr "Deviga" 220 | 221 | #: class-tgm-plugin-activation.php:2369 222 | msgid "Recommended" 223 | msgstr "Rekomendita" 224 | 225 | #: class-tgm-plugin-activation.php:2385 226 | msgid "WordPress Repository" 227 | msgstr "WordPress-deponejo" 228 | 229 | #: class-tgm-plugin-activation.php:2388 230 | msgid "External Source" 231 | msgstr "Ekstera fonto" 232 | 233 | #: class-tgm-plugin-activation.php:2391 234 | msgid "Pre-Packaged" 235 | msgstr "Antaŭ-pakita" 236 | 237 | #: class-tgm-plugin-activation.php:2408 238 | msgid "Not Installed" 239 | msgstr "Ne instalita" 240 | 241 | #: class-tgm-plugin-activation.php:2412 242 | msgid "Installed But Not Activated" 243 | msgstr "Instalita sed ne aktivigita" 244 | 245 | #: class-tgm-plugin-activation.php:2414 246 | msgid "Active" 247 | msgstr "Aktiva" 248 | 249 | #: class-tgm-plugin-activation.php:2420 250 | msgid "Required Update not Available" 251 | msgstr "Deviga ĝisdatigo ne havebla" 252 | 253 | #: class-tgm-plugin-activation.php:2423 254 | msgid "Requires Update" 255 | msgstr "Postulas ĝisdatigon" 256 | 257 | #: class-tgm-plugin-activation.php:2426 258 | msgid "Update recommended" 259 | msgstr "Ĝisdatigo rekomendita" 260 | 261 | #. translators: 1: install status, 2: update status 262 | #: class-tgm-plugin-activation.php:2435 263 | #, php-format 264 | msgctxt "Install/Update Status" 265 | msgid "%1$s, %2$s" 266 | msgstr "%1$s, %2$s" 267 | 268 | #. translators: 1: number of plugins. 269 | #: class-tgm-plugin-activation.php:2481 270 | #, php-format 271 | msgctxt "plugins" 272 | msgid "All (%s)" 273 | msgid_plural "All (%s)" 274 | msgstr[0] "Ĉiuj (%s)" 275 | msgstr[1] "Ĉiuj (%s)" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2485 279 | #, php-format 280 | msgid "To Install (%s)" 281 | msgid_plural "To Install (%s)" 282 | msgstr[0] "Por instali (%s)" 283 | msgstr[1] "Por instali (%s)" 284 | 285 | #. translators: 1: number of plugins. 286 | #: class-tgm-plugin-activation.php:2489 287 | #, php-format 288 | msgid "Update Available (%s)" 289 | msgid_plural "Update Available (%s)" 290 | msgstr[0] "Ĝisdatigo havebla (%s)" 291 | msgstr[1] "Ĝisdatigoj haveblaj (%s)" 292 | 293 | #. translators: 1: number of plugins. 294 | #: class-tgm-plugin-activation.php:2493 295 | #, php-format 296 | msgid "To Activate (%s)" 297 | msgid_plural "To Activate (%s)" 298 | msgstr[0] "Por aktivigi (%s)" 299 | msgstr[1] "Por aktivigi (%s)" 300 | 301 | #: class-tgm-plugin-activation.php:2575 302 | msgctxt "as in: \"version nr unknown\"" 303 | msgid "unknown" 304 | msgstr "nekonata" 305 | 306 | #: class-tgm-plugin-activation.php:2583 307 | msgid "Installed version:" 308 | msgstr "Instalita versio:" 309 | 310 | #: class-tgm-plugin-activation.php:2591 311 | msgid "Minimum required version:" 312 | msgstr "Minimuma deviga versio:" 313 | 314 | #: class-tgm-plugin-activation.php:2603 315 | msgid "Available version:" 316 | msgstr "Havebla versio:" 317 | 318 | #: class-tgm-plugin-activation.php:2626 319 | msgid "No plugins to install, update or activate." 320 | msgstr "Neniuj kromprogramoj por instali, ĝisdatigi aŭ aktivigi." 321 | 322 | #: class-tgm-plugin-activation.php:2640 323 | msgid "Plugin" 324 | msgstr "Kromprogramo" 325 | 326 | #: class-tgm-plugin-activation.php:2641 327 | msgid "Source" 328 | msgstr "Fonto" 329 | 330 | #: class-tgm-plugin-activation.php:2642 331 | msgid "Type" 332 | msgstr "Tipo" 333 | 334 | #: class-tgm-plugin-activation.php:2646 335 | msgid "Version" 336 | msgstr "Versio" 337 | 338 | #: class-tgm-plugin-activation.php:2647 339 | msgid "Status" 340 | msgstr "Stato" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2696 344 | #, php-format 345 | msgid "Install %2$s" 346 | msgstr "Instali %2$s" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2701 350 | #, php-format 351 | msgid "Update %2$s" 352 | msgstr "Ĝisdatigi %2$s" 353 | 354 | #. translators: %2$s: plugin name in screen reader markup 355 | #: class-tgm-plugin-activation.php:2707 356 | #, php-format 357 | msgid "Activate %2$s" 358 | msgstr "Aktivigi %2$s" 359 | 360 | #: class-tgm-plugin-activation.php:2777 361 | msgid "Upgrade message from the plugin author:" 362 | msgstr "Ĝisdatigo-mesaĝo de la aŭtoro de la kromprogramo:" 363 | 364 | #: class-tgm-plugin-activation.php:2810 365 | msgid "Install" 366 | msgstr "Instali" 367 | 368 | #: class-tgm-plugin-activation.php:2816 369 | msgid "Update" 370 | msgstr "Ĝisdatigi" 371 | 372 | #: class-tgm-plugin-activation.php:2819 373 | msgid "Activate" 374 | msgstr "Aktivigi" 375 | 376 | #: class-tgm-plugin-activation.php:2850 377 | msgid "No plugins were selected to be installed. No action taken." 378 | msgstr "Neniuj kromprogramoj elektitaj por instalo. Nenio farita." 379 | 380 | #: class-tgm-plugin-activation.php:2852 381 | msgid "No plugins were selected to be updated. No action taken." 382 | msgstr "Neniuj kromprogramoj elektitaj por ĝisdatigo. Nenio farita." 383 | 384 | #: class-tgm-plugin-activation.php:2893 385 | msgid "No plugins are available to be installed at this time." 386 | msgstr "Neniuj kromprogramoj haveblaj por instalo nuntempe." 387 | 388 | #: class-tgm-plugin-activation.php:2895 389 | msgid "No plugins are available to be updated at this time." 390 | msgstr "Nun, neniuj ĝisdatigoj por kromprogramoj." 391 | 392 | #: class-tgm-plugin-activation.php:3001 393 | msgid "No plugins were selected to be activated. No action taken." 394 | msgstr "Neniuj kromprogramoj elektitaj por aktivigo. Neniu ago farita." 395 | 396 | #: class-tgm-plugin-activation.php:3027 397 | msgid "No plugins are available to be activated at this time." 398 | msgstr "Neniuj kromprogramoj aktivigeblaj nuntempe." 399 | 400 | #: class-tgm-plugin-activation.php:3251 401 | msgid "Plugin activation failed." 402 | msgstr "Aktivigo de kromprogramo malsukcesis." 403 | 404 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 405 | #: class-tgm-plugin-activation.php:3591 406 | #, php-format 407 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 408 | msgstr "Ĝisdatigante kromprogrameton %1$s (%2$d/%3$d)" 409 | 410 | #. translators: 1: plugin name, 2: error message. 411 | #: class-tgm-plugin-activation.php:3594 412 | #, php-format 413 | msgid "An error occurred while installing %1$s: %2$s." 414 | msgstr "Eraro okazis dum instalo de %1$s: %2$s." 415 | 416 | #. translators: 1: plugin name. 417 | #: class-tgm-plugin-activation.php:3596 418 | #, php-format 419 | msgid "The installation of %1$s failed." 420 | msgstr "La instalo de %1$s malsukcesis." 421 | 422 | #: class-tgm-plugin-activation.php:3600 423 | msgid "" 424 | "The installation and activation process is starting. This process may take a " 425 | "while on some hosts, so please be patient." 426 | msgstr "" 427 | "La instalo kaj aktivigo komenciĝas. Tiu procezo eble daŭros longatempe, do " 428 | "bonvole estu pacienca. " 429 | 430 | #. translators: 1: plugin name. 431 | #: class-tgm-plugin-activation.php:3602 432 | #, php-format 433 | msgid "%1$s installed and activated successfully." 434 | msgstr "%1$s sukcese instalis kaj aktiviĝis." 435 | 436 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 437 | msgid "Show Details" 438 | msgstr "Montri detalojn" 439 | 440 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 441 | msgid "Hide Details" 442 | msgstr "Kaŝi detalojn" 443 | 444 | #: class-tgm-plugin-activation.php:3603 445 | msgid "All installations and activations have been completed." 446 | msgstr "Ĉiuj instaloj kaj aktivigoj estas finitaj." 447 | 448 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 449 | #: class-tgm-plugin-activation.php:3605 450 | #, php-format 451 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 452 | msgstr "Instalas kaj aktivigas kromprogramon %1$s (%2$d/%3$d)" 453 | 454 | #: class-tgm-plugin-activation.php:3608 455 | msgid "" 456 | "The installation process is starting. This process may take a while on some " 457 | "hosts, so please be patient." 458 | msgstr "" 459 | "La instalo komenciĝas. Tiu procezo eble daŭros longatempe, do bonvole estu " 460 | "pacienca." 461 | 462 | #. translators: 1: plugin name. 463 | #: class-tgm-plugin-activation.php:3610 464 | #, php-format 465 | msgid "%1$s installed successfully." 466 | msgstr "%1$s sukcese instalis" 467 | 468 | #: class-tgm-plugin-activation.php:3611 469 | msgid "All installations have been completed." 470 | msgstr "Ĉiuj instaloj estas finitaj." 471 | 472 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 473 | #: class-tgm-plugin-activation.php:3613 474 | #, php-format 475 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 476 | msgstr "Instalas kromprogramon %1$s (%2$d/%3$d)" 477 | -------------------------------------------------------------------------------- /languages/tgmpa-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-es_ES.mo -------------------------------------------------------------------------------- /languages/tgmpa-fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-fr_CA.mo -------------------------------------------------------------------------------- /languages/tgmpa-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-fr_FR.mo -------------------------------------------------------------------------------- /languages/tgmpa-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-he_IL.mo -------------------------------------------------------------------------------- /languages/tgmpa-he_IL.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Hebrew 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:01+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:02+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: he\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "התקנת תוספים נדרשים" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "תוסף חדש" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "התקנת התוסף: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "" 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "התבנית דורשת את התוסף הבא: %1$s." 47 | msgstr[1] "התבנית דורשת את התוספים הבאים: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "התבנית ממליצה על התוסף הבא: %1$s." 55 | msgstr[1] "התבנית ממליצה על התוספים הבאים: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "התוסף הבא צריך להיות מעודכן לגרסתו האחרונה על מנת להבטיח את התאימות " 68 | "המקסימלית לתבנית זו: %1$s." 69 | msgstr[1] "" 70 | "התוספים הבאים צריכים להיות מעודכים לגרסתם האחרונה על מנת להבטיח את התאימות " 71 | "המקסימלית לתבנית זו: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "ישנו עדכון זמין עבור: %1$s." 79 | msgstr[1] "ישנם עדכונים זמינים עבור: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "התוסף הדרוש הבא לא פעיל כרגע: %1$s." 87 | msgstr[1] "התוספים הדרושים הבאים לא פעילים כרגע: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "התוסף המומלץ הבא לא פעיל כרגע: %1$s." 95 | msgstr[1] "התוספים המומלצים הבאים לא פעילים כרגע: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "החל בהתקנת התוסף" 101 | msgstr[1] "החל בהתקנת התוספים" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "מתחיל לעדכן את התוסף" 107 | msgstr[1] "מתחיל לעדכן את התוספים" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "החל בהפעלת התוסף" 113 | msgstr[1] "החל בהפעלת התוספים" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "חזרה להתקנת תוספים נדרשים" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "חזרה ללוח הבקרה" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "התוסף הופעל בהצלחה." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "" 132 | msgstr[1] "" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "לא בוצעה כל פעולה. התוסף %1$s כבר הופעל." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "התוסף לא הופעל. תבנית זו דורשת גירסה עדכנית יותר של %s. נא לעדכן את התוסף." 148 | 149 | #. translators: 1: dashboard link. 150 | #: class-tgm-plugin-activation.php:401 151 | #, php-format 152 | msgid "All plugins installed and activated successfully. %1$s" 153 | msgstr "כל התוספים הותקנו והופעלו בהצלחה. %1$s" 154 | 155 | #: class-tgm-plugin-activation.php:402 156 | msgid "Dismiss this notice" 157 | msgstr "שחרר הודעה זו" 158 | 159 | #: class-tgm-plugin-activation.php:403 160 | msgid "" 161 | "There are one or more required or recommended plugins to install, update or " 162 | "activate." 163 | msgstr "" 164 | 165 | #: class-tgm-plugin-activation.php:404 166 | msgid "Please contact the administrator of this site for help." 167 | msgstr "לקבלת עזרה יש ליצור קשר עם הנהלת האתר." 168 | 169 | #: class-tgm-plugin-activation.php:607 170 | msgid "This plugin needs to be updated to be compatible with your theme." 171 | msgstr "יש לעדכן תוסף זה כדי שיתאים לתבנית." 172 | 173 | #: class-tgm-plugin-activation.php:608 174 | msgid "Update Required" 175 | msgstr "נדרש עדכון" 176 | 177 | #: class-tgm-plugin-activation.php:725 178 | msgid "Set the parent_slug config variable instead." 179 | msgstr "" 180 | 181 | #: class-tgm-plugin-activation.php:1027 182 | msgid "" 183 | "The remote plugin package does not contain a folder with the desired slug " 184 | "and renaming did not work." 185 | msgstr "" 186 | 187 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 188 | msgid "" 189 | "Please contact the plugin provider and ask them to package their plugin " 190 | "according to the WordPress guidelines." 191 | msgstr "פנו בבקשה ליוצר התוסף ובקשו ממנו לארוז את התוסף בהתאם להנחיות וורדפרס." 192 | 193 | #: class-tgm-plugin-activation.php:1030 194 | msgid "" 195 | "The remote plugin package consists of more than one file, but the files are " 196 | "not packaged in a folder." 197 | msgstr "" 198 | 199 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 200 | msgctxt "plugin A *and* plugin B" 201 | msgid "and" 202 | msgstr "ו" 203 | 204 | #. translators: %s: version number 205 | #: class-tgm-plugin-activation.php:2075 206 | #, fuzzy, php-format 207 | msgid "TGMPA v%s" 208 | msgstr "TGMPA v%s" 209 | 210 | #: class-tgm-plugin-activation.php:2366 211 | msgid "Required" 212 | msgstr "נדרש" 213 | 214 | #: class-tgm-plugin-activation.php:2369 215 | msgid "Recommended" 216 | msgstr "מומלץ" 217 | 218 | #: class-tgm-plugin-activation.php:2385 219 | msgid "WordPress Repository" 220 | msgstr "מאגר וורדפרס" 221 | 222 | #: class-tgm-plugin-activation.php:2388 223 | msgid "External Source" 224 | msgstr "מקור חיצוני" 225 | 226 | #: class-tgm-plugin-activation.php:2391 227 | msgid "Pre-Packaged" 228 | msgstr "ארוז מראש" 229 | 230 | #: class-tgm-plugin-activation.php:2408 231 | msgid "Not Installed" 232 | msgstr "לא מותקן" 233 | 234 | #: class-tgm-plugin-activation.php:2412 235 | msgid "Installed But Not Activated" 236 | msgstr "מותקן אך לא מופעל" 237 | 238 | #: class-tgm-plugin-activation.php:2414 239 | msgid "Active" 240 | msgstr "ערכה פעילה" 241 | 242 | #: class-tgm-plugin-activation.php:2420 243 | msgid "Required Update not Available" 244 | msgstr "העדכון הדרוש אינו זמין" 245 | 246 | #: class-tgm-plugin-activation.php:2423 247 | msgid "Requires Update" 248 | msgstr "דרוש עדכון" 249 | 250 | #: class-tgm-plugin-activation.php:2426 251 | msgid "Update recommended" 252 | msgstr "מומלץ לעדכן" 253 | 254 | #. translators: 1: install status, 2: update status 255 | #: class-tgm-plugin-activation.php:2435 256 | #, fuzzy, php-format 257 | msgctxt "Install/Update Status" 258 | msgid "%1$s, %2$s" 259 | msgstr "%1$s, %2$s" 260 | 261 | #. translators: 1: number of plugins. 262 | #: class-tgm-plugin-activation.php:2481 263 | #, php-format 264 | msgctxt "plugins" 265 | msgid "All (%s)" 266 | msgid_plural "All (%s)" 267 | msgstr[0] "הכל (%s)" 268 | msgstr[1] "הכל (%s)" 269 | 270 | #. translators: 1: number of plugins. 271 | #: class-tgm-plugin-activation.php:2485 272 | #, php-format 273 | msgid "To Install (%s)" 274 | msgid_plural "To Install (%s)" 275 | msgstr[0] "התקנה (%s)" 276 | msgstr[1] "התקנה (%s)" 277 | 278 | #. translators: 1: number of plugins. 279 | #: class-tgm-plugin-activation.php:2489 280 | #, php-format 281 | msgid "Update Available (%s)" 282 | msgid_plural "Update Available (%s)" 283 | msgstr[0] "עדכונים זמינים (%s)" 284 | msgstr[1] "עדכונים זמינים (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2493 288 | #, php-format 289 | msgid "To Activate (%s)" 290 | msgid_plural "To Activate (%s)" 291 | msgstr[0] "הפעלה (%s)" 292 | msgstr[1] "הפעלה (%s)" 293 | 294 | #: class-tgm-plugin-activation.php:2575 295 | msgctxt "as in: \"version nr unknown\"" 296 | msgid "unknown" 297 | msgstr "לא ידוע" 298 | 299 | #: class-tgm-plugin-activation.php:2583 300 | msgid "Installed version:" 301 | msgstr "גרסה מותקנת:" 302 | 303 | #: class-tgm-plugin-activation.php:2591 304 | msgid "Minimum required version:" 305 | msgstr "גירסה מינימלית נדרשת:" 306 | 307 | #: class-tgm-plugin-activation.php:2603 308 | msgid "Available version:" 309 | msgstr "גירסה זמינה:" 310 | 311 | #: class-tgm-plugin-activation.php:2626 312 | msgid "No plugins to install, update or activate." 313 | msgstr "אין תוספים להתקנה, עדכון או הפעלה." 314 | 315 | #: class-tgm-plugin-activation.php:2640 316 | msgid "Plugin" 317 | msgstr "תוסף" 318 | 319 | #: class-tgm-plugin-activation.php:2641 320 | msgid "Source" 321 | msgstr "מקור" 322 | 323 | #: class-tgm-plugin-activation.php:2642 324 | msgid "Type" 325 | msgstr "סוג משרה" 326 | 327 | #: class-tgm-plugin-activation.php:2646 328 | msgid "Version" 329 | msgstr "גרסא" 330 | 331 | #: class-tgm-plugin-activation.php:2647 332 | msgid "Status" 333 | msgstr "סטטוס הפוסט" 334 | 335 | #. translators: %2$s: plugin name in screen reader markup 336 | #: class-tgm-plugin-activation.php:2696 337 | #, fuzzy, php-format 338 | msgid "Install %2$s" 339 | msgstr "התקנת %2$s" 340 | 341 | #. translators: %2$s: plugin name in screen reader markup 342 | #: class-tgm-plugin-activation.php:2701 343 | #, fuzzy, php-format 344 | msgid "Update %2$s" 345 | msgstr " עדכון %2$s" 346 | 347 | #. translators: %2$s: plugin name in screen reader markup 348 | #: class-tgm-plugin-activation.php:2707 349 | #, fuzzy, php-format 350 | msgid "Activate %2$s" 351 | msgstr "%2$s מופעל" 352 | 353 | #: class-tgm-plugin-activation.php:2777 354 | msgid "Upgrade message from the plugin author:" 355 | msgstr "הודעת עדכון ממפתח התוסף:" 356 | 357 | #: class-tgm-plugin-activation.php:2810 358 | msgid "Install" 359 | msgstr "התקן" 360 | 361 | #: class-tgm-plugin-activation.php:2816 362 | msgid "Update" 363 | msgstr "עדכון" 364 | 365 | #: class-tgm-plugin-activation.php:2819 366 | msgid "Activate" 367 | msgstr "הפעלה" 368 | 369 | #: class-tgm-plugin-activation.php:2850 370 | msgid "No plugins were selected to be installed. No action taken." 371 | msgstr "לא נבחרו תוספים להתקנה. לא בוצעה שום פעולה." 372 | 373 | #: class-tgm-plugin-activation.php:2852 374 | msgid "No plugins were selected to be updated. No action taken." 375 | msgstr "לא נבחרו תוספים לעדכון. לא בוצעה שום פעולה." 376 | 377 | #: class-tgm-plugin-activation.php:2893 378 | msgid "No plugins are available to be installed at this time." 379 | msgstr "אין תוספים זמינים להתקנה." 380 | 381 | #: class-tgm-plugin-activation.php:2895 382 | msgid "No plugins are available to be updated at this time." 383 | msgstr "אין תוספים זמינים לעדכון." 384 | 385 | #: class-tgm-plugin-activation.php:3001 386 | msgid "No plugins were selected to be activated. No action taken." 387 | msgstr "לא נבחרו תוספים להפעלה. לא בוצעה שום פעולה." 388 | 389 | #: class-tgm-plugin-activation.php:3027 390 | msgid "No plugins are available to be activated at this time." 391 | msgstr "אין תוספים זמינים להפעלה." 392 | 393 | #: class-tgm-plugin-activation.php:3251 394 | msgid "Plugin activation failed." 395 | msgstr "הפעלת התוסף נכשלה." 396 | 397 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 398 | #: class-tgm-plugin-activation.php:3591 399 | #, php-format 400 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 401 | msgstr "שדרוג התוסף %1$s ‏(%2$d/%3$d)" 402 | 403 | #. translators: 1: plugin name, 2: error message. 404 | #: class-tgm-plugin-activation.php:3594 405 | #, php-format 406 | msgid "An error occurred while installing %1$s: %2$s." 407 | msgstr "ארעה שגיאה במהלך התקנת %1$s: %2$s." 408 | 409 | #. translators: 1: plugin name. 410 | #: class-tgm-plugin-activation.php:3596 411 | #, php-format 412 | msgid "The installation of %1$s failed." 413 | msgstr "ההתקנה של %1$s נכשלה." 414 | 415 | #: class-tgm-plugin-activation.php:3600 416 | msgid "" 417 | "The installation and activation process is starting. This process may take a " 418 | "while on some hosts, so please be patient." 419 | msgstr "" 420 | "תהליך ההתקנה וההפעלה מתחיל והוא יכול להמשך זמן מה בשרתים מסוימים. נא התאזרו " 421 | "בסבלנות." 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3602 425 | #, php-format 426 | msgid "%1$s installed and activated successfully." 427 | msgstr "%1$s הותקן והופעל בהצלחה." 428 | 429 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 430 | msgid "Show Details" 431 | msgstr "הראה פרטים" 432 | 433 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 434 | msgid "Hide Details" 435 | msgstr "הסתר מידע נוסף" 436 | 437 | #: class-tgm-plugin-activation.php:3603 438 | msgid "All installations and activations have been completed." 439 | msgstr "כל ההתקנות וההפעלות הושלמו." 440 | 441 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 442 | #: class-tgm-plugin-activation.php:3605 443 | #, php-format 444 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 445 | msgstr "מתקין ומפעיל את התוסף %1$s (%2$d/%3$d)" 446 | 447 | #: class-tgm-plugin-activation.php:3608 448 | msgid "" 449 | "The installation process is starting. This process may take a while on some " 450 | "hosts, so please be patient." 451 | msgstr "" 452 | "תהליך ההתקנה מתחיל. התהליך יכול לקחת זמן מה בשרתים מסוימים אז נא התאזרו " 453 | "בסבלנות." 454 | 455 | #. translators: 1: plugin name. 456 | #: class-tgm-plugin-activation.php:3610 457 | #, php-format 458 | msgid "%1$s installed successfully." 459 | msgstr "%1$s הותקן בהצלחה." 460 | 461 | #: class-tgm-plugin-activation.php:3611 462 | msgid "All installations have been completed." 463 | msgstr "כל ההתקנות הושלמו." 464 | 465 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 466 | #: class-tgm-plugin-activation.php:3613 467 | #, php-format 468 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 469 | msgstr "מתקין תוסף %1$s (%2$d/%3$d)" 470 | -------------------------------------------------------------------------------- /languages/tgmpa-hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-hr_HR.mo -------------------------------------------------------------------------------- /languages/tgmpa-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-it_IT.mo -------------------------------------------------------------------------------- /languages/tgmpa-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-ja.mo -------------------------------------------------------------------------------- /languages/tgmpa-ja.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 4 | "POT-Creation-Date: 2016-05-19 02:57+0200\n" 5 | "PO-Revision-Date: 2017-08-15 10:43+0900\n" 6 | "Last-Translator: Mayo Moriyama \n" 7 | "Language-Team: Mayo Moriyama \n" 8 | "Language: ja\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=1; plural=0;\n" 13 | "X-Generator: Poedit 1.7.5\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" 19 | "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | "X-Poedit-SearchPathExcluded-1: example.php\n" 23 | 24 | #: class-tgm-plugin-activation.php:334 25 | msgid "Install Required Plugins" 26 | msgstr "必須プラグインのインストール" 27 | 28 | #: class-tgm-plugin-activation.php:335 29 | msgid "Install Plugins" 30 | msgstr "プラグインのインストール" 31 | 32 | #. translators: %s: plugin name. 33 | #: class-tgm-plugin-activation.php:337 34 | #, php-format 35 | msgid "Installing Plugin: %s" 36 | msgstr "プラグインのインストール中: %s" 37 | 38 | #. translators: %s: plugin name. 39 | #: class-tgm-plugin-activation.php:339 40 | #, php-format 41 | msgid "Updating Plugin: %s" 42 | msgstr "プラグインを更新中: %s" 43 | 44 | #: class-tgm-plugin-activation.php:340 45 | msgid "Something went wrong with the plugin API." 46 | msgstr "プラグイン API で問題が発生しました。" 47 | 48 | #. translators: 1: plugin name(s). 49 | #: class-tgm-plugin-activation.php:343 50 | #, php-format 51 | msgid "This theme requires the following plugin: %1$s." 52 | msgid_plural "This theme requires the following plugins: %1$s." 53 | msgstr[0] "このテーマは次のプラグインが必要です: %1$s" 54 | 55 | #. translators: 1: plugin name(s). 56 | #: class-tgm-plugin-activation.php:349 57 | #, php-format 58 | msgid "This theme recommends the following plugin: %1$s." 59 | msgid_plural "This theme recommends the following plugins: %1$s." 60 | msgstr[0] "このテーマは次のプラグインを推奨します: %1$s" 61 | 62 | #. translators: 1: plugin name(s). 63 | #: class-tgm-plugin-activation.php:355 64 | #, php-format 65 | msgid "" 66 | "The following plugin needs to be updated to its latest version to ensure " 67 | "maximum compatibility with this theme: %1$s." 68 | msgid_plural "" 69 | "The following plugins need to be updated to their latest version to ensure " 70 | "maximum compatibility with this theme: %1$s." 71 | msgstr[0] "" 72 | "このテーマと最大限互換性を保つには次のプラグインを最新版に更新する必要があり" 73 | "ます: %1$s" 74 | 75 | #. translators: 1: plugin name(s). 76 | #: class-tgm-plugin-activation.php:361 77 | #, php-format 78 | msgid "There is an update available for: %1$s." 79 | msgid_plural "There are updates available for the following plugins: %1$s." 80 | msgstr[0] "次のプラグインには利用可能な更新があります: %1$s" 81 | 82 | #. translators: 1: plugin name(s). 83 | #: class-tgm-plugin-activation.php:367 84 | #, php-format 85 | msgid "The following required plugin is currently inactive: %1$s." 86 | msgid_plural "The following required plugins are currently inactive: %1$s." 87 | msgstr[0] "次の必須プラグインは現在、停止中です: %1$s" 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "次の推奨プラグインは現在、停止中です: %1$s" 95 | 96 | #: class-tgm-plugin-activation.php:378 97 | msgid "Begin installing plugin" 98 | msgid_plural "Begin installing plugins" 99 | msgstr[0] "プラグインのインストールを開始" 100 | 101 | #: class-tgm-plugin-activation.php:383 102 | msgid "Begin updating plugin" 103 | msgid_plural "Begin updating plugins" 104 | msgstr[0] "プラグインの更新を開始" 105 | 106 | #: class-tgm-plugin-activation.php:388 107 | msgid "Begin activating plugin" 108 | msgid_plural "Begin activating plugins" 109 | msgstr[0] "プラグインの有効化を開始" 110 | 111 | #: class-tgm-plugin-activation.php:392 112 | msgid "Return to Required Plugins Installer" 113 | msgstr "必須プラグインのインストール画面に戻る" 114 | 115 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 116 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 117 | msgid "Return to the Dashboard" 118 | msgstr "ダッシュボードに戻る" 119 | 120 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 121 | msgid "Plugin activated successfully." 122 | msgstr "プラグインを有効化しました。" 123 | 124 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 125 | msgid "The following plugin was activated successfully:" 126 | msgid_plural "The following plugins were activated successfully:" 127 | msgstr[0] "次のプラグインを有効化しました:" 128 | 129 | #. translators: 1: plugin name. 130 | #: class-tgm-plugin-activation.php:397 131 | #, php-format 132 | msgid "No action taken. Plugin %1$s was already active." 133 | msgstr "" 134 | "操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。" 135 | 136 | #. translators: 1: plugin name. 137 | #: class-tgm-plugin-activation.php:399 138 | #, php-format 139 | msgid "" 140 | "Plugin not activated. A higher version of %s is needed for this theme. " 141 | "Please update the plugin." 142 | msgstr "" 143 | "プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバー" 144 | "ジョンをサポートしていません。プラグインを更新してください。" 145 | 146 | #. translators: 1: dashboard link. 147 | #: class-tgm-plugin-activation.php:401 148 | #, php-format 149 | msgid "All plugins installed and activated successfully. %1$s" 150 | msgstr "すべてのプラグインを正常にインストールし、有効化しました。 %1$s" 151 | 152 | #: class-tgm-plugin-activation.php:402 153 | msgid "Dismiss this notice" 154 | msgstr "通知を無視" 155 | 156 | #: class-tgm-plugin-activation.php:403 157 | msgid "" 158 | "There are one or more required or recommended plugins to install, update or " 159 | "activate." 160 | msgstr "" 161 | "インストール、更新、有効化可能な必須、または推奨のプラグインがあります。" 162 | 163 | #: class-tgm-plugin-activation.php:404 164 | msgid "Please contact the administrator of this site for help." 165 | msgstr "ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。" 166 | 167 | #: class-tgm-plugin-activation.php:607 168 | msgid "This plugin needs to be updated to be compatible with your theme." 169 | msgstr "" 170 | "使用中のテーマとの互換性を保つため、このプラグインを更新する必要があります。" 171 | 172 | #: class-tgm-plugin-activation.php:608 173 | msgid "Update Required" 174 | msgstr "更新が必要" 175 | 176 | #: class-tgm-plugin-activation.php:725 177 | msgid "Set the parent_slug config variable instead." 178 | msgstr "代替として parent_slug 構成変数を設定してください。" 179 | 180 | #: class-tgm-plugin-activation.php:1027 181 | msgid "" 182 | "The remote plugin package does not contain a folder with the desired slug " 183 | "and renaming did not work." 184 | msgstr "" 185 | "リモートプラグインパッケージには、指定されたスラッグのフォルダーがないため、" 186 | "名前を変更できませんでした。" 187 | 188 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 189 | msgid "" 190 | "Please contact the plugin provider and ask them to package their plugin " 191 | "according to the WordPress guidelines." 192 | msgstr "" 193 | "プラグイン開発者に連絡し、WordPress のガイドラインに沿ったプラグインのパッ" 194 | "ケージ化を依頼してください。" 195 | 196 | #: class-tgm-plugin-activation.php:1030 197 | msgid "" 198 | "The remote plugin package consists of more than one file, but the files are " 199 | "not packaged in a folder." 200 | msgstr "" 201 | "リモートプラグインパッケージは複数のファイルで構成されていますが、ファイルは" 202 | "1つのフォルダ内にパッケージされていません。" 203 | 204 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 205 | msgctxt "plugin A *and* plugin B" 206 | msgid "and" 207 | msgstr "と" 208 | 209 | #. translators: %s: version number 210 | #: class-tgm-plugin-activation.php:2075 211 | #, php-format 212 | msgid "TGMPA v%s" 213 | msgstr "TGMPA v%s" 214 | 215 | #: class-tgm-plugin-activation.php:2366 216 | msgid "Required" 217 | msgstr "必須" 218 | 219 | #: class-tgm-plugin-activation.php:2369 220 | msgid "Recommended" 221 | msgstr "推奨" 222 | 223 | #: class-tgm-plugin-activation.php:2385 224 | msgid "WordPress Repository" 225 | msgstr "WordPress 公式ディレクトリ" 226 | 227 | #: class-tgm-plugin-activation.php:2388 228 | msgid "External Source" 229 | msgstr "外部ソース" 230 | 231 | #: class-tgm-plugin-activation.php:2391 232 | msgid "Pre-Packaged" 233 | msgstr "プリパッケージ" 234 | 235 | #: class-tgm-plugin-activation.php:2408 236 | msgid "Not Installed" 237 | msgstr "未インストール" 238 | 239 | #: class-tgm-plugin-activation.php:2412 240 | msgid "Installed But Not Activated" 241 | msgstr "停止中" 242 | 243 | #: class-tgm-plugin-activation.php:2414 244 | msgid "Active" 245 | msgstr "有効" 246 | 247 | #: class-tgm-plugin-activation.php:2420 248 | msgid "Required Update not Available" 249 | msgstr "必要な更新が利用不可" 250 | 251 | #: class-tgm-plugin-activation.php:2423 252 | msgid "Requires Update" 253 | msgstr "更新が必要" 254 | 255 | #: class-tgm-plugin-activation.php:2426 256 | msgid "Update recommended" 257 | msgstr "更新を推奨" 258 | 259 | #. translators: 1: install status, 2: update status 260 | #: class-tgm-plugin-activation.php:2435 261 | #, php-format 262 | msgctxt "Install/Update Status" 263 | msgid "%1$s, %2$s" 264 | msgstr "%1$s, %2$s" 265 | 266 | #. translators: 1: number of plugins. 267 | #: class-tgm-plugin-activation.php:2481 268 | #, php-format 269 | msgctxt "plugins" 270 | msgid "All (%s)" 271 | msgid_plural "All (%s)" 272 | msgstr[0] "すべて (%s)" 273 | 274 | #. translators: 1: number of plugins. 275 | #: class-tgm-plugin-activation.php:2485 276 | #, php-format 277 | msgid "To Install (%s)" 278 | msgid_plural "To Install (%s)" 279 | msgstr[0] "未インストール (%s)" 280 | 281 | #. translators: 1: number of plugins. 282 | #: class-tgm-plugin-activation.php:2489 283 | #, php-format 284 | msgid "Update Available (%s)" 285 | msgid_plural "Update Available (%s)" 286 | msgstr[0] "更新可能 (%s)" 287 | 288 | #. translators: 1: number of plugins. 289 | #: class-tgm-plugin-activation.php:2493 290 | #, php-format 291 | msgid "To Activate (%s)" 292 | msgid_plural "To Activate (%s)" 293 | msgstr[0] "停止中 (%s)" 294 | 295 | #: class-tgm-plugin-activation.php:2575 296 | msgctxt "as in: \"version nr unknown\"" 297 | msgid "unknown" 298 | msgstr "不明" 299 | 300 | #: class-tgm-plugin-activation.php:2583 301 | msgid "Installed version:" 302 | msgstr "インストール済みバージョン:" 303 | 304 | #: class-tgm-plugin-activation.php:2591 305 | msgid "Minimum required version:" 306 | msgstr "最低要求バージョン: " 307 | 308 | #: class-tgm-plugin-activation.php:2603 309 | msgid "Available version:" 310 | msgstr "利用可能なバージョン:" 311 | 312 | #: class-tgm-plugin-activation.php:2626 313 | msgid "No plugins to install, update or activate." 314 | msgstr "インストール、更新、有効化可能なプラグインがありません。" 315 | 316 | #: class-tgm-plugin-activation.php:2640 317 | msgid "Plugin" 318 | msgstr "プラグイン" 319 | 320 | #: class-tgm-plugin-activation.php:2641 321 | msgid "Source" 322 | msgstr "取得元" 323 | 324 | #: class-tgm-plugin-activation.php:2642 325 | msgid "Type" 326 | msgstr "種類" 327 | 328 | #: class-tgm-plugin-activation.php:2646 329 | msgid "Version" 330 | msgstr "バージョン" 331 | 332 | #: class-tgm-plugin-activation.php:2647 333 | msgid "Status" 334 | msgstr "状態" 335 | 336 | #. translators: %2$s: plugin name in screen reader markup 337 | #: class-tgm-plugin-activation.php:2696 338 | #, php-format 339 | msgid "Install %2$s" 340 | msgstr "%2$s インストール" 341 | 342 | #. translators: %2$s: plugin name in screen reader markup 343 | #: class-tgm-plugin-activation.php:2701 344 | #, php-format 345 | msgid "Update %2$s" 346 | msgstr "%2$s 更新" 347 | 348 | #. translators: %2$s: plugin name in screen reader markup 349 | #: class-tgm-plugin-activation.php:2707 350 | #, php-format 351 | msgid "Activate %2$s" 352 | msgstr "%2$s 有効化" 353 | 354 | #: class-tgm-plugin-activation.php:2777 355 | msgid "Upgrade message from the plugin author:" 356 | msgstr "プラグイン作者からの更新メッセージ:" 357 | 358 | #: class-tgm-plugin-activation.php:2810 359 | msgid "Install" 360 | msgstr "インストール" 361 | 362 | #: class-tgm-plugin-activation.php:2816 363 | msgid "Update" 364 | msgstr "更新" 365 | 366 | #: class-tgm-plugin-activation.php:2819 367 | msgid "Activate" 368 | msgstr "有効化" 369 | 370 | #: class-tgm-plugin-activation.php:2850 371 | msgid "No plugins were selected to be installed. No action taken." 372 | msgstr "インストールするプラグインが選択されていません。処理を中断しました。" 373 | 374 | #: class-tgm-plugin-activation.php:2852 375 | msgid "No plugins were selected to be updated. No action taken." 376 | msgstr "更新するプラグインが選択されていません。処理を中断しました。" 377 | 378 | #: class-tgm-plugin-activation.php:2893 379 | msgid "No plugins are available to be installed at this time." 380 | msgstr "現在インストール可能なプラグインはありません。" 381 | 382 | #: class-tgm-plugin-activation.php:2895 383 | msgid "No plugins are available to be updated at this time." 384 | msgstr "現在更新可能なプラグインはありません。" 385 | 386 | #: class-tgm-plugin-activation.php:3001 387 | msgid "No plugins were selected to be activated. No action taken." 388 | msgstr "有効化するプラグインが選択されていません。処理を中断しました。" 389 | 390 | #: class-tgm-plugin-activation.php:3027 391 | msgid "No plugins are available to be activated at this time." 392 | msgstr "現在有効化可能なプラグインはありません。" 393 | 394 | #: class-tgm-plugin-activation.php:3251 395 | msgid "Plugin activation failed." 396 | msgstr "プラグインの有効化に失敗しました。" 397 | 398 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 399 | #: class-tgm-plugin-activation.php:3591 400 | #, php-format 401 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 402 | msgstr "プラグインを更新中 %1$s (%2$d/%3$d)" 403 | 404 | #. translators: 1: plugin name, 2: error message. 405 | #: class-tgm-plugin-activation.php:3594 406 | #, php-format 407 | msgid "An error occurred while installing %1$s: %2$s." 408 | msgstr "%2$s%1$s のインストール中にエラーが発生しました。" 409 | 410 | #. translators: 1: plugin name. 411 | #: class-tgm-plugin-activation.php:3596 412 | #, php-format 413 | msgid "The installation of %1$s failed." 414 | msgstr "%1$s のインストールに失敗しました。" 415 | 416 | #: class-tgm-plugin-activation.php:3600 417 | msgid "" 418 | "The installation and activation process is starting. This process may take " 419 | "a while on some hosts, so please be patient." 420 | msgstr "" 421 | "インストールと有効化を開始しました。環境によっては時間がかかる場合がありま" 422 | "す。しばらくお待ちください。" 423 | 424 | #. translators: 1: plugin name. 425 | #: class-tgm-plugin-activation.php:3602 426 | #, php-format 427 | msgid "%1$s installed and activated successfully." 428 | msgstr "%1$s を正常にインストールし、有効化しました。" 429 | 430 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 431 | msgid "Show Details" 432 | msgstr "詳細を表示" 433 | 434 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 435 | msgid "Hide Details" 436 | msgstr "詳細を非表示" 437 | 438 | #: class-tgm-plugin-activation.php:3603 439 | msgid "All installations and activations have been completed." 440 | msgstr "すべてのインストールと有効化が完了しました。" 441 | 442 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 443 | #: class-tgm-plugin-activation.php:3605 444 | #, php-format 445 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 446 | msgstr "プラグインをインストール、有効化中 %1$s (%2$d/%3$d)" 447 | 448 | #: class-tgm-plugin-activation.php:3608 449 | msgid "" 450 | "The installation process is starting. This process may take a while on some " 451 | "hosts, so please be patient." 452 | msgstr "" 453 | "更新プロセスを開始しました。環境によっては時間がかかる場合があります。しばら" 454 | "くお待ちください。" 455 | 456 | #. translators: 1: plugin name. 457 | #: class-tgm-plugin-activation.php:3610 458 | #, php-format 459 | msgid "%1$s installed successfully." 460 | msgstr "%1$s を正常にインストールしました。" 461 | 462 | #: class-tgm-plugin-activation.php:3611 463 | msgid "All installations have been completed." 464 | msgstr "すべてのインストールが完了しました。" 465 | 466 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 467 | #: class-tgm-plugin-activation.php:3613 468 | #, php-format 469 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 470 | msgstr "プラグインをインストール中 %1$s (%2$d/%3$d)" 471 | -------------------------------------------------------------------------------- /languages/tgmpa-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-nl_NL.mo -------------------------------------------------------------------------------- /languages/tgmpa-nl_NL.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Dutch (The Netherlands) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:03+0200\n" 7 | "PO-Revision-Date: 2016-05-19 03:03+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: nl_NL\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Generator: Poedit 1.8.7\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Installeer benodigde plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installeer plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installeren van plugin: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "Updaten van plugin: %s" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Er ging iets mis met de API van de plugin." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Dit thema heeft de volgende plugin nodig: %1$s." 47 | msgstr[1] "Dit thema heeft de volgende plugins nodig: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Dit theme beveelt de volgende plugin aan: %1$s." 55 | msgstr[1] "Dit theme beveelt de volgende plugins aan: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "De plugin %1$s moet geüpdatet worden naar de meest recente versie om " 68 | "maximale compatibiliteit met dit thema te kunnen garanderen." 69 | msgstr[1] "" 70 | "De plugins %1$s moet geüpdatet worden naar de meest recente versie om " 71 | "maximale compatibiliteit met dit thema te kunnen garanderen." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Er is een update beschikbaar voor: %1$s." 79 | msgstr[1] "Er zijn updates beschikbaar voor: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "De volgende plugin is momenteel inactief: %1$s." 87 | msgstr[1] "De volgende plugins zijn momenteel inactief: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "De volgende aanbevolen plugin is momenteel inactief: %1$s." 95 | msgstr[1] "De volgende aanbevolen plugins zijn momenteel inactief: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Begin met installeren van plugin" 101 | msgstr[1] "Begin met installeren van plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Begin met updaten van plugin" 107 | msgstr[1] "Begin met updaten van plugins" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Begin met activeren van plugin" 113 | msgstr[1] "Begin met activeren van plugins" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Terug naar de benodigde plugins installer" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Terug naar dashboard" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin succesvol geactiveerd." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "De volgende plugin is succesvol gedeactiveerd:" 132 | msgstr[1] "De volgende plugins zijn succesvol gedeactiveerd:" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Geen actie ondernomen. De plugin %1$s was reeds actief." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Plugin niet geactiveerd. Een recentere versie van %s is nodig voor dit " 148 | "thema. Update de plugin s.v.p." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Alle plugins geïnstalleerd en geactiveerd. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Negeer deze melding" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | "Er zijn een of meer vereiste of aanbevolen plugins te installeren, bijwerken " 166 | "of activeren." 167 | 168 | #: class-tgm-plugin-activation.php:404 169 | msgid "Please contact the administrator of this site for help." 170 | msgstr "Neem contact op met de beheerder van deze website voor hulp." 171 | 172 | #: class-tgm-plugin-activation.php:607 173 | msgid "This plugin needs to be updated to be compatible with your theme." 174 | msgstr "" 175 | "Deze plugin moet geüpdatet worden om maximale compatibiliteit met dit thema " 176 | "te kunnen garanderen." 177 | 178 | #: class-tgm-plugin-activation.php:608 179 | msgid "Update Required" 180 | msgstr "Update nodig" 181 | 182 | #: class-tgm-plugin-activation.php:725 183 | msgid "Set the parent_slug config variable instead." 184 | msgstr "Zet in plaats daarvan de parent_slug variabele configuratie." 185 | 186 | #: class-tgm-plugin-activation.php:1027 187 | msgid "" 188 | "The remote plugin package does not contain a folder with the desired slug " 189 | "and renaming did not work." 190 | msgstr "" 191 | "Het externe plugin pakket bevat geen map met de gewenste slug en het " 192 | "hernoemen van de map heeft gefaald." 193 | 194 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 195 | msgid "" 196 | "Please contact the plugin provider and ask them to package their plugin " 197 | "according to the WordPress guidelines." 198 | msgstr "" 199 | "Neem contact op met de plugin auteur en vraag hem om deze opnieuw samen te " 200 | "stellen conform de WordPress richtlijnen." 201 | 202 | #: class-tgm-plugin-activation.php:1030 203 | msgid "" 204 | "The remote plugin package consists of more than one file, but the files are " 205 | "not packaged in a folder." 206 | msgstr "" 207 | "Het externe plugin pakket bestaat uit meer dan één bestand maar deze zijn " 208 | "niet geplaatst in een map." 209 | 210 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 211 | msgctxt "plugin A *and* plugin B" 212 | msgid "and" 213 | msgstr "en" 214 | 215 | #. translators: %s: version number 216 | #: class-tgm-plugin-activation.php:2075 217 | #, php-format 218 | msgid "TGMPA v%s" 219 | msgstr "TGMPA v%s" 220 | 221 | #: class-tgm-plugin-activation.php:2366 222 | msgid "Required" 223 | msgstr "Benodigd" 224 | 225 | #: class-tgm-plugin-activation.php:2369 226 | msgid "Recommended" 227 | msgstr "Aanbevolen" 228 | 229 | #: class-tgm-plugin-activation.php:2385 230 | msgid "WordPress Repository" 231 | msgstr "WordPress Repository" 232 | 233 | #: class-tgm-plugin-activation.php:2388 234 | msgid "External Source" 235 | msgstr "Externe bron" 236 | 237 | #: class-tgm-plugin-activation.php:2391 238 | msgid "Pre-Packaged" 239 | msgstr "Voorverpakt" 240 | 241 | #: class-tgm-plugin-activation.php:2408 242 | msgid "Not Installed" 243 | msgstr "Niet geïnstalleerd" 244 | 245 | #: class-tgm-plugin-activation.php:2412 246 | msgid "Installed But Not Activated" 247 | msgstr "Geïnstalleerd maar niet geactiveerd" 248 | 249 | #: class-tgm-plugin-activation.php:2414 250 | msgid "Active" 251 | msgstr "Actief" 252 | 253 | #: class-tgm-plugin-activation.php:2420 254 | msgid "Required Update not Available" 255 | msgstr "Benodigde update niet beschikbaar" 256 | 257 | #: class-tgm-plugin-activation.php:2423 258 | msgid "Requires Update" 259 | msgstr "Heeft update nodig" 260 | 261 | #: class-tgm-plugin-activation.php:2426 262 | msgid "Update recommended" 263 | msgstr "Aangeraden update" 264 | 265 | #. translators: 1: install status, 2: update status 266 | #: class-tgm-plugin-activation.php:2435 267 | #, php-format 268 | msgctxt "Install/Update Status" 269 | msgid "%1$s, %2$s" 270 | msgstr "%1$s, %2$s" 271 | 272 | #. translators: 1: number of plugins. 273 | #: class-tgm-plugin-activation.php:2481 274 | #, php-format 275 | msgctxt "plugins" 276 | msgid "All (%s)" 277 | msgid_plural "All (%s)" 278 | msgstr[0] "Alle (%s)" 279 | msgstr[1] "Alle (%s)" 280 | 281 | #. translators: 1: number of plugins. 282 | #: class-tgm-plugin-activation.php:2485 283 | #, php-format 284 | msgid "To Install (%s)" 285 | msgid_plural "To Install (%s)" 286 | msgstr[0] "Te installeren (%s)" 287 | msgstr[1] "Te installeren (%s)" 288 | 289 | #. translators: 1: number of plugins. 290 | #: class-tgm-plugin-activation.php:2489 291 | #, php-format 292 | msgid "Update Available (%s)" 293 | msgid_plural "Update Available (%s)" 294 | msgstr[0] "Update beschikbaar (%s)" 295 | msgstr[1] "Update beschikbaar (%s)" 296 | 297 | #. translators: 1: number of plugins. 298 | #: class-tgm-plugin-activation.php:2493 299 | #, php-format 300 | msgid "To Activate (%s)" 301 | msgid_plural "To Activate (%s)" 302 | msgstr[0] "Te activeren (%s)" 303 | msgstr[1] "Te activeren (%s)" 304 | 305 | #: class-tgm-plugin-activation.php:2575 306 | msgctxt "as in: \"version nr unknown\"" 307 | msgid "unknown" 308 | msgstr "onbekend" 309 | 310 | #: class-tgm-plugin-activation.php:2583 311 | msgid "Installed version:" 312 | msgstr "Geïnstalleerde versie:" 313 | 314 | #: class-tgm-plugin-activation.php:2591 315 | msgid "Minimum required version:" 316 | msgstr "Minimaal vereiste versie:" 317 | 318 | #: class-tgm-plugin-activation.php:2603 319 | msgid "Available version:" 320 | msgstr "Beschikbare versie:" 321 | 322 | #: class-tgm-plugin-activation.php:2626 323 | msgid "No plugins to install, update or activate." 324 | msgstr "Geen plugins om te installeren, updaten of activeren." 325 | 326 | #: class-tgm-plugin-activation.php:2640 327 | msgid "Plugin" 328 | msgstr "Plugin" 329 | 330 | #: class-tgm-plugin-activation.php:2641 331 | msgid "Source" 332 | msgstr "Bron" 333 | 334 | #: class-tgm-plugin-activation.php:2642 335 | msgid "Type" 336 | msgstr "Type" 337 | 338 | #: class-tgm-plugin-activation.php:2646 339 | msgid "Version" 340 | msgstr "Versie" 341 | 342 | #: class-tgm-plugin-activation.php:2647 343 | msgid "Status" 344 | msgstr "Status" 345 | 346 | #. translators: %2$s: plugin name in screen reader markup 347 | #: class-tgm-plugin-activation.php:2696 348 | #, php-format 349 | msgid "Install %2$s" 350 | msgstr "Installeer %2$s" 351 | 352 | #. translators: %2$s: plugin name in screen reader markup 353 | #: class-tgm-plugin-activation.php:2701 354 | #, php-format 355 | msgid "Update %2$s" 356 | msgstr "Update %2$s" 357 | 358 | #. translators: %2$s: plugin name in screen reader markup 359 | #: class-tgm-plugin-activation.php:2707 360 | #, php-format 361 | msgid "Activate %2$s" 362 | msgstr "Activeer %2$s" 363 | 364 | #: class-tgm-plugin-activation.php:2777 365 | msgid "Upgrade message from the plugin author:" 366 | msgstr "Upgrade melding van de plugin autheur:" 367 | 368 | #: class-tgm-plugin-activation.php:2810 369 | msgid "Install" 370 | msgstr "Installeer" 371 | 372 | #: class-tgm-plugin-activation.php:2816 373 | msgid "Update" 374 | msgstr "Update" 375 | 376 | #: class-tgm-plugin-activation.php:2819 377 | msgid "Activate" 378 | msgstr "Activeer" 379 | 380 | #: class-tgm-plugin-activation.php:2850 381 | msgid "No plugins were selected to be installed. No action taken." 382 | msgstr "" 383 | "Geen plugins waren geselecteerd om te installeren. Geen actie ondernomen." 384 | 385 | #: class-tgm-plugin-activation.php:2852 386 | msgid "No plugins were selected to be updated. No action taken." 387 | msgstr "Geen plugins waren geselecteerd om te updaten. Geen actie ondernomen." 388 | 389 | #: class-tgm-plugin-activation.php:2893 390 | msgid "No plugins are available to be installed at this time." 391 | msgstr "Op dit moment zijn er geen plugins beschikbaar om te installeren." 392 | 393 | #: class-tgm-plugin-activation.php:2895 394 | msgid "No plugins are available to be updated at this time." 395 | msgstr "Op dit moment zijn er geen plugins beschikbaar om te updaten." 396 | 397 | #: class-tgm-plugin-activation.php:3001 398 | msgid "No plugins were selected to be activated. No action taken." 399 | msgstr "Op dit moment zijn er geen plugins beschikbaar om te installeren." 400 | 401 | #: class-tgm-plugin-activation.php:3027 402 | msgid "No plugins are available to be activated at this time." 403 | msgstr "Op dit moment zijn er geen plugins beschikbaar om te activeren." 404 | 405 | #: class-tgm-plugin-activation.php:3251 406 | msgid "Plugin activation failed." 407 | msgstr "Plugin activatie niet geslaagd." 408 | 409 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 410 | #: class-tgm-plugin-activation.php:3591 411 | #, php-format 412 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 413 | msgstr "Updaten van plugin %1$s (%2$d/%3$d)" 414 | 415 | #. translators: 1: plugin name, 2: error message. 416 | #: class-tgm-plugin-activation.php:3594 417 | #, php-format 418 | msgid "An error occurred while installing %1$s: %2$s." 419 | msgstr "" 420 | "Er is een fout opgetreden tijdens het installeren van %1$s: %2$s" 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3596 425 | #, php-format 426 | msgid "The installation of %1$s failed." 427 | msgstr "De installatie van %1$s is niet geslaagd." 428 | 429 | #: class-tgm-plugin-activation.php:3600 430 | msgid "" 431 | "The installation and activation process is starting. This process may take a " 432 | "while on some hosts, so please be patient." 433 | msgstr "" 434 | "Het installatie- en activatieproces is gestart. Dit proces kan even duren " 435 | "en verschilt per hoster dus heb een moment geduld s.v.p." 436 | 437 | #. translators: 1: plugin name. 438 | #: class-tgm-plugin-activation.php:3602 439 | #, php-format 440 | msgid "%1$s installed and activated successfully." 441 | msgstr "%1$s succesvol geïnstalleerd en geactiveerd." 442 | 443 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 444 | msgid "Show Details" 445 | msgstr "Toon details" 446 | 447 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 448 | msgid "Hide Details" 449 | msgstr "Verberg details" 450 | 451 | #: class-tgm-plugin-activation.php:3603 452 | msgid "All installations and activations have been completed." 453 | msgstr "Alle installaties en activeringen zijn voltooid." 454 | 455 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 456 | #: class-tgm-plugin-activation.php:3605 457 | #, php-format 458 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 459 | msgstr "Installeren en activeren van plugin %1$s (%2$d/%3$d)" 460 | 461 | #: class-tgm-plugin-activation.php:3608 462 | msgid "" 463 | "The installation process is starting. This process may take a while on some " 464 | "hosts, so please be patient." 465 | msgstr "" 466 | "Het installatieproces begint. Dit proces kan even duren en verschilt per " 467 | "hoster dus heb een moment geduld s.v.p." 468 | 469 | #. translators: 1: plugin name. 470 | #: class-tgm-plugin-activation.php:3610 471 | #, php-format 472 | msgid "%1$s installed successfully." 473 | msgstr "%1$s succesvol geïnstalleerd." 474 | 475 | #: class-tgm-plugin-activation.php:3611 476 | msgid "All installations have been completed." 477 | msgstr "Alle installaties zijn voltooid." 478 | 479 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 480 | #: class-tgm-plugin-activation.php:3613 481 | #, php-format 482 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 483 | msgstr "Installeren van plugin %1$s (%2$d/%3$d)" 484 | -------------------------------------------------------------------------------- /languages/tgmpa-pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-pl_PL.mo -------------------------------------------------------------------------------- /languages/tgmpa-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-pt_BR.mo -------------------------------------------------------------------------------- /languages/tgmpa-pt_PT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-pt_PT.mo -------------------------------------------------------------------------------- /languages/tgmpa-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-ro_RO.mo -------------------------------------------------------------------------------- /languages/tgmpa-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-ru_RU.mo -------------------------------------------------------------------------------- /languages/tgmpa-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-sr_RS.mo -------------------------------------------------------------------------------- /languages/tgmpa-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-sv_SE.mo -------------------------------------------------------------------------------- /languages/tgmpa-sv_SE.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Swedish (Sweden) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 6 | "POT-Creation-Date: 2016-05-19 03:05+0200\n" 7 | "PO-Revision-Date: 2016-07-21 08:18+0200\n" 8 | "Last-Translator: George Bredberg \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: sv_SE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Generator: Poedit 1.8.8\n" 16 | 17 | #: class-tgm-plugin-activation.php:334 18 | msgid "Install Required Plugins" 19 | msgstr "Installera obligatoriska tillägg" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installera tillägg" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installerar tillägg: %s" 30 | 31 | #. translators: %s: plugin name. 32 | #: class-tgm-plugin-activation.php:339 33 | #, php-format 34 | msgid "Updating Plugin: %s" 35 | msgstr "" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Något gick fel med tilläggets API." 40 | 41 | #. translators: 1: plugin name(s). 42 | #: class-tgm-plugin-activation.php:343 43 | #, php-format 44 | msgid "This theme requires the following plugin: %1$s." 45 | msgid_plural "This theme requires the following plugins: %1$s." 46 | msgstr[0] "Detta tema kräver följande tillägg: %1$s." 47 | msgstr[1] "Detta tema kräver följande tillägg: %1$s." 48 | 49 | #. translators: 1: plugin name(s). 50 | #: class-tgm-plugin-activation.php:349 51 | #, php-format 52 | msgid "This theme recommends the following plugin: %1$s." 53 | msgid_plural "This theme recommends the following plugins: %1$s." 54 | msgstr[0] "Detta tema rekommenderar följande tillägg: %1$s." 55 | msgstr[1] "Detta tema rekommenderar följande tillägg: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:355 59 | #, php-format 60 | msgid "" 61 | "The following plugin needs to be updated to its latest version to ensure " 62 | "maximum compatibility with this theme: %1$s." 63 | msgid_plural "" 64 | "The following plugins need to be updated to their latest version to ensure " 65 | "maximum compatibility with this theme: %1$s." 66 | msgstr[0] "" 67 | "Följande tillägg behöver uppdateras till den senaste versionen för att " 68 | "säkerställa maximal kompatibilitet med detta tema: %1$s." 69 | msgstr[1] "" 70 | "Följande tillägget behöver uppdateras till den senaste versionen för att " 71 | "säkerställa maximal kompatibilitet med detta tema: %1$s." 72 | 73 | #. translators: 1: plugin name(s). 74 | #: class-tgm-plugin-activation.php:361 75 | #, php-format 76 | msgid "There is an update available for: %1$s." 77 | msgid_plural "There are updates available for the following plugins: %1$s." 78 | msgstr[0] "Det finns en uppdatering tillgänglig för: %1$s." 79 | msgstr[1] "Det finns uppdateringar tillgängliga för de följande tillägg: %1$s." 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "Följande obligatoriska tillägg är för närvarande inaktivt: %1$s." 87 | msgstr[1] "Följande obligatoriska tillägg är för närvarande inaktiva: %1$s." 88 | 89 | #. translators: 1: plugin name(s). 90 | #: class-tgm-plugin-activation.php:373 91 | #, php-format 92 | msgid "The following recommended plugin is currently inactive: %1$s." 93 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 94 | msgstr[0] "Följande rekommenderade tillägg är för närvarande inaktivt: %1$s." 95 | msgstr[1] "Följande rekommenderade tillägg är för närvarande inaktiva: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Installera tillägg" 101 | msgstr[1] "Installera tillägg" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Uppdatera tillägg" 107 | msgstr[1] "Uppdatera tillägg" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Aktivera tillägg" 113 | msgstr[1] "Aktivera tillägg" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Tillbaka" 118 | 119 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 120 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 121 | msgid "Return to the Dashboard" 122 | msgstr "Tillbaka till panelen" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Tillägget har aktiverats utan fel." 127 | 128 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 129 | msgid "The following plugin was activated successfully:" 130 | msgid_plural "The following plugins were activated successfully:" 131 | msgstr[0] "Följande tillägg har aktiverats utan fel: " 132 | msgstr[1] "Följande tillägg har aktiverats utan fel: " 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:397 136 | #, php-format 137 | msgid "No action taken. Plugin %1$s was already active." 138 | msgstr "Ingen åtgärd utfördes. Tillägg %1$s är redan aktivt." 139 | 140 | #. translators: 1: plugin name. 141 | #: class-tgm-plugin-activation.php:399 142 | #, php-format 143 | msgid "" 144 | "Plugin not activated. A higher version of %s is needed for this theme. " 145 | "Please update the plugin." 146 | msgstr "" 147 | "Tillägget aktiverades inte. En nyare version av %s behövs för temat. Var god " 148 | "uppdatera tillägget." 149 | 150 | #. translators: 1: dashboard link. 151 | #: class-tgm-plugin-activation.php:401 152 | #, php-format 153 | msgid "All plugins installed and activated successfully. %1$s" 154 | msgstr "Alla tillägg installerades och aktiverades utan fel. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Avfärda" 159 | 160 | #: class-tgm-plugin-activation.php:403 161 | msgid "" 162 | "There are one or more required or recommended plugins to install, update or " 163 | "activate." 164 | msgstr "" 165 | "Det finns ett eller flera obligatoriska eller rekommenderade tillägg att " 166 | "installera, uppdatera eller aktivera." 167 | 168 | #: class-tgm-plugin-activation.php:404 169 | msgid "Please contact the administrator of this site for help." 170 | msgstr "Var god kontakta hemsidans administratör för att få hjälp." 171 | 172 | #: class-tgm-plugin-activation.php:607 173 | msgid "This plugin needs to be updated to be compatible with your theme." 174 | msgstr "" 175 | "Detta tillägg behöver uppdateras för att vara kompatibelt med ditt tema." 176 | 177 | #: class-tgm-plugin-activation.php:608 178 | msgid "Update Required" 179 | msgstr "Uppdatering krävs" 180 | 181 | #: class-tgm-plugin-activation.php:725 182 | msgid "Set the parent_slug config variable instead." 183 | msgstr "Använd parent_slug konfigurationsvariabeln istället." 184 | 185 | #: class-tgm-plugin-activation.php:1027 186 | msgid "" 187 | "The remote plugin package does not contain a folder with the desired slug " 188 | "and renaming did not work." 189 | msgstr "" 190 | "Tilläggspaketet på servern innehåller ej en mapp som har önskad slug och det " 191 | "gick inte att byta namnet." 192 | 193 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 194 | msgid "" 195 | "Please contact the plugin provider and ask them to package their plugin " 196 | "according to the WordPress guidelines." 197 | msgstr "" 198 | "Var god kontakta tilläggsleverantören och begär att de ska distribuera deras " 199 | "tillägg enligt WordPress riktlinjer." 200 | 201 | #: class-tgm-plugin-activation.php:1030 202 | msgid "" 203 | "The remote plugin package consists of more than one file, but the files are " 204 | "not packaged in a folder." 205 | msgstr "" 206 | "Tilläggspaketet på servern består av mer än en fil, men filerna har inte " 207 | "förpackats i en mapp." 208 | 209 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 210 | msgctxt "plugin A *and* plugin B" 211 | msgid "and" 212 | msgstr "och" 213 | 214 | #. translators: %s: version number 215 | #: class-tgm-plugin-activation.php:2075 216 | #, php-format 217 | msgid "TGMPA v%s" 218 | msgstr "TGMPA v%s" 219 | 220 | #: class-tgm-plugin-activation.php:2366 221 | msgid "Required" 222 | msgstr "Krävs" 223 | 224 | #: class-tgm-plugin-activation.php:2369 225 | msgid "Recommended" 226 | msgstr "Rekommenderad" 227 | 228 | #: class-tgm-plugin-activation.php:2385 229 | msgid "WordPress Repository" 230 | msgstr "WordPress Repositorium" 231 | 232 | #: class-tgm-plugin-activation.php:2388 233 | msgid "External Source" 234 | msgstr "Extern källa" 235 | 236 | #: class-tgm-plugin-activation.php:2391 237 | msgid "Pre-Packaged" 238 | msgstr "Förpackad" 239 | 240 | #: class-tgm-plugin-activation.php:2408 241 | msgid "Not Installed" 242 | msgstr "Ej installerad" 243 | 244 | #: class-tgm-plugin-activation.php:2412 245 | msgid "Installed But Not Activated" 246 | msgstr "Installerad men inte aktiverad" 247 | 248 | #: class-tgm-plugin-activation.php:2414 249 | msgid "Active" 250 | msgstr "Aktiv" 251 | 252 | #: class-tgm-plugin-activation.php:2420 253 | msgid "Required Update not Available" 254 | msgstr "Obligatorisk uppdatering saknas" 255 | 256 | #: class-tgm-plugin-activation.php:2423 257 | msgid "Requires Update" 258 | msgstr "Uppdatering krävs" 259 | 260 | #: class-tgm-plugin-activation.php:2426 261 | msgid "Update recommended" 262 | msgstr "Uppdatering rekommenderas" 263 | 264 | #. translators: 1: install status, 2: update status 265 | #: class-tgm-plugin-activation.php:2435 266 | #, php-format 267 | msgctxt "Install/Update Status" 268 | msgid "%1$s, %2$s" 269 | msgstr "%1$s, %2$s" 270 | 271 | #. translators: 1: number of plugins. 272 | #: class-tgm-plugin-activation.php:2481 273 | #, php-format 274 | msgctxt "plugins" 275 | msgid "All (%s)" 276 | msgid_plural "All (%s)" 277 | msgstr[0] "Alla (%s)" 278 | msgstr[1] "Alla (%s)" 279 | 280 | #. translators: 1: number of plugins. 281 | #: class-tgm-plugin-activation.php:2485 282 | #, php-format 283 | msgid "To Install (%s)" 284 | msgid_plural "To Install (%s)" 285 | msgstr[0] "För att installera (%s)" 286 | msgstr[1] "För att installera (%s)" 287 | 288 | #. translators: 1: number of plugins. 289 | #: class-tgm-plugin-activation.php:2489 290 | #, php-format 291 | msgid "Update Available (%s)" 292 | msgid_plural "Update Available (%s)" 293 | msgstr[0] "Uppdatering tillgänglig (%s)" 294 | msgstr[1] "Uppdateringar tillgängliga (%s)" 295 | 296 | #. translators: 1: number of plugins. 297 | #: class-tgm-plugin-activation.php:2493 298 | #, php-format 299 | msgid "To Activate (%s)" 300 | msgid_plural "To Activate (%s)" 301 | msgstr[0] "För att aktivera (%s)" 302 | msgstr[1] "För att aktivera (%s)" 303 | 304 | #: class-tgm-plugin-activation.php:2575 305 | msgctxt "as in: \"version nr unknown\"" 306 | msgid "unknown" 307 | msgstr "okänt" 308 | 309 | #: class-tgm-plugin-activation.php:2583 310 | msgid "Installed version:" 311 | msgstr "Installerad version:" 312 | 313 | #: class-tgm-plugin-activation.php:2591 314 | msgid "Minimum required version:" 315 | msgstr "Lägsta version som stöds:" 316 | 317 | #: class-tgm-plugin-activation.php:2603 318 | msgid "Available version:" 319 | msgstr "Tillgänglig version:" 320 | 321 | #: class-tgm-plugin-activation.php:2626 322 | msgid "No plugins to install, update or activate." 323 | msgstr "Inga tillägg att installera, uppdatera eller aktivera." 324 | 325 | #: class-tgm-plugin-activation.php:2640 326 | msgid "Plugin" 327 | msgstr "Tillägg" 328 | 329 | #: class-tgm-plugin-activation.php:2641 330 | msgid "Source" 331 | msgstr "Källa" 332 | 333 | #: class-tgm-plugin-activation.php:2642 334 | msgid "Type" 335 | msgstr "Typ" 336 | 337 | #: class-tgm-plugin-activation.php:2646 338 | msgid "Version" 339 | msgstr "Version" 340 | 341 | #: class-tgm-plugin-activation.php:2647 342 | msgid "Status" 343 | msgstr "Status" 344 | 345 | #. translators: %2$s: plugin name in screen reader markup 346 | #: class-tgm-plugin-activation.php:2696 347 | #, php-format 348 | msgid "Install %2$s" 349 | msgstr "Installera %2$s" 350 | 351 | #. translators: %2$s: plugin name in screen reader markup 352 | #: class-tgm-plugin-activation.php:2701 353 | #, php-format 354 | msgid "Update %2$s" 355 | msgstr "Uppdatera %2$s" 356 | 357 | #. translators: %2$s: plugin name in screen reader markup 358 | #: class-tgm-plugin-activation.php:2707 359 | #, php-format 360 | msgid "Activate %2$s" 361 | msgstr "Aktivera %2$s" 362 | 363 | #: class-tgm-plugin-activation.php:2777 364 | msgid "Upgrade message from the plugin author:" 365 | msgstr "Uppgraderingsmeddelande från tilläggets utvecklare:" 366 | 367 | #: class-tgm-plugin-activation.php:2810 368 | msgid "Install" 369 | msgstr "Installera" 370 | 371 | #: class-tgm-plugin-activation.php:2816 372 | msgid "Update" 373 | msgstr "Uppdatera" 374 | 375 | #: class-tgm-plugin-activation.php:2819 376 | msgid "Activate" 377 | msgstr "Aktivera" 378 | 379 | #: class-tgm-plugin-activation.php:2850 380 | msgid "No plugins were selected to be installed. No action taken." 381 | msgstr "Inga tillägg valdes för att installeras. Ingen åtgärd utfördes." 382 | 383 | #: class-tgm-plugin-activation.php:2852 384 | msgid "No plugins were selected to be updated. No action taken." 385 | msgstr "Inga tillägg valdes för att uppdateras. Ingen åtgärd utfördes." 386 | 387 | #: class-tgm-plugin-activation.php:2893 388 | msgid "No plugins are available to be installed at this time." 389 | msgstr "Inga tillägg är tillgängliga för att installeras vid denna tidpunkt." 390 | 391 | #: class-tgm-plugin-activation.php:2895 392 | msgid "No plugins are available to be updated at this time." 393 | msgstr "Inga tillägg är tillgängliga för att uppdateras vid denna tidpunkt." 394 | 395 | #: class-tgm-plugin-activation.php:3001 396 | msgid "No plugins were selected to be activated. No action taken." 397 | msgstr "Inga tillägg valdes för att aktiveras. Ingen åtgärd utfördes." 398 | 399 | #: class-tgm-plugin-activation.php:3027 400 | msgid "No plugins are available to be activated at this time." 401 | msgstr "Inga tillägg är tillgängliga för att aktiveras vid denna tidpunkt." 402 | 403 | #: class-tgm-plugin-activation.php:3251 404 | msgid "Plugin activation failed." 405 | msgstr "Aktivering av tillägg misslyckades." 406 | 407 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 408 | #: class-tgm-plugin-activation.php:3591 409 | #, php-format 410 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 411 | msgstr "Uppdaterar tillägg %1$s (%2$d/%3$d)" 412 | 413 | #. translators: 1: plugin name, 2: error message. 414 | #: class-tgm-plugin-activation.php:3594 415 | #, php-format 416 | msgid "An error occurred while installing %1$s: %2$s." 417 | msgstr "Ett fel uppstod under installation av %1$s: %2$s." 418 | 419 | #. translators: 1: plugin name. 420 | #: class-tgm-plugin-activation.php:3596 421 | #, php-format 422 | msgid "The installation of %1$s failed." 423 | msgstr "Installationen av %1$s misslyckades." 424 | 425 | #: class-tgm-plugin-activation.php:3600 426 | msgid "" 427 | "The installation and activation process is starting. This process may take a " 428 | "while on some hosts, so please be patient." 429 | msgstr "" 430 | "Installations- och aktiveringsprocessen påbörjas. Denna process kan ta lite " 431 | "tid på vissa värdar - var god vänta." 432 | 433 | #. translators: 1: plugin name. 434 | #: class-tgm-plugin-activation.php:3602 435 | #, php-format 436 | msgid "%1$s installed and activated successfully." 437 | msgstr "%1$s installerades och aktiverades utan fel." 438 | 439 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 440 | msgid "Show Details" 441 | msgstr "Visa detaljer" 442 | 443 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 444 | msgid "Hide Details" 445 | msgstr "Dölj detaljer" 446 | 447 | #: class-tgm-plugin-activation.php:3603 448 | msgid "All installations and activations have been completed." 449 | msgstr "Alla installationer och aktiveringar har utförts." 450 | 451 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 452 | #: class-tgm-plugin-activation.php:3605 453 | #, php-format 454 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 455 | msgstr "Installerar och aktiverar tillägg %1$s (%2$d/%3$d)" 456 | 457 | #: class-tgm-plugin-activation.php:3608 458 | msgid "" 459 | "The installation process is starting. This process may take a while on some " 460 | "hosts, so please be patient." 461 | msgstr "" 462 | "Installationsprocessen påbörjas. Denna process kan ta lite tid på vissa " 463 | "värdar - var god vänta." 464 | 465 | #. translators: 1: plugin name. 466 | #: class-tgm-plugin-activation.php:3610 467 | #, php-format 468 | msgid "%1$s installed successfully." 469 | msgstr "%1$s installerades utan fel." 470 | 471 | #: class-tgm-plugin-activation.php:3611 472 | msgid "All installations have been completed." 473 | msgstr "Alla installationer har utförts." 474 | 475 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 476 | #: class-tgm-plugin-activation.php:3613 477 | #, php-format 478 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 479 | msgstr "Installerar tillägg %1$s (%2$d/%3$d)" 480 | -------------------------------------------------------------------------------- /languages/tgmpa-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-tr_TR.mo -------------------------------------------------------------------------------- /languages/tgmpa-tr_TR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 4 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 5 | "POT-Creation-Date: 2017-07-29 05:19+0300\n" 6 | "PO-Revision-Date: 2017-07-29 10:11+0300\n" 7 | "Language-Team: Ada Digital Agency\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 2.0.1\n" 12 | "X-Poedit-Basepath: ..\n" 13 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 14 | "X-Poedit-SourceCharset: UTF-8\n" 15 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 16 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 17 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 18 | "Last-Translator: Emre Erkan \n" 19 | "Language: tr\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | "X-Poedit-SearchPathExcluded-1: example.php\n" 23 | 24 | #: class-tgm-plugin-activation.php:334 25 | msgid "Install Required Plugins" 26 | msgstr "Gerekli eklentileri kur" 27 | 28 | #: class-tgm-plugin-activation.php:335 29 | msgid "Install Plugins" 30 | msgstr "Eklenti kur" 31 | 32 | #. translators: %s: plugin name. 33 | #: class-tgm-plugin-activation.php:337 34 | #, php-format 35 | msgid "Installing Plugin: %s" 36 | msgstr "Eklenti kuruluyor: %s" 37 | 38 | #. translators: %s: plugin name. 39 | #: class-tgm-plugin-activation.php:339 40 | #, php-format 41 | msgid "Updating Plugin: %s" 42 | msgstr "Eklentiler güncelleniyor: %s" 43 | 44 | #: class-tgm-plugin-activation.php:340 45 | msgid "Something went wrong with the plugin API." 46 | msgstr "Eklenti API'siyle ilgili bir şeyler yanlış gitti." 47 | 48 | #. translators: 1: plugin name(s). 49 | #: class-tgm-plugin-activation.php:343 50 | #, php-format 51 | msgid "This theme requires the following plugin: %1$s." 52 | msgid_plural "This theme requires the following plugins: %1$s." 53 | msgstr[0] "Bu tema şu eklentiyi gerektiriyor: %1$s." 54 | msgstr[1] "Bu tema şu eklentileri gerektiriyor: %1$s." 55 | 56 | #. translators: 1: plugin name(s). 57 | #: class-tgm-plugin-activation.php:349 58 | #, php-format 59 | msgid "This theme recommends the following plugin: %1$s." 60 | msgid_plural "This theme recommends the following plugins: %1$s." 61 | msgstr[0] "Bu tema şu eklentiyi öneriyor: %1$s." 62 | msgstr[1] "Bu tema şu eklentileri öneriyor: %1$s." 63 | 64 | #. translators: 1: plugin name(s). 65 | #: class-tgm-plugin-activation.php:355 66 | #, php-format 67 | msgid "" 68 | "The following plugin needs to be updated to its latest version to ensure " 69 | "maximum compatibility with this theme: %1$s." 70 | msgid_plural "" 71 | "The following plugins need to be updated to their latest version to ensure " 72 | "maximum compatibility with this theme: %1$s." 73 | msgstr[0] "" 74 | "Tema ile en üst düzeyde uyum sağlamak için şu eklentinin en son sürüme " 75 | "güncellenmesi gerekiyor: %1$s." 76 | msgstr[1] "" 77 | "Tema ile en üst düzeyde uyum sağlamak için şu eklentilerin en son sürüme " 78 | "güncellenmesi gerekiyor: %1$s." 79 | 80 | #. translators: 1: plugin name(s). 81 | #: class-tgm-plugin-activation.php:361 82 | #, php-format 83 | msgid "There is an update available for: %1$s." 84 | msgid_plural "There are updates available for the following plugins: %1$s." 85 | msgstr[0] "Şu eklenti için bir güncelleme var: %1$s." 86 | msgstr[1] "Şu eklentiler için bir güncelleme var: %1$s." 87 | 88 | #. translators: 1: plugin name(s). 89 | #: class-tgm-plugin-activation.php:367 90 | #, php-format 91 | msgid "The following required plugin is currently inactive: %1$s." 92 | msgid_plural "The following required plugins are currently inactive: %1$s." 93 | msgstr[0] "Gerekli olan şu eklenti şu an etkin değil: %1$s." 94 | msgstr[1] "Gerekli olan şu eklentiler şu an etkin değil: %1$s." 95 | 96 | #. translators: 1: plugin name(s). 97 | #: class-tgm-plugin-activation.php:373 98 | #, php-format 99 | msgid "The following recommended plugin is currently inactive: %1$s." 100 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 101 | msgstr[0] "Önerilen şu eklenti şu an etkin değil: %1$s." 102 | msgstr[1] "Önerilen şu eklentiler şu an etkin değil: %1$s." 103 | 104 | #: class-tgm-plugin-activation.php:378 105 | msgid "Begin installing plugin" 106 | msgid_plural "Begin installing plugins" 107 | msgstr[0] "Eklentiyi yüklemeye başla" 108 | msgstr[1] "Eklentileri yüklemeye başla" 109 | 110 | #: class-tgm-plugin-activation.php:383 111 | msgid "Begin updating plugin" 112 | msgid_plural "Begin updating plugins" 113 | msgstr[0] "Eklentiyi güncellemeye başla" 114 | msgstr[1] "Eklentileri güncellemeye başla" 115 | 116 | #: class-tgm-plugin-activation.php:388 117 | msgid "Begin activating plugin" 118 | msgid_plural "Begin activating plugins" 119 | msgstr[0] "Eklentiyi etkinleştirmeye başla" 120 | msgstr[1] "Eklentileri etkinleştirmeye başla" 121 | 122 | #: class-tgm-plugin-activation.php:392 123 | msgid "Return to Required Plugins Installer" 124 | msgstr "Gerekli eklenti kurulumuna dön" 125 | 126 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 127 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 128 | msgid "Return to the Dashboard" 129 | msgstr "Başlangıca dön" 130 | 131 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 132 | msgid "Plugin activated successfully." 133 | msgstr "Eklenti başarıyla etkinleştirildi." 134 | 135 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 136 | msgid "The following plugin was activated successfully:" 137 | msgid_plural "The following plugins were activated successfully:" 138 | msgstr[0] "Şu eklenti başarıyla etkinleştirildi:" 139 | msgstr[1] "Şu eklentiler başarıyla etkinleştirildi:" 140 | 141 | #. translators: 1: plugin name. 142 | #: class-tgm-plugin-activation.php:397 143 | #, php-format 144 | msgid "No action taken. Plugin %1$s was already active." 145 | msgstr "Herhangi bir eylemde bulunulmadı. %1$s eklentisi zaten etkin." 146 | 147 | #. translators: 1: plugin name. 148 | #: class-tgm-plugin-activation.php:399 149 | #, php-format 150 | msgid "" 151 | "Plugin not activated. A higher version of %s is needed for this theme. " 152 | "Please update the plugin." 153 | msgstr "" 154 | "Eklenti etkinleştirilmedi. Bu tema için %s eklentisinin daha yüksek bir " 155 | "sürümü gerekiyor. Lütfen eklentiyi güncelleyin." 156 | 157 | #. translators: 1: dashboard link. 158 | #: class-tgm-plugin-activation.php:401 159 | #, php-format 160 | msgid "All plugins installed and activated successfully. %1$s" 161 | msgstr "Tüm eklentiler başarıyla kuruldu ve etkinleştirildi. %1$s" 162 | 163 | #: class-tgm-plugin-activation.php:402 164 | msgid "Dismiss this notice" 165 | msgstr "Bu bildirimi kapatın" 166 | 167 | #: class-tgm-plugin-activation.php:403 168 | msgid "" 169 | "There are one or more required or recommended plugins to install, update or " 170 | "activate." 171 | msgstr "" 172 | "Yüklenecek, güncellenecek veya etkinleştirilmesi gerekli veya önerilen bir " 173 | "ya da daha fazla eklenti var." 174 | 175 | #: class-tgm-plugin-activation.php:404 176 | msgid "Please contact the administrator of this site for help." 177 | msgstr "Lütfen yardım için sitenin yöneticilerine ulaşın." 178 | 179 | #: class-tgm-plugin-activation.php:607 180 | msgid "This plugin needs to be updated to be compatible with your theme." 181 | msgstr "" 182 | "Temanızla uyum sağlayabilmesi için bu eklentinin güncellenmesi gerekiyor." 183 | 184 | #: class-tgm-plugin-activation.php:608 185 | msgid "Update Required" 186 | msgstr "Güncelleme gerekiyor" 187 | 188 | #: class-tgm-plugin-activation.php:725 189 | msgid "Set the parent_slug config variable instead." 190 | msgstr "Yerine parent_slug ayar değişkenini kullanın." 191 | 192 | #: class-tgm-plugin-activation.php:1027 193 | msgid "" 194 | "The remote plugin package does not contain a folder with the desired slug " 195 | "and renaming did not work." 196 | msgstr "" 197 | "Uzak eklenti beklenen klasörü içermiyor ve isim değiştirme de işe yaramadı." 198 | 199 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 200 | msgid "" 201 | "Please contact the plugin provider and ask them to package their plugin " 202 | "according to the WordPress guidelines." 203 | msgstr "" 204 | "Lütfen eklenti sağlayıcısı ile irtibata geçip eklenti paketini WordPress " 205 | "kurallarına göre güncellemelerini iletin." 206 | 207 | #: class-tgm-plugin-activation.php:1030 208 | msgid "" 209 | "The remote plugin package consists of more than one file, but the files are " 210 | "not packaged in a folder." 211 | msgstr "" 212 | "Uzak eklenti paketi birdne çok dosya içeriyor fakat bunlar bir klasör içinde " 213 | "değil." 214 | 215 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 216 | msgctxt "plugin A *and* plugin B" 217 | msgid "and" 218 | msgstr "ve" 219 | 220 | #. translators: %s: version number 221 | #: class-tgm-plugin-activation.php:2075 222 | #, php-format 223 | msgid "TGMPA v%s" 224 | msgstr "TGMPA v%s" 225 | 226 | #: class-tgm-plugin-activation.php:2366 227 | msgid "Required" 228 | msgstr "Gerekli" 229 | 230 | #: class-tgm-plugin-activation.php:2369 231 | msgid "Recommended" 232 | msgstr "Tavsiye edilen" 233 | 234 | #: class-tgm-plugin-activation.php:2385 235 | msgid "WordPress Repository" 236 | msgstr "WordPress Veri Havuzu" 237 | 238 | #: class-tgm-plugin-activation.php:2388 239 | msgid "External Source" 240 | msgstr "Dış kaynak" 241 | 242 | #: class-tgm-plugin-activation.php:2391 243 | msgid "Pre-Packaged" 244 | msgstr "Önceden paketlenmiş" 245 | 246 | #: class-tgm-plugin-activation.php:2408 247 | msgid "Not Installed" 248 | msgstr "Kurulmamış" 249 | 250 | #: class-tgm-plugin-activation.php:2412 251 | msgid "Installed But Not Activated" 252 | msgstr "Kurulmuş ancak etkinleştirilmemiş" 253 | 254 | #: class-tgm-plugin-activation.php:2414 255 | msgid "Active" 256 | msgstr "Aktif" 257 | 258 | #: class-tgm-plugin-activation.php:2420 259 | msgid "Required Update not Available" 260 | msgstr "Gerekli güncelleme uygun değil" 261 | 262 | #: class-tgm-plugin-activation.php:2423 263 | msgid "Requires Update" 264 | msgstr "Yükseltme gerektiriyor" 265 | 266 | #: class-tgm-plugin-activation.php:2426 267 | msgid "Update recommended" 268 | msgstr "Yükseltme öneriliyor" 269 | 270 | #. translators: 1: install status, 2: update status 271 | #: class-tgm-plugin-activation.php:2435 272 | #, php-format 273 | msgctxt "Install/Update Status" 274 | msgid "%1$s, %2$s" 275 | msgstr "%1$s, %2$s" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2481 279 | #, php-format 280 | msgctxt "plugins" 281 | msgid "All (%s)" 282 | msgid_plural "All (%s)" 283 | msgstr[0] "Tümü (%s)" 284 | msgstr[1] "Tümü (%s)" 285 | 286 | #. translators: 1: number of plugins. 287 | #: class-tgm-plugin-activation.php:2485 288 | #, php-format 289 | msgid "To Install (%s)" 290 | msgid_plural "To Install (%s)" 291 | msgstr[0] "Yüklenecek (%s)" 292 | msgstr[1] "Yüklenecek (%s)" 293 | 294 | #. translators: 1: number of plugins. 295 | #: class-tgm-plugin-activation.php:2489 296 | #, php-format 297 | msgid "Update Available (%s)" 298 | msgid_plural "Update Available (%s)" 299 | msgstr[0] "Güncellemesi olan (%s)" 300 | msgstr[1] "Güncellemesi olan (%s)" 301 | 302 | #. translators: 1: number of plugins. 303 | #: class-tgm-plugin-activation.php:2493 304 | #, php-format 305 | msgid "To Activate (%s)" 306 | msgid_plural "To Activate (%s)" 307 | msgstr[0] "Etkinleştirilecek (%s)" 308 | msgstr[1] "Etkinleştirilecek (%s)" 309 | 310 | #: class-tgm-plugin-activation.php:2575 311 | msgctxt "as in: \"version nr unknown\"" 312 | msgid "unknown" 313 | msgstr "bilinmiyor" 314 | 315 | #: class-tgm-plugin-activation.php:2583 316 | msgid "Installed version:" 317 | msgstr "Yüklü sürüm:" 318 | 319 | #: class-tgm-plugin-activation.php:2591 320 | msgid "Minimum required version:" 321 | msgstr "Gerekli en küçük sürüm:" 322 | 323 | #: class-tgm-plugin-activation.php:2603 324 | msgid "Available version:" 325 | msgstr "Uygun sürüm:" 326 | 327 | #: class-tgm-plugin-activation.php:2626 328 | msgid "No plugins to install, update or activate." 329 | msgstr "Kurulacak, güncellenecek ya da etkinleştirilecek hiç bir eklenti yok." 330 | 331 | #: class-tgm-plugin-activation.php:2640 332 | msgid "Plugin" 333 | msgstr "Eklenti" 334 | 335 | #: class-tgm-plugin-activation.php:2641 336 | msgid "Source" 337 | msgstr "Kaynak" 338 | 339 | #: class-tgm-plugin-activation.php:2642 340 | msgid "Type" 341 | msgstr "Tür" 342 | 343 | #: class-tgm-plugin-activation.php:2646 344 | msgid "Version" 345 | msgstr "Sürüm" 346 | 347 | #: class-tgm-plugin-activation.php:2647 348 | msgid "Status" 349 | msgstr "Durum" 350 | 351 | #. translators: %2$s: plugin name in screen reader markup 352 | #: class-tgm-plugin-activation.php:2696 353 | #, php-format 354 | msgid "Install %2$s" 355 | msgstr "%2$s yükle" 356 | 357 | #. translators: %2$s: plugin name in screen reader markup 358 | #: class-tgm-plugin-activation.php:2701 359 | #, php-format 360 | msgid "Update %2$s" 361 | msgstr "%2$s güncelle" 362 | 363 | #. translators: %2$s: plugin name in screen reader markup 364 | #: class-tgm-plugin-activation.php:2707 365 | #, php-format 366 | msgid "Activate %2$s" 367 | msgstr "%2$s etkinleştir" 368 | 369 | #: class-tgm-plugin-activation.php:2777 370 | msgid "Upgrade message from the plugin author:" 371 | msgstr "Eklenti geliştiricisinden yükseltme mesajı:" 372 | 373 | #: class-tgm-plugin-activation.php:2810 374 | msgid "Install" 375 | msgstr "Yükle" 376 | 377 | #: class-tgm-plugin-activation.php:2816 378 | msgid "Update" 379 | msgstr "Güncelleme" 380 | 381 | #: class-tgm-plugin-activation.php:2819 382 | msgid "Activate" 383 | msgstr "Etkinleştir" 384 | 385 | #: class-tgm-plugin-activation.php:2850 386 | msgid "No plugins were selected to be installed. No action taken." 387 | msgstr "Yükleme için eklenti seçilmedi. Herhangi bir eylemde bulunulmadı. " 388 | 389 | #: class-tgm-plugin-activation.php:2852 390 | msgid "No plugins were selected to be updated. No action taken." 391 | msgstr "Güncelleme için eklenti seçilmedi. Herhangi bir eylemde bulunulmadı. " 392 | 393 | #: class-tgm-plugin-activation.php:2893 394 | msgid "No plugins are available to be installed at this time." 395 | msgstr "Şu an için yüklenmek üzere uygun eklenti yok." 396 | 397 | #: class-tgm-plugin-activation.php:2895 398 | msgid "No plugins are available to be updated at this time." 399 | msgstr "Şu an için güncelleme gerektiren eklenti yok." 400 | 401 | #: class-tgm-plugin-activation.php:3001 402 | msgid "No plugins were selected to be activated. No action taken." 403 | msgstr "" 404 | "Etkinleştirilmek üzere eklenti seçilmedi. Herhangi bir eylemde bulunulmadı." 405 | 406 | #: class-tgm-plugin-activation.php:3027 407 | msgid "No plugins are available to be activated at this time." 408 | msgstr "Şu an için etkinleştirmek üzere uygun eklenti yok." 409 | 410 | #: class-tgm-plugin-activation.php:3251 411 | msgid "Plugin activation failed." 412 | msgstr "Eklenti etkinleştirmesi başarısız oldu." 413 | 414 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 415 | #: class-tgm-plugin-activation.php:3591 416 | #, php-format 417 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 418 | msgstr "Eklenti güncelleştiriliyor %1$s (%2$d/%3$d)" 419 | 420 | #. translators: 1: plugin name, 2: error message. 421 | #: class-tgm-plugin-activation.php:3594 422 | #, php-format 423 | msgid "An error occurred while installing %1$s: %2$s." 424 | msgstr "%1$s kurulurken bir hata oluştu: %2$s." 425 | 426 | #. translators: 1: plugin name. 427 | #: class-tgm-plugin-activation.php:3596 428 | #, php-format 429 | msgid "The installation of %1$s failed." 430 | msgstr "%1$s kurulumu başarısız oldu." 431 | 432 | #: class-tgm-plugin-activation.php:3600 433 | msgid "" 434 | "The installation and activation process is starting. This process may take a " 435 | "while on some hosts, so please be patient." 436 | msgstr "" 437 | "Kurulum ve etkinleştirme işlemi başlıyor. Bu işlem, bazı ana bilgisayarlarda " 438 | "zaman alabilir, bu yüzden sabırlı olunuz." 439 | 440 | #. translators: 1: plugin name. 441 | #: class-tgm-plugin-activation.php:3602 442 | #, php-format 443 | msgid "%1$s installed and activated successfully." 444 | msgstr "%1$s başarıyla kuruldu ve etkinleştirildi." 445 | 446 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 447 | msgid "Show Details" 448 | msgstr "Detayları göster" 449 | 450 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 451 | msgid "Hide Details" 452 | msgstr "Detayları gizle" 453 | 454 | #: class-tgm-plugin-activation.php:3603 455 | msgid "All installations and activations have been completed." 456 | msgstr "Tüm kurulum ve etkinleştirmeler tamamlandı." 457 | 458 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 459 | #: class-tgm-plugin-activation.php:3605 460 | #, php-format 461 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 462 | msgstr "Eklenti %1$s (%2$d/%3$d) Kuruluyor ve Etkinleştiriliyor" 463 | 464 | #: class-tgm-plugin-activation.php:3608 465 | msgid "" 466 | "The installation process is starting. This process may take a while on some " 467 | "hosts, so please be patient." 468 | msgstr "" 469 | "Kurulum işlemi başlıyor. Bu işlem, bazı ana bilgisayarlarda zaman alabilir, " 470 | "bu yüzden sabırlı olunuz." 471 | 472 | #. translators: 1: plugin name. 473 | #: class-tgm-plugin-activation.php:3610 474 | #, php-format 475 | msgid "%1$s installed successfully." 476 | msgstr "%1$s başarıyla kuruldu." 477 | 478 | #: class-tgm-plugin-activation.php:3611 479 | msgid "All installations have been completed." 480 | msgstr "Tüm kurulumlar tamamlandı." 481 | 482 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 483 | #: class-tgm-plugin-activation.php:3613 484 | #, php-format 485 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 486 | msgstr "Eklenti %1$s (%2$d/%3$d) Kuruluyor" 487 | -------------------------------------------------------------------------------- /languages/tgmpa-vi_VN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-vi_VN.mo -------------------------------------------------------------------------------- /languages/tgmpa-vi_VN.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Vietnamese (VN) 2 | # This file is distributed under the same license as the TGMPA package. 3 | msgid "" 4 | msgstr "" 5 | "Plural-Forms: nplurals=1; plural=0;\n" 6 | "Project-Id-Version: TGM Plugin Activation v2.6.1\n" 7 | "POT-Creation-Date: 2017-08-11 12:28+0700\n" 8 | "PO-Revision-Date: 2017-08-11 13:06+0700\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Generator: Poedit 2.0.2\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "Last-Translator: BBLand bbland.net@gmail.com\n" 21 | "Language: vi\n" 22 | "X-Poedit-SearchPath-0: .\n" 23 | "X-Poedit-SearchPathExcluded-0: *.js\n" 24 | "X-Poedit-SearchPathExcluded-1: example.php\n" 25 | 26 | #: class-tgm-plugin-activation.php:334 27 | msgid "Install Required Plugins" 28 | msgstr "Cài Đặt Plugins Yêu Cầu" 29 | 30 | #: class-tgm-plugin-activation.php:335 31 | msgid "Install Plugins" 32 | msgstr "Cài đặt Plugins" 33 | 34 | #. translators: %s: plugin name. 35 | #: class-tgm-plugin-activation.php:337 36 | #, php-format 37 | msgid "Installing Plugin: %s" 38 | msgstr "Cài đặt Plugins: %s" 39 | 40 | #. translators: %s: plugin name. 41 | #: class-tgm-plugin-activation.php:339 42 | #, php-format 43 | msgid "Updating Plugin: %s" 44 | msgstr "Cập nhật Plugins: %s" 45 | 46 | #: class-tgm-plugin-activation.php:340 47 | msgid "Something went wrong with the plugin API." 48 | msgstr "Có lỗi ở plugin API." 49 | 50 | #. translators: 1: plugin name(s). 51 | #: class-tgm-plugin-activation.php:343 52 | #, php-format 53 | msgid "This theme requires the following plugin: %1$s." 54 | msgid_plural "This theme requires the following plugins: %1$s." 55 | msgstr[0] "Giao diện này yêu cầu cần cài đặt những plugin sau: %1$s." 56 | 57 | #. translators: 1: plugin name(s). 58 | #: class-tgm-plugin-activation.php:349 59 | #, php-format 60 | msgid "This theme recommends the following plugin: %1$s." 61 | msgid_plural "This theme recommends the following plugins: %1$s." 62 | msgstr[0] "Giao diện này đề nghị cần cài đặt những plugin sau: %1$s." 63 | 64 | #. translators: 1: plugin name(s). 65 | #: class-tgm-plugin-activation.php:355 66 | #, php-format 67 | msgid "" 68 | "The following plugin needs to be updated to its latest version to ensure " 69 | "maximum compatibility with this theme: %1$s." 70 | msgid_plural "" 71 | "The following plugins need to be updated to their latest version to ensure " 72 | "maximum compatibility with this theme: %1$s." 73 | msgstr[0] "" 74 | "Những plugin sau cần được cập nhật lên phiên bản mới nhất để tương thích với " 75 | "giao diện: %1$s." 76 | 77 | #. translators: 1: plugin name(s). 78 | #: class-tgm-plugin-activation.php:361 79 | #, php-format 80 | msgid "There is an update available for: %1$s." 81 | msgid_plural "There are updates available for the following plugins: %1$s." 82 | msgstr[0] "Có bản cập nhật cho: %1$s." 83 | 84 | #. translators: 1: plugin name(s). 85 | #: class-tgm-plugin-activation.php:367 86 | #, php-format 87 | msgid "The following required plugin is currently inactive: %1$s." 88 | msgid_plural "The following required plugins are currently inactive: %1$s." 89 | msgstr[0] "Plugin cần có sau đây hiện tại đang Chưa Kích Hoạt: %1$s." 90 | 91 | #. translators: 1: plugin name(s). 92 | #: class-tgm-plugin-activation.php:373 93 | #, php-format 94 | msgid "The following recommended plugin is currently inactive: %1$s." 95 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 96 | msgstr[0] "Plugin đề nghị sau đây hiện tại đang Chưa Kích Hoạt: %1$s." 97 | 98 | #: class-tgm-plugin-activation.php:378 99 | msgid "Begin installing plugin" 100 | msgid_plural "Begin installing plugins" 101 | msgstr[0] "Bắt đầu cài đặt plugins" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Bắt đầu cập nhật plugins" 107 | 108 | #: class-tgm-plugin-activation.php:388 109 | msgid "Begin activating plugin" 110 | msgid_plural "Begin activating plugins" 111 | msgstr[0] "Bắt đầu kích hoạt plugins" 112 | 113 | #: class-tgm-plugin-activation.php:392 114 | msgid "Return to Required Plugins Installer" 115 | msgstr "Trở lại Cài Đặt Plugins Yêu Cầu" 116 | 117 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 118 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 119 | msgid "Return to the Dashboard" 120 | msgstr "Trở lại Bảng Điều Khiển" 121 | 122 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 123 | msgid "Plugin activated successfully." 124 | msgstr "Plugin đã được kích hoạt thành công." 125 | 126 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 127 | msgid "The following plugin was activated successfully:" 128 | msgid_plural "The following plugins were activated successfully:" 129 | msgstr[0] "Những plugin sau đây đã cài đặt thành công:" 130 | 131 | #. translators: 1: plugin name. 132 | #: class-tgm-plugin-activation.php:397 133 | #, php-format 134 | msgid "No action taken. Plugin %1$s was already active." 135 | msgstr "Không có hành động nào. Plugin %1$s đã kích hoạt rồi." 136 | 137 | #. translators: 1: plugin name. 138 | #: class-tgm-plugin-activation.php:399 139 | #, php-format 140 | msgid "" 141 | "Plugin not activated. A higher version of %s is needed for this theme. " 142 | "Please update the plugin." 143 | msgstr "" 144 | "Plugin không thể kích hoạt. Yêu cầu phiên bản cao hơn cho plugin %s. Vui " 145 | "lòng cập nhật plugin." 146 | 147 | #. translators: 1: dashboard link. 148 | #: class-tgm-plugin-activation.php:401 149 | #, php-format 150 | msgid "All plugins installed and activated successfully. %1$s" 151 | msgstr "Tất cả plugins đã được cài đặt và kích hoạt thành công. %1$s" 152 | 153 | #: class-tgm-plugin-activation.php:402 154 | msgid "Dismiss this notice" 155 | msgstr "Ngừng thông báo" 156 | 157 | #: class-tgm-plugin-activation.php:403 158 | msgid "" 159 | "There are one or more required or recommended plugins to install, update or " 160 | "activate." 161 | msgstr "" 162 | "Có một hoặc nhiều plugins được yêu cầu hoặc đề nghị để cài đặt, cập nhật " 163 | "hoặc kích hoạt." 164 | 165 | #: class-tgm-plugin-activation.php:404 166 | msgid "Please contact the administrator of this site for help." 167 | msgstr "Vui lòng liên hệ Ban Quản Trị của trang để được trợ giúp." 168 | 169 | #: class-tgm-plugin-activation.php:607 170 | msgid "This plugin needs to be updated to be compatible with your theme." 171 | msgstr "Plugin này cần được cập nhật để tương thích với giao diện của bạn." 172 | 173 | #: class-tgm-plugin-activation.php:608 174 | msgid "Update Required" 175 | msgstr "Cập nhật yêu cầu" 176 | 177 | #: class-tgm-plugin-activation.php:725 178 | msgid "Set the parent_slug config variable instead." 179 | msgstr "Thiết lập biến parent_slug thay thế." 180 | 181 | #: class-tgm-plugin-activation.php:1027 182 | msgid "" 183 | "The remote plugin package does not contain a folder with the desired slug " 184 | "and renaming did not work." 185 | msgstr "" 186 | "Gói plugin từ xa không có chứa trong folder (slug mô tả) nên nó không hoạt " 187 | "động được." 188 | 189 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 190 | msgid "" 191 | "Please contact the plugin provider and ask them to package their plugin " 192 | "according to the WordPress guidelines." 193 | msgstr "" 194 | "Vui lòng liên hệ với nhà cung cấp plugin và yêu cầu họ đóng gói plugin theo " 195 | "đúng yêu cầu của Wordpress nhé." 196 | 197 | #: class-tgm-plugin-activation.php:1030 198 | msgid "" 199 | "The remote plugin package consists of more than one file, but the files are " 200 | "not packaged in a folder." 201 | msgstr "" 202 | "Gói plugin từ xa có chứa nhiều hoặc một file không được đóng gói trong thư " 203 | "mục." 204 | 205 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 206 | msgctxt "plugin A *and* plugin B" 207 | msgid "and" 208 | msgstr "và" 209 | 210 | #. translators: %s: version number 211 | #: class-tgm-plugin-activation.php:2075 212 | #, php-format 213 | msgid "TGMPA v%s" 214 | msgstr "TGMPA v%s" 215 | 216 | #: class-tgm-plugin-activation.php:2366 217 | msgid "Required" 218 | msgstr "Bắt buộc" 219 | 220 | #: class-tgm-plugin-activation.php:2369 221 | msgid "Recommended" 222 | msgstr "Đề nghị" 223 | 224 | #: class-tgm-plugin-activation.php:2385 225 | msgid "WordPress Repository" 226 | msgstr "Repo Wordpress" 227 | 228 | #: class-tgm-plugin-activation.php:2388 229 | msgid "External Source" 230 | msgstr "Nguồn bên ngoài" 231 | 232 | #: class-tgm-plugin-activation.php:2391 233 | msgid "Pre-Packaged" 234 | msgstr "Đóng gói trước" 235 | 236 | #: class-tgm-plugin-activation.php:2408 237 | msgid "Not Installed" 238 | msgstr "Chưa cài đặt" 239 | 240 | #: class-tgm-plugin-activation.php:2412 241 | msgid "Installed But Not Activated" 242 | msgstr "Cài đặt rồi mà chưa kích hoạt" 243 | 244 | #: class-tgm-plugin-activation.php:2414 245 | msgid "Active" 246 | msgstr "Kích hoạt" 247 | 248 | #: class-tgm-plugin-activation.php:2420 249 | msgid "Required Update not Available" 250 | msgstr "Yêu cầu cập nhật không Hỗ Trợ" 251 | 252 | #: class-tgm-plugin-activation.php:2423 253 | msgid "Requires Update" 254 | msgstr "Yêu cầu cập nhật" 255 | 256 | #: class-tgm-plugin-activation.php:2426 257 | msgid "Update recommended" 258 | msgstr "Đề nghị cập nhật" 259 | 260 | #. translators: 1: install status, 2: update status 261 | #: class-tgm-plugin-activation.php:2435 262 | #, php-format 263 | msgctxt "Install/Update Status" 264 | msgid "%1$s, %2$s" 265 | msgstr "%1$s, %2$s" 266 | 267 | #. translators: 1: number of plugins. 268 | #: class-tgm-plugin-activation.php:2481 269 | #, php-format 270 | msgctxt "plugins" 271 | msgid "All (%s)" 272 | msgid_plural "All (%s)" 273 | msgstr[0] "Tất cả (%s)" 274 | 275 | #. translators: 1: number of plugins. 276 | #: class-tgm-plugin-activation.php:2485 277 | #, php-format 278 | msgid "To Install (%s)" 279 | msgid_plural "To Install (%s)" 280 | msgstr[0] "Để cài đặt (%s)" 281 | 282 | #. translators: 1: number of plugins. 283 | #: class-tgm-plugin-activation.php:2489 284 | #, php-format 285 | msgid "Update Available (%s)" 286 | msgid_plural "Update Available (%s)" 287 | msgstr[0] "Cập nhật hiện có (%s)" 288 | 289 | #. translators: 1: number of plugins. 290 | #: class-tgm-plugin-activation.php:2493 291 | #, php-format 292 | msgid "To Activate (%s)" 293 | msgid_plural "To Activate (%s)" 294 | msgstr[0] "Để kích hoạt (%s)" 295 | 296 | #: class-tgm-plugin-activation.php:2575 297 | msgctxt "as in: \"version nr unknown\"" 298 | msgid "unknown" 299 | msgstr "không biết" 300 | 301 | #: class-tgm-plugin-activation.php:2583 302 | msgid "Installed version:" 303 | msgstr "Đã cài đặt phiên bản:" 304 | 305 | #: class-tgm-plugin-activation.php:2591 306 | msgid "Minimum required version:" 307 | msgstr "Yêu cầu phiên bản thấp nhất:" 308 | 309 | #: class-tgm-plugin-activation.php:2603 310 | msgid "Available version:" 311 | msgstr "Phiên bản hiện có:" 312 | 313 | #: class-tgm-plugin-activation.php:2626 314 | msgid "No plugins to install, update or activate." 315 | msgstr "Không có plugins nào cần cài đặt, cập nhật hoặc kích hoạt." 316 | 317 | #: class-tgm-plugin-activation.php:2640 318 | msgid "Plugin" 319 | msgstr "Plugin" 320 | 321 | #: class-tgm-plugin-activation.php:2641 322 | msgid "Source" 323 | msgstr "Nguồn" 324 | 325 | #: class-tgm-plugin-activation.php:2642 326 | msgid "Type" 327 | msgstr "Loại" 328 | 329 | #: class-tgm-plugin-activation.php:2646 330 | msgid "Version" 331 | msgstr "Phiên bản" 332 | 333 | #: class-tgm-plugin-activation.php:2647 334 | msgid "Status" 335 | msgstr "Trang thái" 336 | 337 | #. translators: %2$s: plugin name in screen reader markup 338 | #: class-tgm-plugin-activation.php:2696 339 | #, php-format 340 | msgid "Install %2$s" 341 | msgstr "Cài đặt %2$s" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2701 345 | #, php-format 346 | msgid "Update %2$s" 347 | msgstr "Cập nhật %2$s" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2707 351 | #, php-format 352 | msgid "Activate %2$s" 353 | msgstr "Kích hoạt %2$s" 354 | 355 | #: class-tgm-plugin-activation.php:2777 356 | msgid "Upgrade message from the plugin author:" 357 | msgstr "Tin nhắn nâng cấp từ tác giả plugin:" 358 | 359 | #: class-tgm-plugin-activation.php:2810 360 | msgid "Install" 361 | msgstr "Cài đặt" 362 | 363 | #: class-tgm-plugin-activation.php:2816 364 | msgid "Update" 365 | msgstr "Cập nhật" 366 | 367 | #: class-tgm-plugin-activation.php:2819 368 | msgid "Activate" 369 | msgstr "Kích hoạt" 370 | 371 | #: class-tgm-plugin-activation.php:2850 372 | msgid "No plugins were selected to be installed. No action taken." 373 | msgstr "Bạn chưa lựa chọn plugins nào để cài đặt." 374 | 375 | #: class-tgm-plugin-activation.php:2852 376 | msgid "No plugins were selected to be updated. No action taken." 377 | msgstr "Bạn chưa lựa chọn plugins nào để cập nhật." 378 | 379 | #: class-tgm-plugin-activation.php:2893 380 | msgid "No plugins are available to be installed at this time." 381 | msgstr "Hiện chưa có plugins cần cài đặt tại thời điểm này." 382 | 383 | #: class-tgm-plugin-activation.php:2895 384 | msgid "No plugins are available to be updated at this time." 385 | msgstr "Hiện chưa có plugins nào cần cập nhật tại thời điểm này." 386 | 387 | #: class-tgm-plugin-activation.php:3001 388 | msgid "No plugins were selected to be activated. No action taken." 389 | msgstr "Hiện chưa có plugins nào cần cập nhật tại thời điểm này." 390 | 391 | #: class-tgm-plugin-activation.php:3027 392 | msgid "No plugins are available to be activated at this time." 393 | msgstr "Hiện chưa có plugins nào cần kích hoạt tại thời điểm này." 394 | 395 | #: class-tgm-plugin-activation.php:3251 396 | msgid "Plugin activation failed." 397 | msgstr "Không thể kích hoạt được plugin." 398 | 399 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 400 | #: class-tgm-plugin-activation.php:3591 401 | #, php-format 402 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 403 | msgstr "Đang cập nhật plugin %1$s (%2$d/%3$d)" 404 | 405 | #. translators: 1: plugin name, 2: error message. 406 | #: class-tgm-plugin-activation.php:3594 407 | #, php-format 408 | msgid "An error occurred while installing %1$s: %2$s." 409 | msgstr "Có một lỗi trong khi cài đặt %1$s: %2$s." 410 | 411 | #. translators: 1: plugin name. 412 | #: class-tgm-plugin-activation.php:3596 413 | #, php-format 414 | msgid "The installation of %1$s failed." 415 | msgstr "Cài đặt %1$s gặp lỗi rồi." 416 | 417 | #: class-tgm-plugin-activation.php:3600 418 | msgid "" 419 | "The installation and activation process is starting. This process may take a " 420 | "while on some hosts, so please be patient." 421 | msgstr "" 422 | "Quá trình cài đặt và kích hoạt đang bắt đầu. Quá trình này có thể hơi lâu " 423 | "tuỳ vào server của bạn, vì vậy hãy kiên nhẫn tí nhé." 424 | 425 | #. translators: 1: plugin name. 426 | #: class-tgm-plugin-activation.php:3602 427 | #, php-format 428 | msgid "%1$s installed and activated successfully." 429 | msgstr "%1$s đã được cài đặt và kích hoạt thành công." 430 | 431 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 432 | msgid "Show Details" 433 | msgstr "Xem chi tiết" 434 | 435 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 436 | msgid "Hide Details" 437 | msgstr "Ẩn chi tiết" 438 | 439 | #: class-tgm-plugin-activation.php:3603 440 | msgid "All installations and activations have been completed." 441 | msgstr "Tất cả đã được cài đặt và kích hoạt." 442 | 443 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 444 | #: class-tgm-plugin-activation.php:3605 445 | #, php-format 446 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 447 | msgstr "Đang cài đặt và kích hoạt Plugin %1$s (%2$d/%3$d)" 448 | 449 | #: class-tgm-plugin-activation.php:3608 450 | msgid "" 451 | "The installation process is starting. This process may take a while on some " 452 | "hosts, so please be patient." 453 | msgstr "" 454 | "Quá trình cài đặt đang bắt đầu. Quá trình này có thể hơi lâu tuỳ vào server " 455 | "của bạn, vì vậy hãy kiên nhẫn tí nhé." 456 | 457 | #. translators: 1: plugin name. 458 | #: class-tgm-plugin-activation.php:3610 459 | #, php-format 460 | msgid "%1$s installed successfully." 461 | msgstr "%1$s đã cài đặt thành công." 462 | 463 | #: class-tgm-plugin-activation.php:3611 464 | msgid "All installations have been completed." 465 | msgstr "Tất cả đã được cài đặt." 466 | 467 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 468 | #: class-tgm-plugin-activation.php:3613 469 | #, php-format 470 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 471 | msgstr "Đang cài đặt Plugin %1$s (%2$d/%3$d)" 472 | -------------------------------------------------------------------------------- /languages/tgmpa-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/languages/tgmpa-zh_TW.mo -------------------------------------------------------------------------------- /languages/tgmpa-zh_TW.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Plural-Forms: nplurals=1; plural=0;\n" 4 | "Project-Id-Version: TGM Plugin Activation 2.6.1\n" 5 | "POT-Creation-Date: 2016-05-19 02:57+0200\n" 6 | "PO-Revision-Date: 2017-09-10 16:20+0800\n" 7 | "Language-Team: Alex Lion \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 2.0.3\n" 12 | "X-Poedit-Basepath: ..\n" 13 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 14 | "X-Poedit-SourceCharset: UTF-8\n" 15 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 16 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 17 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 18 | "Last-Translator: Alex Lion \n" 19 | "Language: zh_TW\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | "X-Poedit-SearchPathExcluded-1: example.php\n" 23 | 24 | #: class-tgm-plugin-activation.php:334 25 | msgid "Install Required Plugins" 26 | msgstr "安裝必要的外掛" 27 | 28 | #: class-tgm-plugin-activation.php:335 29 | msgid "Install Plugins" 30 | msgstr "安裝外掛" 31 | 32 | #. translators: %s: plugin name. 33 | #: class-tgm-plugin-activation.php:337 34 | #, php-format 35 | msgid "Installing Plugin: %s" 36 | msgstr "安裝中的外掛: %s" 37 | 38 | #. translators: %s: plugin name. 39 | #: class-tgm-plugin-activation.php:339 40 | #, php-format 41 | msgid "Updating Plugin: %s" 42 | msgstr "更新中的外掛: %s" 43 | 44 | #: class-tgm-plugin-activation.php:340 45 | msgid "Something went wrong with the plugin API." 46 | msgstr "外掛 API 出了點小問題。" 47 | 48 | #. translators: 1: plugin name(s). 49 | #: class-tgm-plugin-activation.php:343 50 | #, php-format 51 | msgid "This theme requires the following plugin: %1$s." 52 | msgid_plural "This theme requires the following plugins: %1$s." 53 | msgstr[0] "這個佈景主題須要安裝以下外掛: %1$s。" 54 | 55 | #. translators: 1: plugin name(s). 56 | #: class-tgm-plugin-activation.php:349 57 | #, php-format 58 | msgid "This theme recommends the following plugin: %1$s." 59 | msgid_plural "This theme recommends the following plugins: %1$s." 60 | msgstr[0] "這個佈景主題建議安裝以下外掛: %1$s。" 61 | 62 | #. translators: 1: plugin name(s). 63 | #: class-tgm-plugin-activation.php:355 64 | #, php-format 65 | msgid "" 66 | "The following plugin needs to be updated to its latest version to ensure " 67 | "maximum compatibility with this theme: %1$s." 68 | msgid_plural "" 69 | "The following plugins need to be updated to their latest version to ensure " 70 | "maximum compatibility with this theme: %1$s." 71 | msgstr[0] "" 72 | "為確保與本佈景主題保持最高相容性,下列外掛必須更新至最新版本: %1$s。" 73 | 74 | #. translators: 1: plugin name(s). 75 | #: class-tgm-plugin-activation.php:361 76 | #, php-format 77 | msgid "There is an update available for: %1$s." 78 | msgid_plural "There are updates available for the following plugins: %1$s." 79 | msgstr[0] "下列外掛有可用的更新: %1$s。" 80 | 81 | #. translators: 1: plugin name(s). 82 | #: class-tgm-plugin-activation.php:367 83 | #, php-format 84 | msgid "The following required plugin is currently inactive: %1$s." 85 | msgid_plural "The following required plugins are currently inactive: %1$s." 86 | msgstr[0] "下列必要安裝的外掛目前尚未啟用: %1$s。" 87 | 88 | #. translators: 1: plugin name(s). 89 | #: class-tgm-plugin-activation.php:373 90 | #, php-format 91 | msgid "The following recommended plugin is currently inactive: %1$s." 92 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 93 | msgstr[0] "下列建議安裝的外掛目前尚未啟用: %1$s。" 94 | 95 | #: class-tgm-plugin-activation.php:378 96 | msgid "Begin installing plugin" 97 | msgid_plural "Begin installing plugins" 98 | msgstr[0] "安裝外掛" 99 | 100 | #: class-tgm-plugin-activation.php:383 101 | msgid "Begin updating plugin" 102 | msgid_plural "Begin updating plugins" 103 | msgstr[0] "更新外掛" 104 | 105 | #: class-tgm-plugin-activation.php:388 106 | msgid "Begin activating plugin" 107 | msgid_plural "Begin activating plugins" 108 | msgstr[0] "啟用外掛" 109 | 110 | #: class-tgm-plugin-activation.php:392 111 | msgid "Return to Required Plugins Installer" 112 | msgstr "返回 [安裝必要的外掛]" 113 | 114 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 115 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 116 | msgid "Return to the Dashboard" 117 | msgstr "返回 [控制台]" 118 | 119 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 120 | msgid "Plugin activated successfully." 121 | msgstr "外掛啟用成功。" 122 | 123 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 124 | msgid "The following plugin was activated successfully:" 125 | msgid_plural "The following plugins were activated successfully:" 126 | msgstr[0] "下列外掛已成功完成啟用:" 127 | 128 | #. translators: 1: plugin name. 129 | #: class-tgm-plugin-activation.php:397 130 | #, php-format 131 | msgid "No action taken. Plugin %1$s was already active." 132 | msgstr "無須進行任何操作。外掛 %1$s 已完成啟用。" 133 | 134 | #. translators: 1: plugin name. 135 | #: class-tgm-plugin-activation.php:399 136 | #, php-format 137 | msgid "" 138 | "Plugin not activated. A higher version of %s is needed for this theme. " 139 | "Please update the plugin." 140 | msgstr "外掛尚未啟用。本佈景主題須要配合較新版本的 %s,請將外掛予以更新。" 141 | 142 | #. translators: 1: dashboard link. 143 | #: class-tgm-plugin-activation.php:401 144 | #, php-format 145 | msgid "All plugins installed and activated successfully. %1$s" 146 | msgstr "所有外掛均已成功安裝並完成啟用。%1$s" 147 | 148 | #: class-tgm-plugin-activation.php:402 149 | msgid "Dismiss this notice" 150 | msgstr "忽略這項通知" 151 | 152 | #: class-tgm-plugin-activation.php:403 153 | msgid "" 154 | "There are one or more required or recommended plugins to install, update or " 155 | "activate." 156 | msgstr "有一或多個必要或推薦的外掛需要安裝、更新或啟用。" 157 | 158 | #: class-tgm-plugin-activation.php:404 159 | msgid "Please contact the administrator of this site for help." 160 | msgstr "請聯絡這個網站的管理者尋求協助。" 161 | 162 | #: class-tgm-plugin-activation.php:607 163 | msgid "This plugin needs to be updated to be compatible with your theme." 164 | msgstr "為了與目前的佈景主題相容,這個外掛必須進行更新。" 165 | 166 | #: class-tgm-plugin-activation.php:608 167 | msgid "Update Required" 168 | msgstr "必須更新" 169 | 170 | #: class-tgm-plugin-activation.php:725 171 | msgid "Set the parent_slug config variable instead." 172 | msgstr "設定 parent_slug 組態變數加以取代。" 173 | 174 | #: class-tgm-plugin-activation.php:1027 175 | msgid "" 176 | "The remote plugin package does not contain a folder with the desired slug " 177 | "and renaming did not work." 178 | msgstr "遠端的外掛封包並未包含正確代稱的資料夾,且經過重新命名也無法正確運作。" 179 | 180 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 181 | msgid "" 182 | "Please contact the plugin provider and ask them to package their plugin " 183 | "according to the WordPress guidelines." 184 | msgstr "" 185 | "請聯絡外掛開發者,並要求開發者依照 WordPress 準則為外掛進行正確的封裝。" 186 | 187 | #: class-tgm-plugin-activation.php:1030 188 | msgid "" 189 | "The remote plugin package consists of more than one file, but the files are " 190 | "not packaged in a folder." 191 | msgstr "遠端外掛封裝包含超過一個檔案,但這些檔案並未封裝於同一個資料夾中。" 192 | 193 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 194 | msgctxt "plugin A *and* plugin B" 195 | msgid "and" 196 | msgstr "及" 197 | 198 | #. translators: %s: version number 199 | #: class-tgm-plugin-activation.php:2075 200 | #, php-format 201 | msgid "TGMPA v%s" 202 | msgstr "TGMPA %s 版" 203 | 204 | #: class-tgm-plugin-activation.php:2366 205 | msgid "Required" 206 | msgstr "必要" 207 | 208 | #: class-tgm-plugin-activation.php:2369 209 | msgid "Recommended" 210 | msgstr "推薦" 211 | 212 | #: class-tgm-plugin-activation.php:2385 213 | msgid "WordPress Repository" 214 | msgstr "WordPress 版本庫" 215 | 216 | #: class-tgm-plugin-activation.php:2388 217 | msgid "External Source" 218 | msgstr "外部來源" 219 | 220 | #: class-tgm-plugin-activation.php:2391 221 | msgid "Pre-Packaged" 222 | msgstr "預先封裝" 223 | 224 | #: class-tgm-plugin-activation.php:2408 225 | msgid "Not Installed" 226 | msgstr "尚未安裝" 227 | 228 | #: class-tgm-plugin-activation.php:2412 229 | msgid "Installed But Not Activated" 230 | msgstr "已安裝但仍未啟用" 231 | 232 | #: class-tgm-plugin-activation.php:2414 233 | msgid "Active" 234 | msgstr "啟用" 235 | 236 | #: class-tgm-plugin-activation.php:2420 237 | msgid "Required Update not Available" 238 | msgstr "無法使用必要的更新" 239 | 240 | #: class-tgm-plugin-activation.php:2423 241 | msgid "Requires Update" 242 | msgstr "須要更新" 243 | 244 | #: class-tgm-plugin-activation.php:2426 245 | msgid "Update recommended" 246 | msgstr "建議更新" 247 | 248 | #. translators: 1: install status, 2: update status 249 | #: class-tgm-plugin-activation.php:2435 250 | #, php-format 251 | msgctxt "Install/Update Status" 252 | msgid "%1$s, %2$s" 253 | msgstr "%1$s, %2$s" 254 | 255 | #. translators: 1: number of plugins. 256 | #: class-tgm-plugin-activation.php:2481 257 | #, php-format 258 | msgctxt "plugins" 259 | msgid "All (%s)" 260 | msgid_plural "All (%s)" 261 | msgstr[0] "總計 %s 個" 262 | 263 | #. translators: 1: number of plugins. 264 | #: class-tgm-plugin-activation.php:2485 265 | #, php-format 266 | msgid "To Install (%s)" 267 | msgid_plural "To Install (%s)" 268 | msgstr[0] "安装 %s 個" 269 | 270 | #. translators: 1: number of plugins. 271 | #: class-tgm-plugin-activation.php:2489 272 | #, php-format 273 | msgid "Update Available (%s)" 274 | msgid_plural "Update Available (%s)" 275 | msgstr[0] "%s 個可用的更新" 276 | 277 | #. translators: 1: number of plugins. 278 | #: class-tgm-plugin-activation.php:2493 279 | #, php-format 280 | msgid "To Activate (%s)" 281 | msgid_plural "To Activate (%s)" 282 | msgstr[0] "啟用 %s 個" 283 | 284 | #: class-tgm-plugin-activation.php:2575 285 | msgctxt "as in: \"version nr unknown\"" 286 | msgid "unknown" 287 | msgstr "未知" 288 | 289 | #: class-tgm-plugin-activation.php:2583 290 | msgid "Installed version:" 291 | msgstr "已安裝的版本:" 292 | 293 | #: class-tgm-plugin-activation.php:2591 294 | msgid "Minimum required version:" 295 | msgstr "最低需求版本:" 296 | 297 | #: class-tgm-plugin-activation.php:2603 298 | msgid "Available version:" 299 | msgstr "可用版本:" 300 | 301 | #: class-tgm-plugin-activation.php:2626 302 | msgid "No plugins to install, update or activate." 303 | msgstr "目前沒有需要安裝、更新或啟用的外掛。" 304 | 305 | #: class-tgm-plugin-activation.php:2640 306 | msgid "Plugin" 307 | msgstr "外掛" 308 | 309 | #: class-tgm-plugin-activation.php:2641 310 | msgid "Source" 311 | msgstr "來源" 312 | 313 | #: class-tgm-plugin-activation.php:2642 314 | msgid "Type" 315 | msgstr "類型" 316 | 317 | #: class-tgm-plugin-activation.php:2646 318 | msgid "Version" 319 | msgstr "版本" 320 | 321 | #: class-tgm-plugin-activation.php:2647 322 | msgid "Status" 323 | msgstr "狀態" 324 | 325 | #. translators: %2$s: plugin name in screen reader markup 326 | #: class-tgm-plugin-activation.php:2696 327 | #, php-format 328 | msgid "Install %2$s" 329 | msgstr "安装 %2$s" 330 | 331 | #. translators: %2$s: plugin name in screen reader markup 332 | #: class-tgm-plugin-activation.php:2701 333 | #, php-format 334 | msgid "Update %2$s" 335 | msgstr "更新 %2$s" 336 | 337 | #. translators: %2$s: plugin name in screen reader markup 338 | #: class-tgm-plugin-activation.php:2707 339 | #, php-format 340 | msgid "Activate %2$s" 341 | msgstr "啟用 %2$s" 342 | 343 | #: class-tgm-plugin-activation.php:2777 344 | msgid "Upgrade message from the plugin author:" 345 | msgstr "來自外掛開發者的升級訊息:" 346 | 347 | #: class-tgm-plugin-activation.php:2810 348 | msgid "Install" 349 | msgstr "安裝" 350 | 351 | #: class-tgm-plugin-activation.php:2816 352 | msgid "Update" 353 | msgstr "更新" 354 | 355 | #: class-tgm-plugin-activation.php:2819 356 | msgid "Activate" 357 | msgstr "啟用" 358 | 359 | #: class-tgm-plugin-activation.php:2850 360 | msgid "No plugins were selected to be installed. No action taken." 361 | msgstr "沒有選取任何外掛以進行安裝。並未產生任何變更。" 362 | 363 | #: class-tgm-plugin-activation.php:2852 364 | msgid "No plugins were selected to be updated. No action taken." 365 | msgstr "沒有選取任何外掛以進行更新。並未產生任何變更。" 366 | 367 | #: class-tgm-plugin-activation.php:2893 368 | msgid "No plugins are available to be installed at this time." 369 | msgstr "目前沒有需要安裝的外掛。" 370 | 371 | #: class-tgm-plugin-activation.php:2895 372 | msgid "No plugins are available to be updated at this time." 373 | msgstr "目前沒有需要更新的外掛。" 374 | 375 | #: class-tgm-plugin-activation.php:3001 376 | msgid "No plugins were selected to be activated. No action taken." 377 | msgstr "沒有選取任何外掛以進行啟用。並未產生任何變更。" 378 | 379 | #: class-tgm-plugin-activation.php:3027 380 | msgid "No plugins are available to be activated at this time." 381 | msgstr "目前沒有需要啟用的外掛。" 382 | 383 | #: class-tgm-plugin-activation.php:3251 384 | msgid "Plugin activation failed." 385 | msgstr "外掛啟用失敗。" 386 | 387 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 388 | #: class-tgm-plugin-activation.php:3591 389 | #, php-format 390 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 391 | msgstr "正在更新外掛 %1$s (總計 %3$d 個步驟,目前為第 %2$d 步驟)" 392 | 393 | #. translators: 1: plugin name, 2: error message. 394 | #: class-tgm-plugin-activation.php:3594 395 | #, php-format 396 | msgid "An error occurred while installing %1$s: %2$s." 397 | msgstr "安裝 %1$s 時發生錯誤: %2$s。" 398 | 399 | #. translators: 1: plugin name. 400 | #: class-tgm-plugin-activation.php:3596 401 | #, php-format 402 | msgid "The installation of %1$s failed." 403 | msgstr "%1$s 安裝失敗。" 404 | 405 | #: class-tgm-plugin-activation.php:3600 406 | msgid "" 407 | "The installation and activation process is starting. This process may take a " 408 | "while on some hosts, so please be patient." 409 | msgstr "" 410 | "已開始進行安裝及啟用程序。該程序在某些主機上可能會需要較多的時間,請耐心等" 411 | "候。" 412 | 413 | #. translators: 1: plugin name. 414 | #: class-tgm-plugin-activation.php:3602 415 | #, php-format 416 | msgid "%1$s installed and activated successfully." 417 | msgstr "已安裝並成功啟用 %1$s。" 418 | 419 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 420 | msgid "Show Details" 421 | msgstr "顯示詳細資訊" 422 | 423 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 424 | msgid "Hide Details" 425 | msgstr "隱藏詳細資訊" 426 | 427 | #: class-tgm-plugin-activation.php:3603 428 | msgid "All installations and activations have been completed." 429 | msgstr "所有安裝及啟用均已完成。" 430 | 431 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 432 | #: class-tgm-plugin-activation.php:3605 433 | #, php-format 434 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 435 | msgstr "正在安裝並啟用的外掛為 %1$s (總計 %3$d 個步驟,目前為第 %2$d 步驟)" 436 | 437 | #: class-tgm-plugin-activation.php:3608 438 | msgid "" 439 | "The installation process is starting. This process may take a while on some " 440 | "hosts, so please be patient." 441 | msgstr "安裝程序進行中。該程序在某些主機上可能會需要較多的時間,請耐心等候。" 442 | 443 | #. translators: 1: plugin name. 444 | #: class-tgm-plugin-activation.php:3610 445 | #, php-format 446 | msgid "%1$s installed successfully." 447 | msgstr "%1$s 安裝成功。" 448 | 449 | #: class-tgm-plugin-activation.php:3611 450 | msgid "All installations have been completed." 451 | msgstr "所有安裝均已完成。" 452 | 453 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 454 | #: class-tgm-plugin-activation.php:3613 455 | #, php-format 456 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 457 | msgstr "正在安裝的外掛為 %1$s (總計 %3$d 個步驟,目前為第 %2$d 步驟)" 458 | -------------------------------------------------------------------------------- /languages/tgmpa.pot: -------------------------------------------------------------------------------- 1 | #, fuzzy 2 | msgid "" 3 | msgstr "" 4 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 5 | "Project-Id-Version: TGM Plugin Activation\n" 6 | "POT-Creation-Date: 2016-05-19 02:57+0200\n" 7 | "PO-Revision-Date: 2016-01-04 11:07+0100\n" 8 | "Last-Translator: Juliette Reinders Folmer \n" 9 | "Language-Team: TGMPA\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Generator: Poedit 1.8.7\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-WPHeader: class-tgm-plugin-activation.php\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" 18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" 19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" 20 | "X-Poedit-SearchPath-0: .\n" 21 | "X-Poedit-SearchPathExcluded-0: *.js\n" 22 | "X-Poedit-SearchPathExcluded-1: example.php\n" 23 | 24 | #: class-tgm-plugin-activation.php:334 25 | msgid "Install Required Plugins" 26 | msgstr "" 27 | 28 | #: class-tgm-plugin-activation.php:335 29 | msgid "Install Plugins" 30 | msgstr "" 31 | 32 | #. translators: %s: plugin name. 33 | #: class-tgm-plugin-activation.php:337 34 | #, php-format 35 | msgid "Installing Plugin: %s" 36 | msgstr "" 37 | 38 | #. translators: %s: plugin name. 39 | #: class-tgm-plugin-activation.php:339 40 | #, php-format 41 | msgid "Updating Plugin: %s" 42 | msgstr "" 43 | 44 | #: class-tgm-plugin-activation.php:340 45 | msgid "Something went wrong with the plugin API." 46 | msgstr "" 47 | 48 | #. translators: 1: plugin name(s). 49 | #: class-tgm-plugin-activation.php:343 50 | #, php-format 51 | msgid "This theme requires the following plugin: %1$s." 52 | msgid_plural "This theme requires the following plugins: %1$s." 53 | msgstr[0] "" 54 | msgstr[1] "" 55 | 56 | #. translators: 1: plugin name(s). 57 | #: class-tgm-plugin-activation.php:349 58 | #, php-format 59 | msgid "This theme recommends the following plugin: %1$s." 60 | msgid_plural "This theme recommends the following plugins: %1$s." 61 | msgstr[0] "" 62 | msgstr[1] "" 63 | 64 | #. translators: 1: plugin name(s). 65 | #: class-tgm-plugin-activation.php:355 66 | #, php-format 67 | msgid "" 68 | "The following plugin needs to be updated to its latest version to ensure " 69 | "maximum compatibility with this theme: %1$s." 70 | msgid_plural "" 71 | "The following plugins need to be updated to their latest version to ensure " 72 | "maximum compatibility with this theme: %1$s." 73 | msgstr[0] "" 74 | msgstr[1] "" 75 | 76 | #. translators: 1: plugin name(s). 77 | #: class-tgm-plugin-activation.php:361 78 | #, php-format 79 | msgid "There is an update available for: %1$s." 80 | msgid_plural "There are updates available for the following plugins: %1$s." 81 | msgstr[0] "" 82 | msgstr[1] "" 83 | 84 | #. translators: 1: plugin name(s). 85 | #: class-tgm-plugin-activation.php:367 86 | #, php-format 87 | msgid "The following required plugin is currently inactive: %1$s." 88 | msgid_plural "The following required plugins are currently inactive: %1$s." 89 | msgstr[0] "" 90 | msgstr[1] "" 91 | 92 | #. translators: 1: plugin name(s). 93 | #: class-tgm-plugin-activation.php:373 94 | #, php-format 95 | msgid "The following recommended plugin is currently inactive: %1$s." 96 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 97 | msgstr[0] "" 98 | msgstr[1] "" 99 | 100 | #: class-tgm-plugin-activation.php:378 101 | msgid "Begin installing plugin" 102 | msgid_plural "Begin installing plugins" 103 | msgstr[0] "" 104 | msgstr[1] "" 105 | 106 | #: class-tgm-plugin-activation.php:383 107 | msgid "Begin updating plugin" 108 | msgid_plural "Begin updating plugins" 109 | msgstr[0] "" 110 | msgstr[1] "" 111 | 112 | #: class-tgm-plugin-activation.php:388 113 | msgid "Begin activating plugin" 114 | msgid_plural "Begin activating plugins" 115 | msgstr[0] "" 116 | msgstr[1] "" 117 | 118 | #: class-tgm-plugin-activation.php:392 119 | msgid "Return to Required Plugins Installer" 120 | msgstr "" 121 | 122 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 123 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 124 | msgid "Return to the Dashboard" 125 | msgstr "" 126 | 127 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 128 | msgid "Plugin activated successfully." 129 | msgstr "" 130 | 131 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 132 | msgid "The following plugin was activated successfully:" 133 | msgid_plural "The following plugins were activated successfully:" 134 | msgstr[0] "" 135 | msgstr[1] "" 136 | 137 | #. translators: 1: plugin name. 138 | #: class-tgm-plugin-activation.php:397 139 | #, php-format 140 | msgid "No action taken. Plugin %1$s was already active." 141 | msgstr "" 142 | 143 | #. translators: 1: plugin name. 144 | #: class-tgm-plugin-activation.php:399 145 | #, php-format 146 | msgid "" 147 | "Plugin not activated. A higher version of %s is needed for this theme. " 148 | "Please update the plugin." 149 | msgstr "" 150 | 151 | #. translators: 1: dashboard link. 152 | #: class-tgm-plugin-activation.php:401 153 | #, php-format 154 | msgid "All plugins installed and activated successfully. %1$s" 155 | msgstr "" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "" 160 | 161 | #: class-tgm-plugin-activation.php:403 162 | msgid "" 163 | "There are one or more required or recommended plugins to install, update or " 164 | "activate." 165 | msgstr "" 166 | 167 | #: class-tgm-plugin-activation.php:404 168 | msgid "Please contact the administrator of this site for help." 169 | msgstr "" 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "" 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "" 182 | 183 | #: class-tgm-plugin-activation.php:1027 184 | msgid "" 185 | "The remote plugin package does not contain a folder with the desired slug " 186 | "and renaming did not work." 187 | msgstr "" 188 | 189 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 190 | msgid "" 191 | "Please contact the plugin provider and ask them to package their plugin " 192 | "according to the WordPress guidelines." 193 | msgstr "" 194 | 195 | #: class-tgm-plugin-activation.php:1030 196 | msgid "" 197 | "The remote plugin package consists of more than one file, but the files are " 198 | "not packaged in a folder." 199 | msgstr "" 200 | 201 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 202 | msgctxt "plugin A *and* plugin B" 203 | msgid "and" 204 | msgstr "" 205 | 206 | #. translators: %s: version number 207 | #: class-tgm-plugin-activation.php:2075 208 | #, php-format 209 | msgid "TGMPA v%s" 210 | msgstr "" 211 | 212 | #: class-tgm-plugin-activation.php:2366 213 | msgid "Required" 214 | msgstr "" 215 | 216 | #: class-tgm-plugin-activation.php:2369 217 | msgid "Recommended" 218 | msgstr "" 219 | 220 | #: class-tgm-plugin-activation.php:2385 221 | msgid "WordPress Repository" 222 | msgstr "" 223 | 224 | #: class-tgm-plugin-activation.php:2388 225 | msgid "External Source" 226 | msgstr "" 227 | 228 | #: class-tgm-plugin-activation.php:2391 229 | msgid "Pre-Packaged" 230 | msgstr "" 231 | 232 | #: class-tgm-plugin-activation.php:2408 233 | msgid "Not Installed" 234 | msgstr "" 235 | 236 | #: class-tgm-plugin-activation.php:2412 237 | msgid "Installed But Not Activated" 238 | msgstr "" 239 | 240 | #: class-tgm-plugin-activation.php:2414 241 | msgid "Active" 242 | msgstr "" 243 | 244 | #: class-tgm-plugin-activation.php:2420 245 | msgid "Required Update not Available" 246 | msgstr "" 247 | 248 | #: class-tgm-plugin-activation.php:2423 249 | msgid "Requires Update" 250 | msgstr "" 251 | 252 | #: class-tgm-plugin-activation.php:2426 253 | msgid "Update recommended" 254 | msgstr "" 255 | 256 | #. translators: 1: install status, 2: update status 257 | #: class-tgm-plugin-activation.php:2435 258 | #, php-format 259 | msgctxt "Install/Update Status" 260 | msgid "%1$s, %2$s" 261 | msgstr "" 262 | 263 | #. translators: 1: number of plugins. 264 | #: class-tgm-plugin-activation.php:2481 265 | #, php-format 266 | msgctxt "plugins" 267 | msgid "All (%s)" 268 | msgid_plural "All (%s)" 269 | msgstr[0] "" 270 | msgstr[1] "" 271 | 272 | #. translators: 1: number of plugins. 273 | #: class-tgm-plugin-activation.php:2485 274 | #, php-format 275 | msgid "To Install (%s)" 276 | msgid_plural "To Install (%s)" 277 | msgstr[0] "" 278 | msgstr[1] "" 279 | 280 | #. translators: 1: number of plugins. 281 | #: class-tgm-plugin-activation.php:2489 282 | #, php-format 283 | msgid "Update Available (%s)" 284 | msgid_plural "Update Available (%s)" 285 | msgstr[0] "" 286 | msgstr[1] "" 287 | 288 | #. translators: 1: number of plugins. 289 | #: class-tgm-plugin-activation.php:2493 290 | #, php-format 291 | msgid "To Activate (%s)" 292 | msgid_plural "To Activate (%s)" 293 | msgstr[0] "" 294 | msgstr[1] "" 295 | 296 | #: class-tgm-plugin-activation.php:2575 297 | msgctxt "as in: \"version nr unknown\"" 298 | msgid "unknown" 299 | msgstr "" 300 | 301 | #: class-tgm-plugin-activation.php:2583 302 | msgid "Installed version:" 303 | msgstr "" 304 | 305 | #: class-tgm-plugin-activation.php:2591 306 | msgid "Minimum required version:" 307 | msgstr "" 308 | 309 | #: class-tgm-plugin-activation.php:2603 310 | msgid "Available version:" 311 | msgstr "" 312 | 313 | #: class-tgm-plugin-activation.php:2626 314 | msgid "No plugins to install, update or activate." 315 | msgstr "" 316 | 317 | #: class-tgm-plugin-activation.php:2640 318 | msgid "Plugin" 319 | msgstr "" 320 | 321 | #: class-tgm-plugin-activation.php:2641 322 | msgid "Source" 323 | msgstr "" 324 | 325 | #: class-tgm-plugin-activation.php:2642 326 | msgid "Type" 327 | msgstr "" 328 | 329 | #: class-tgm-plugin-activation.php:2646 330 | msgid "Version" 331 | msgstr "" 332 | 333 | #: class-tgm-plugin-activation.php:2647 334 | msgid "Status" 335 | msgstr "" 336 | 337 | #. translators: %2$s: plugin name in screen reader markup 338 | #: class-tgm-plugin-activation.php:2696 339 | #, php-format 340 | msgid "Install %2$s" 341 | msgstr "" 342 | 343 | #. translators: %2$s: plugin name in screen reader markup 344 | #: class-tgm-plugin-activation.php:2701 345 | #, php-format 346 | msgid "Update %2$s" 347 | msgstr "" 348 | 349 | #. translators: %2$s: plugin name in screen reader markup 350 | #: class-tgm-plugin-activation.php:2707 351 | #, php-format 352 | msgid "Activate %2$s" 353 | msgstr "" 354 | 355 | #: class-tgm-plugin-activation.php:2777 356 | msgid "Upgrade message from the plugin author:" 357 | msgstr "" 358 | 359 | #: class-tgm-plugin-activation.php:2810 360 | msgid "Install" 361 | msgstr "" 362 | 363 | #: class-tgm-plugin-activation.php:2816 364 | msgid "Update" 365 | msgstr "" 366 | 367 | #: class-tgm-plugin-activation.php:2819 368 | msgid "Activate" 369 | msgstr "" 370 | 371 | #: class-tgm-plugin-activation.php:2850 372 | msgid "No plugins were selected to be installed. No action taken." 373 | msgstr "" 374 | 375 | #: class-tgm-plugin-activation.php:2852 376 | msgid "No plugins were selected to be updated. No action taken." 377 | msgstr "" 378 | 379 | #: class-tgm-plugin-activation.php:2893 380 | msgid "No plugins are available to be installed at this time." 381 | msgstr "" 382 | 383 | #: class-tgm-plugin-activation.php:2895 384 | msgid "No plugins are available to be updated at this time." 385 | msgstr "" 386 | 387 | #: class-tgm-plugin-activation.php:3001 388 | msgid "No plugins were selected to be activated. No action taken." 389 | msgstr "" 390 | 391 | #: class-tgm-plugin-activation.php:3027 392 | msgid "No plugins are available to be activated at this time." 393 | msgstr "" 394 | 395 | #: class-tgm-plugin-activation.php:3251 396 | msgid "Plugin activation failed." 397 | msgstr "" 398 | 399 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 400 | #: class-tgm-plugin-activation.php:3591 401 | #, php-format 402 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 403 | msgstr "" 404 | 405 | #. translators: 1: plugin name, 2: error message. 406 | #: class-tgm-plugin-activation.php:3594 407 | #, php-format 408 | msgid "An error occurred while installing %1$s: %2$s." 409 | msgstr "" 410 | 411 | #. translators: 1: plugin name. 412 | #: class-tgm-plugin-activation.php:3596 413 | #, php-format 414 | msgid "The installation of %1$s failed." 415 | msgstr "" 416 | 417 | #: class-tgm-plugin-activation.php:3600 418 | msgid "" 419 | "The installation and activation process is starting. This process may take a " 420 | "while on some hosts, so please be patient." 421 | msgstr "" 422 | 423 | #. translators: 1: plugin name. 424 | #: class-tgm-plugin-activation.php:3602 425 | #, php-format 426 | msgid "%1$s installed and activated successfully." 427 | msgstr "" 428 | 429 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 430 | msgid "Show Details" 431 | msgstr "" 432 | 433 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 434 | msgid "Hide Details" 435 | msgstr "" 436 | 437 | #: class-tgm-plugin-activation.php:3603 438 | msgid "All installations and activations have been completed." 439 | msgstr "" 440 | 441 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 442 | #: class-tgm-plugin-activation.php:3605 443 | #, php-format 444 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 445 | msgstr "" 446 | 447 | #: class-tgm-plugin-activation.php:3608 448 | msgid "" 449 | "The installation process is starting. This process may take a while on some " 450 | "hosts, so please be patient." 451 | msgstr "" 452 | 453 | #. translators: 1: plugin name. 454 | #: class-tgm-plugin-activation.php:3610 455 | #, php-format 456 | msgid "%1$s installed successfully." 457 | msgstr "" 458 | 459 | #: class-tgm-plugin-activation.php:3611 460 | msgid "All installations have been completed." 461 | msgstr "" 462 | 463 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 464 | #: class-tgm-plugin-activation.php:3613 465 | #, php-format 466 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 467 | msgstr "" 468 | -------------------------------------------------------------------------------- /plugins/tgm-example-plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGMPA/TGM-Plugin-Activation/2d34264f4fdcfcc60261d490ff2e689f0c33730c/plugins/tgm-example-plugin.zip --------------------------------------------------------------------------------