├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── source ├── README.md ├── app │ ├── app.component.ts │ ├── app.module.ts │ └── app.routing.ts ├── index.ts └── views │ ├── home.view.less │ └── home.view.ts ├── theme ├── .gitignore ├── README.md ├── TGM-Plugin-Activation-2.6.1 │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── class-tgm-plugin-activation.php │ ├── example.php │ └── languages │ │ ├── tgmpa-cs_CZ.mo │ │ ├── tgmpa-cs_CZ.po │ │ ├── tgmpa-de_DE.mo │ │ ├── tgmpa-de_DE.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_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-nl_NL.mo │ │ ├── tgmpa-nl_NL.po │ │ ├── tgmpa-pt_BR.mo │ │ ├── tgmpa-pt_BR.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.pot ├── functions.php ├── index.php ├── plugins │ └── rest-api.2.0-beta15.zip └── style.css ├── tsconfig.json ├── webpack.config.js ├── www ├── .gitignore └── README.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | 8 | [*.{js,py,php,es6,jsx,ts,tsx}] 9 | indent_style = space 10 | indent_size = 4 11 | charset = utf-8 12 | trim_trailing_whitespace = true -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | node_modules 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wordpress reastapi Angular (>2) 2 | 3 | :fire: **Important!** 4 | 5 | :point_right: I'm _rewriting_ this app ground up. 6 | 7 | :hourglass_flowing_sand: Previous solution is stored in different branch: [v.1.0](https://github.com/artemdemo/wordpress-restapi-angular2/tree/v.1.0) 8 | 9 | ## Installation dev environment 10 | 11 | **Notice** that I haven't tested it in windows, therefore it could be a problems. 12 | That said feel free to create a PR if you have good fix. 13 | 14 | I'm using [dockie/lamp](http://github.com/robloach/dockie) 15 | 16 | 1. Get last image. 17 | ``` 18 | $ docker pull dockie/lamp 19 | ``` 20 | 21 | 2. Install container. 22 | ``` 23 | $ docker run -d -p 8000:80 -p 2200:22 -p 3306:3306 -v $(pwd)/www:/var/www/html:rw dockie/lamp 24 | ``` 25 | 26 | Site will be available at http://localhost:8000/ 27 | 28 | 3. Adding `wordpress` bd - http://localhost:8000/phpmyadmin 29 | 30 | 4. Copy last [wordpress CMS](https://wordpress.org/download/) to `www` folder. 31 | 32 | 5. Create `wp-config.php`. 33 | For development environment settings will be: 34 | ```php 35 | define('DB_NAME', 'wordpress'); 36 | define('DB_USER', 'root'); 37 | define('DB_PASSWORD', 'root'); 38 | define('DB_HOST', 'localhost'); 39 | define('DB_CHARSET', 'utf8'); 40 | define('DB_COLLATE', ''); 41 | ``` 42 | 43 | 6. Install packages and build js and css 44 | ``` 45 | $ npm i && npm run build 46 | ``` 47 | 48 | 7. Activate theme. 49 | 50 | 8. Install plugins (message will appear in dashboard after theme will be active). 51 | 52 | 9. Activate [permalinks](http://localhost:8000/wp-admin/options-permalink.php) of type "Post name". 53 | 54 | Now you should be able to use rest-api, for example to get all posts use link: http://localhost:8000/wp-json/wp/v2/posts 55 | 56 | [Documentation for wp rest api](https://developer.wordpress.org/rest-api/using-the-rest-api/discovery/) 57 | 58 | **Frontend stack** 59 | * [Angular](https://angular.io/) 4.0.1 60 | * [Redux](https://www.npmjs.com/package/redux) 3.6.0 61 | 62 | **CMS** 63 | 64 | * [Wordpess](https://wordpress.org/download/) code tested for version 4.7.3 65 | * [TGM Plugin Activation](https://github.com/TGMPA/TGM-Plugin-Activation) 2.6.1 (included in theme) 66 | * [Rest API Plugin](https://wordpress.org/plugins/rest-api/) 2.0-beta15 (included in theme) 67 | 68 | **Backend stack** 69 | 70 | * [Dockie](../dockie) 71 | * [Apache](https://httpd.apache.org/) 2.4.7 72 | * [PHP](http://php.net/) 5.5.9 73 | * [MySQL](http://www.mysql.com/) 5.5.37 74 | * [phpMyAdmin](http://www.phpmyadmin.net/) 4.0.10 75 | * [Composer](http://getcomposer.org) 1.0.0-alpha8 76 | 77 | **MySQL** 78 | 79 | Connect on `localhost:3306`, user `root`, password `root`. 80 | 81 | ### Useful links 82 | 83 | [starter for Angular v2+ using Webpack](https://github.com/preboot/angular-webpack) 84 | [Angular 2 — Introduction to Redux](https://medium.com/google-developer-experts/angular-2-introduction-to-redux-1cf18af27e6e) 85 | [ngrx/store](https://github.com/ngrx/store) 86 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wordpress-restapi-angular2", 3 | "version": "1.0.0", 4 | "description": "## Installation dev environment", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "npm run watch", 8 | "watch": "webpack --watch --progress --profile", 9 | "build": "webpack --progress --profile", 10 | "build:prod": "NODE_ENV=\"production\" webpack --progress --profile", 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/artemdemo/wordpress-restapi-angular2.git" 16 | }, 17 | "keywords": [ 18 | "wordpress", 19 | "restapi", 20 | "angular" 21 | ], 22 | "author": "Artem Demo", 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/artemdemo/wordpress-restapi-angular2/issues" 26 | }, 27 | "homepage": "https://github.com/artemdemo/wordpress-restapi-angular2#readme", 28 | "dependencies": { 29 | "@angular/common": "^4.0.1", 30 | "@angular/compiler": "^4.0.1", 31 | "@angular/core": "^4.0.1", 32 | "@angular/forms": "^4.0.1", 33 | "@angular/http": "^4.0.1", 34 | "@angular/platform-browser": "^4.0.1", 35 | "@angular/platform-browser-dynamic": "^4.0.1", 36 | "@angular/router": "^4.0.1", 37 | "bootstrap": "^3.3.7", 38 | "clean-webpack-plugin": "^0.1.16", 39 | "copy-webpack-plugin": "^4.0.1", 40 | "core-js": "^2.4.1", 41 | "css-loader": "^0.28.0", 42 | "extract-text-webpack-plugin": "^2.1.0", 43 | "html-loader": "^0.4.5", 44 | "html-webpack-plugin": "^2.28.0", 45 | "json-loader": "^0.5.4", 46 | "less": "^2.7.2", 47 | "less-loader": "^4.0.3", 48 | "reflect-metadata": "^0.1.10", 49 | "rxjs": "^5.3.0", 50 | "style-loader": "^0.16.1", 51 | "ts-helpers": "^1.1.2", 52 | "ts-loader": "^2.0.3", 53 | "typescript": "^2.2.2", 54 | "url-loader": "^0.5.8", 55 | "webpack": "^2.3.3", 56 | "zone.js": "^0.8.5" 57 | }, 58 | "devDependencies": { 59 | "@types/node": "^7.0.12", 60 | "to-string-loader": "^1.1.5" 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /source/README.md: -------------------------------------------------------------------------------- 1 | ## Source of frontend app 2 | -------------------------------------------------------------------------------- /source/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'wp-app', 5 | template: ` 6 |
7 | 11 |
12 |
13 |

Hello!

14 | 15 | 16 |
17 | `, 18 | }) 19 | export class AppComponent { 20 | constructor() { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /source/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule, ApplicationRef } from '@angular/core'; 2 | import { BrowserModule } from '@angular/platform-browser'; 3 | import { HttpModule } from '@angular/http'; 4 | import { FormsModule } from '@angular/forms'; 5 | 6 | import { AppComponent } from './app.component'; 7 | import { HomeView } from '../views/home.view'; 8 | import { routing } from './app.routing'; 9 | 10 | @NgModule({ 11 | imports: [ 12 | BrowserModule, 13 | HttpModule, 14 | FormsModule, 15 | routing 16 | ], 17 | declarations: [ 18 | AppComponent, 19 | HomeView, 20 | ], 21 | providers: [], 22 | bootstrap: [AppComponent] 23 | }) 24 | export default class AppModule { 25 | constructor(public appRef: ApplicationRef) {} 26 | } 27 | -------------------------------------------------------------------------------- /source/app/app.routing.ts: -------------------------------------------------------------------------------- 1 | 2 | import { RouterModule, Routes } from '@angular/router'; 3 | 4 | import { HomeView } from '../views/home.view'; 5 | 6 | const routes: Routes = [ 7 | { path: '', component: HomeView }, 8 | ]; 9 | 10 | export const routing = RouterModule.forRoot(routes); 11 | -------------------------------------------------------------------------------- /source/index.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | // polyfills 4 | import 'ts-helpers'; 5 | import 'reflect-metadata'; 6 | import 'core-js/client/shim'; 7 | import 'zone.js/dist/zone'; 8 | 9 | import { enableProdMode } from '@angular/core'; 10 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 11 | import AppModule from './app/app.module'; 12 | 13 | declare const ENV: { 14 | production: boolean; 15 | }; 16 | 17 | if (ENV.production) { 18 | enableProdMode(); 19 | } else { 20 | Error['stackTraceLimit'] = Infinity; 21 | require('zone.js/dist/long-stack-trace-zone'); 22 | } 23 | 24 | function deployApp() { 25 | return platformBrowserDynamic().bootstrapModule(AppModule); 26 | } 27 | 28 | if (document.readyState !== 'loading') { 29 | deployApp(); 30 | } else { 31 | document.addEventListener('DOMContentLoaded', deployApp); 32 | } 33 | -------------------------------------------------------------------------------- /source/views/home.view.less: -------------------------------------------------------------------------------- 1 | // component styles are encapsulated and only applied to their components 2 | * { 3 | color: #FFEF00; 4 | } 5 | -------------------------------------------------------------------------------- /source/views/home.view.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'home-view', 5 | styles: [require('./home.view.less')], 6 | template: ` 7 |

8 | Home Works! 9 |

10 | `, 11 | }) 12 | export class HomeView implements OnInit { 13 | 14 | constructor() { 15 | // Do stuff 16 | } 17 | 18 | ngOnInit() { 19 | console.log('Hello Home'); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /theme/.gitignore: -------------------------------------------------------------------------------- 1 | js 2 | css 3 | 4 | -------------------------------------------------------------------------------- /theme/README.md: -------------------------------------------------------------------------------- 1 | ## RESTAPI with Angular 2 | 3 | Theme files. 4 | 5 | You need to run `$ npm run build` in order to build js and css. 6 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How To Contribute 2 | 3 | Thanks for reading our contribution guidelines. 4 | 5 | The following guidelines for contribution should be followed if you want to submit a pull request. 6 | 7 | ## How To Prepare 8 | 9 | * You need a [GitHub account](https://github.com/signup/free). 10 | * Before reporting a bug or suggesting an improvement, please check the `develop` branch to see if it has already been addressed. 11 | * Duplicate tickets will be closed without hesitation, so please check through existing tickets first to see if someone else has already discussed it. 12 | * Submit an [issue ticket] for your issue if there is not one yet. 13 | * Describe the issue and include steps to reproduce if it's a bug. 14 | * If the issue is a bug, add any relevant JavaScript or PHP error messages. For PHP error messages, a backtrace is preferred. If you don't know how to get one, please [follow these instructions](https://gist.github.com/jrfnl/5925642). 15 | * Include relevant version numbers. 16 | * Additional screenshots or videos are often helpful. 17 | * If you are able and want to fix this, fork the repository on GitHub. 18 | 19 | ## Make Changes 20 | 21 | We use the [git-flow](http://nvie.com/posts/a-successful-git-branching-model/) branching model. Before reporting a bug or new feature, please check the `develop` branch to see if it's already been addressed. 22 | 23 | * In your forked repository, create a topic branch for your upcoming patch. Usually this is based on the `develop` branch. 24 | * For enhancements, name the branch according to the feature e.g. `feature/auto-activate`. 25 | * For un-reported bug fixes, add a `fix-` prefix e.g. `feature/fix-admin-notices`. 26 | * For code that addresses an existing Issue, add the Issue number as a prefix e.g. `feature/123-auto-activate` or `feature/321-fix-admin-notices`. 27 | * Please avoid working directly on the `develop` branch. 28 | * Code should follow the [WordPress Coding Standards for PHP](https://make.wordpress.org/core/handbook/coding-standards/php/). 29 | * Use [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) with the [WordPress Coding Standards](https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards) sniffs to check. Since we use `phpcs.xml`, you should be able to navigate on command line to the root of the repo and just run `phpcs` without any arguments. 30 | * Make commits of logical units and describe them properly. 31 | * Check for unnecessary whitespace with `git diff --check` before committing. 32 | 33 | ## Commit Messages 34 | We suggest you follow best practices for commit messages: 35 | 36 | * Separate subject (first line) from body with a blank line. 37 | * Limit the subject line to 50 characters. 38 | * Capitalize the subject line. 39 | * Do not end the subject line with a period. 40 | * Use the imperative mood in the subject line. 41 | * Wrap the body at 72 characters. 42 | * Use the body to explain _what_ and _why_ versus _how_. 43 | * Please [reference any existing issue](https://help.github.com/articles/closing-issues-via-commit-messages/) in the commit message. 44 | 45 | Read [this post](http://chris.beams.io/posts/git-commit/) for more detail. 46 | 47 | ## Submit Changes 48 | 49 | * Push your changes to a topic branch in your fork of the repository. 50 | * Open a pull request to the original repository and choose the correct original branch (probably `develop`) you want to patch. 51 | * Do not close any issue you referenced in your commit message. 52 | * If you have write access to the repository, do not directly push or merge your own pull-requests. Add the `[reviewmerge]` label when your branch is considered complete and let another team member review your pull request and approve. 53 | 54 | ## License 55 | 56 | All submissions are agreed to be licensed under the same license as present in the repository. 57 | 58 | ## Security 59 | 60 | There is no need to sign-off or GPG sign your commits. Tags (from 2.4.1 onwards) will be GPG signed. 61 | 62 | # Additional Resources 63 | 64 | * [General GitHub documentation](http://help.github.com/) 65 | * [GitHub pull request documentation](http://help.github.com/send-pull-requests/). 66 | * [Read the Issue Guidelines by @necolas](https://github.com/necolas/issue-guidelines/blob/master/CONTRIBUTING.md) for more details, 67 | 68 | [issue ticket]: https://github.com/TGMPA/TGM-Plugin-Activation/issues 69 | [reviewmerge]: https://github.com/TGMPA/TGM-Plugin-Activation/labels/reviewmerge 70 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/example.php: -------------------------------------------------------------------------------- 1 | 'TGM Example Plugin', // The plugin name. 65 | 'slug' => 'tgm-example-plugin', // The plugin slug (typically the folder name). 66 | 'source' => get_template_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 WPSEO installed *or* WPSEO 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' => 'WordPress SEO by Yoast', 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' => 'wpng', // 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', 'wpng' ), 138 | 'menu_title' => __( 'Install Plugins', 'wpng' ), 139 | /* translators: %s: plugin name. * / 140 | 'installing' => __( 'Installing Plugin: %s', 'wpng' ), 141 | /* translators: %s: plugin name. * / 142 | 'updating' => __( 'Updating Plugin: %s', 'wpng' ), 143 | 'oops' => __( 'Something went wrong with the plugin API.', 'wpng' ), 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 | 'wpng' 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 | 'wpng' 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 | 'wpng' 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 | 'wpng' 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 | 'wpng' 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 | 'wpng' 179 | ), 180 | 'install_link' => _n_noop( 181 | 'Begin installing plugin', 182 | 'Begin installing plugins', 183 | 'wpng' 184 | ), 185 | 'update_link' => _n_noop( 186 | 'Begin updating plugin', 187 | 'Begin updating plugins', 188 | 'wpng' 189 | ), 190 | 'activate_link' => _n_noop( 191 | 'Begin activating plugin', 192 | 'Begin activating plugins', 193 | 'wpng' 194 | ), 195 | 'return' => __( 'Return to Required Plugins Installer', 'wpng' ), 196 | 'plugin_activated' => __( 'Plugin activated successfully.', 'wpng' ), 197 | 'activated_successfully' => __( 'The following plugin was activated successfully:', 'wpng' ), 198 | /* translators: 1: plugin name. * / 199 | 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'wpng' ), 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.', 'wpng' ), 202 | /* translators: 1: dashboard link. * / 203 | 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'wpng' ), 204 | 'dismiss' => __( 'Dismiss this notice', 'wpng' ), 205 | 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'wpng' ), 206 | 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'wpng' ), 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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-cs_CZ.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-de_DE.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-de_DE.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in German (Germany) 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:58+0200\n" 7 | "PO-Revision-Date: 2016-05-19 02:58+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: TGMPA\n" 10 | "Language: de_DE\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 "Erforderliche Plugins installieren" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installiere Plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installiere 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 "Aktualisiere Plugin: %s" 36 | 37 | #: class-tgm-plugin-activation.php:340 38 | msgid "Something went wrong with the plugin API." 39 | msgstr "Etwas mit der Plugin-API schlug fehl." 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] "Dieses Theme erfordert folgendes Plugin: %1$s." 47 | msgstr[1] "Dieses Theme erfordert folgende 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] "Dieses Theme empfiehlt das folgende Plugin: %1$s." 55 | msgstr[1] "Dieses Theme empfiehlt die folgenden 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 | "Das folgende Plugin muss auf die neueste Version aktualisiert werden, um " 68 | "maximale Kompatibilität mit diesem Theme sicherzustellen: %1$s." 69 | msgstr[1] "" 70 | "Die folgenden Plugins müssen auf die neueste Version aktualisiert werden, um " 71 | "maximale Kompatibilität mit diesem Theme sicherzustellen: %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] "Es ist ein Update verfügbar für: %1$s." 79 | msgstr[1] "Es sind ein Updates verfügbar für: %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] "Das folgende erforderliche Plugin ist derzeit deaktiviert: %1$s." 87 | msgstr[1] "" 88 | "Die folgenden erforderlichen Plugins sind derzeit deaktiviert: %1$s." 89 | 90 | #. translators: 1: plugin name(s). 91 | #: class-tgm-plugin-activation.php:373 92 | #, php-format 93 | msgid "The following recommended plugin is currently inactive: %1$s." 94 | msgid_plural "The following recommended plugins are currently inactive: %1$s." 95 | msgstr[0] "Das folgende empfohlene Plugin ist derzeit deaktiviert: %1$s." 96 | msgstr[1] "Die folgenden empfohlenen Plugins sind derzeit deaktiviert: %1$s." 97 | 98 | #: class-tgm-plugin-activation.php:378 99 | msgid "Begin installing plugin" 100 | msgid_plural "Begin installing plugins" 101 | msgstr[0] "Beginne Installieren des Plugins" 102 | msgstr[1] "Beginne Installieren der Plugins" 103 | 104 | #: class-tgm-plugin-activation.php:383 105 | msgid "Begin updating plugin" 106 | msgid_plural "Begin updating plugins" 107 | msgstr[0] "Beginne Aktualisieren des Plugins" 108 | msgstr[1] "Beginne Aktualisieren der Plugins" 109 | 110 | #: class-tgm-plugin-activation.php:388 111 | msgid "Begin activating plugin" 112 | msgid_plural "Begin activating plugins" 113 | msgstr[0] "Beginne Aktivieren des Plugins" 114 | msgstr[1] "Beginne Aktivieren der Plugins" 115 | 116 | #: class-tgm-plugin-activation.php:392 117 | msgid "Return to Required Plugins Installer" 118 | msgstr "Zum Installer für erforderliche Plugins zurückkehren" 119 | 120 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 121 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 122 | msgid "Return to the Dashboard" 123 | msgstr "Zum Dashboard zurückkehren" 124 | 125 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 126 | msgid "Plugin activated successfully." 127 | msgstr "Plugin wurde erfolgreich aktiviert" 128 | 129 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 130 | msgid "The following plugin was activated successfully:" 131 | msgid_plural "The following plugins were activated successfully:" 132 | msgstr[0] "Das folgende Plugin wurde erfolgreich aktiviert:" 133 | msgstr[1] "Die folgenden Plugins wurden erfolgreich aktiviert:" 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 "Nichts wurde verändert. Plugin %1$s war bereits aktiviert." 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 wurde nicht aktiviert. Es ist eine spätere Version von %s " 149 | "erforderlich für dieses Theme. Bitte aktualisiere das 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 "Alle Plugins wurden erfolgreich installiert und aktiviert. %1$s" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "Benachrichtigung verwerfen" 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 | "Es sind ein oder mehrere erforderliche oder empfohlene Plugins zum " 167 | "installieren, aktualisieren oder aktivieren verfügbar." 168 | 169 | #: class-tgm-plugin-activation.php:404 170 | msgid "Please contact the administrator of this site for help." 171 | msgstr "" 172 | "Bitte wende dich sich an den Administrator dieser Seite um Hilfe zu erhalten." 173 | 174 | #: class-tgm-plugin-activation.php:607 175 | msgid "This plugin needs to be updated to be compatible with your theme." 176 | msgstr "" 177 | "Dieses Plugin muss aktualisiert werden, mit deinem Theme kompatibel zu sein." 178 | 179 | #: class-tgm-plugin-activation.php:608 180 | msgid "Update Required" 181 | msgstr "Aktualisierung erforderlich" 182 | 183 | #: class-tgm-plugin-activation.php:725 184 | msgid "Set the parent_slug config variable instead." 185 | msgstr "Setze die parent_slug Variable stattdessen." 186 | 187 | #: class-tgm-plugin-activation.php:1027 188 | msgid "" 189 | "The remote plugin package does not contain a folder with the desired slug " 190 | "and renaming did not work." 191 | msgstr "" 192 | "Das externe Plugin-Paket enthält keine Ordner mit der gewünschten Benennung " 193 | "(slug) und Umbenennung hat nicht funktioniert." 194 | 195 | #: class-tgm-plugin-activation.php:1027 class-tgm-plugin-activation.php:1030 196 | msgid "" 197 | "Please contact the plugin provider and ask them to package their plugin " 198 | "according to the WordPress guidelines." 199 | msgstr "" 200 | "Bitte kontaktiere den Plugin-Anbieter und bitte ihn, seine Plugins nach den " 201 | "Wordpress-Richtlinien zu verpacken." 202 | 203 | #: class-tgm-plugin-activation.php:1030 204 | msgid "" 205 | "The remote plugin package consists of more than one file, but the files are " 206 | "not packaged in a folder." 207 | msgstr "" 208 | "Das externe Plugin-Paket besteht aus mehr als einer Datei, aber die Dateien " 209 | "sind nicht in einem Ordner verpackt." 210 | 211 | #: class-tgm-plugin-activation.php:1214 class-tgm-plugin-activation.php:3041 212 | msgctxt "plugin A *and* plugin B" 213 | msgid "and" 214 | msgstr "und" 215 | 216 | #. translators: %s: version number 217 | #: class-tgm-plugin-activation.php:2075 218 | #, php-format 219 | msgid "TGMPA v%s" 220 | msgstr "TGMPA v%s" 221 | 222 | #: class-tgm-plugin-activation.php:2366 223 | msgid "Required" 224 | msgstr "Erforderlich" 225 | 226 | #: class-tgm-plugin-activation.php:2369 227 | msgid "Recommended" 228 | msgstr "Empfohlen" 229 | 230 | #: class-tgm-plugin-activation.php:2385 231 | msgid "WordPress Repository" 232 | msgstr "WordPress Repository" 233 | 234 | #: class-tgm-plugin-activation.php:2388 235 | msgid "External Source" 236 | msgstr "Externe Quelle" 237 | 238 | #: class-tgm-plugin-activation.php:2391 239 | msgid "Pre-Packaged" 240 | msgstr "Gepackt" 241 | 242 | #: class-tgm-plugin-activation.php:2408 243 | msgid "Not Installed" 244 | msgstr "Nicht installiert" 245 | 246 | #: class-tgm-plugin-activation.php:2412 247 | msgid "Installed But Not Activated" 248 | msgstr "Installiert, aber nicht aktiviert" 249 | 250 | #: class-tgm-plugin-activation.php:2414 251 | msgid "Active" 252 | msgstr "Aktviviert" 253 | 254 | #: class-tgm-plugin-activation.php:2420 255 | msgid "Required Update not Available" 256 | msgstr "Erforderliche Aktualisierung ist nicht verfügbar" 257 | 258 | #: class-tgm-plugin-activation.php:2423 259 | msgid "Requires Update" 260 | msgstr "Aktualisierung erforderlich" 261 | 262 | #: class-tgm-plugin-activation.php:2426 263 | msgid "Update recommended" 264 | msgstr "Aktualisierung empfohlen" 265 | 266 | #. translators: 1: install status, 2: update status 267 | #: class-tgm-plugin-activation.php:2435 268 | #, php-format 269 | msgctxt "Install/Update Status" 270 | msgid "%1$s, %2$s" 271 | msgstr "%1$s, %2$s" 272 | 273 | #. translators: 1: number of plugins. 274 | #: class-tgm-plugin-activation.php:2481 275 | #, php-format 276 | msgctxt "plugins" 277 | msgid "All (%s)" 278 | msgid_plural "All (%s)" 279 | msgstr[0] "Alle (%s)" 280 | msgstr[1] "Alle (%s)" 281 | 282 | #. translators: 1: number of plugins. 283 | #: class-tgm-plugin-activation.php:2485 284 | #, php-format 285 | msgid "To Install (%s)" 286 | msgid_plural "To Install (%s)" 287 | msgstr[0] "(%s) zu installieren" 288 | msgstr[1] "(%s) zu installieren" 289 | 290 | #. translators: 1: number of plugins. 291 | #: class-tgm-plugin-activation.php:2489 292 | #, php-format 293 | msgid "Update Available (%s)" 294 | msgid_plural "Update Available (%s)" 295 | msgstr[0] "(%s) Aktualisierung verfügbar" 296 | msgstr[1] "(%s) Aktualisierungen verfügbar" 297 | 298 | #. translators: 1: number of plugins. 299 | #: class-tgm-plugin-activation.php:2493 300 | #, php-format 301 | msgid "To Activate (%s)" 302 | msgid_plural "To Activate (%s)" 303 | msgstr[0] "(%s) zu aktivieren" 304 | msgstr[1] "(%s) zu aktivieren" 305 | 306 | #: class-tgm-plugin-activation.php:2575 307 | msgctxt "as in: \"version nr unknown\"" 308 | msgid "unknown" 309 | msgstr "unbekannt" 310 | 311 | #: class-tgm-plugin-activation.php:2583 312 | msgid "Installed version:" 313 | msgstr "Installierte Version:" 314 | 315 | #: class-tgm-plugin-activation.php:2591 316 | msgid "Minimum required version:" 317 | msgstr "Erforderlicher Versionsstand:" 318 | 319 | #: class-tgm-plugin-activation.php:2603 320 | msgid "Available version:" 321 | msgstr "Verfügbarer Versionstand:" 322 | 323 | #: class-tgm-plugin-activation.php:2626 324 | msgid "No plugins to install, update or activate." 325 | msgstr "Keine Plugins zu installieren, aktualisieren oder aktivieren." 326 | 327 | #: class-tgm-plugin-activation.php:2640 328 | msgid "Plugin" 329 | msgstr "Plugin" 330 | 331 | #: class-tgm-plugin-activation.php:2641 332 | msgid "Source" 333 | msgstr "Quelle" 334 | 335 | #: class-tgm-plugin-activation.php:2642 336 | msgid "Type" 337 | msgstr "Typ" 338 | 339 | #: class-tgm-plugin-activation.php:2646 340 | msgid "Version" 341 | msgstr "Version" 342 | 343 | #: class-tgm-plugin-activation.php:2647 344 | msgid "Status" 345 | msgstr "Status" 346 | 347 | #. translators: %2$s: plugin name in screen reader markup 348 | #: class-tgm-plugin-activation.php:2696 349 | #, php-format 350 | msgid "Install %2$s" 351 | msgstr "Installiere %2$s" 352 | 353 | #. translators: %2$s: plugin name in screen reader markup 354 | #: class-tgm-plugin-activation.php:2701 355 | #, php-format 356 | msgid "Update %2$s" 357 | msgstr "Aktualisiere %2$s" 358 | 359 | #. translators: %2$s: plugin name in screen reader markup 360 | #: class-tgm-plugin-activation.php:2707 361 | #, php-format 362 | msgid "Activate %2$s" 363 | msgstr "Aktiviere %2$s" 364 | 365 | #: class-tgm-plugin-activation.php:2777 366 | msgid "Upgrade message from the plugin author:" 367 | msgstr "Upgrade-Nachricht des Plugin-Autors:" 368 | 369 | #: class-tgm-plugin-activation.php:2810 370 | msgid "Install" 371 | msgstr "Installieren" 372 | 373 | #: class-tgm-plugin-activation.php:2816 374 | msgid "Update" 375 | msgstr "Aktualisieren" 376 | 377 | #: class-tgm-plugin-activation.php:2819 378 | msgid "Activate" 379 | msgstr "Aktivieren" 380 | 381 | #: class-tgm-plugin-activation.php:2850 382 | msgid "No plugins were selected to be installed. No action taken." 383 | msgstr "" 384 | "Es wurden keine Plugins zur Installation ausgewählt. Nichts wurde verändert." 385 | 386 | #: class-tgm-plugin-activation.php:2852 387 | msgid "No plugins were selected to be updated. No action taken." 388 | msgstr "" 389 | "Es wurden keine Plugins zur Aktualisierung ausgewählt. Nichts wurde " 390 | "verändert." 391 | 392 | #: class-tgm-plugin-activation.php:2893 393 | msgid "No plugins are available to be installed at this time." 394 | msgstr "Zurzeit sind keine Plugins zur Installation verfügbar." 395 | 396 | #: class-tgm-plugin-activation.php:2895 397 | msgid "No plugins are available to be updated at this time." 398 | msgstr "Zurzeit sind keine Plugins zur Aktualisierung verfügbar." 399 | 400 | #: class-tgm-plugin-activation.php:3001 401 | msgid "No plugins were selected to be activated. No action taken." 402 | msgstr "" 403 | "Es wurden keine Plugins zur Aktivierung ausgewählt. Nichts wurde verändert." 404 | 405 | #: class-tgm-plugin-activation.php:3027 406 | msgid "No plugins are available to be activated at this time." 407 | msgstr "Zurzeit sind keine Plugins zur Aktivierung verfügbar." 408 | 409 | #: class-tgm-plugin-activation.php:3251 410 | msgid "Plugin activation failed." 411 | msgstr "Aktivieren des Plugins fehlgeschlagen." 412 | 413 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 414 | #: class-tgm-plugin-activation.php:3591 415 | #, php-format 416 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 417 | msgstr "Aktualisiere Plugin %1$s (%2$d/%3$d)" 418 | 419 | #. translators: 1: plugin name, 2: error message. 420 | #: class-tgm-plugin-activation.php:3594 421 | #, php-format 422 | msgid "An error occurred while installing %1$s: %2$s." 423 | msgstr "" 424 | "Ein Fehler beim Installieren von %1$s ist aufgetreten: %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 "Die Installation von %1$s ist fehlgeschlagen." 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 | "Die Installation und Aktivierung hat begonnen. Dieser Prozess kann einige " 438 | "Zeit in Anspruch nehmen, bitte habe einen Moment Geduld." 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 erfolgreich installiert und aktiviert." 445 | 446 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 447 | msgid "Show Details" 448 | msgstr "Zeige Details" 449 | 450 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 451 | msgid "Hide Details" 452 | msgstr "Details ausblenden" 453 | 454 | #: class-tgm-plugin-activation.php:3603 455 | msgid "All installations and activations have been completed." 456 | msgstr "Alle Installationen und Aktivierungen sind erfolgreich abgeschlossen." 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 "Installieren und Aktivieren von Plugin %1$s (%2$d/%3$d)" 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 | "Die Installation hat begonnen. Dieser Prozess kann einige Zeit in Anspruch " 470 | "nehmen, bitte habe einen Moment Geduld." 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 erfolgreich installiert." 477 | 478 | #: class-tgm-plugin-activation.php:3611 479 | msgid "All installations have been completed." 480 | msgstr "Alle Installationen sind abgeschlossen." 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 "Installiere Plugin %1$s (%2$d/%3$d)" 487 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-en_AU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-en_AU.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-en_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-en_CA.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-en_GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-en_GB.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-eo.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-eo.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-es_ES.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-es_ES.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Spanish (Spain) 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:01+0200\n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "Language: es\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 "Requiere instalar plugins" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Instalar plugins" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Instalando 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 "Algo salió mal con API del 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] "Este tema requiere el siguiente plugin: %1$s." 47 | msgstr[1] "Este tema requiere los siguientes 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] "Este Tema recomienda utilizar el plugin: %1$s." 55 | msgstr[1] "Este Tema recomienda utilizar los 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 | "El siguiente plugin debe actualizarse a la versión más reciente para " 68 | "asegurar la máxima compatibilidad con este tema: %1$s." 69 | msgstr[1] "" 70 | "Los siguientes plugins necesitan actualizarse a la versión más reciente para " 71 | "asegurar la máxima compatibilidad con este 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] "Hay una actualización disponible para: %1$s." 79 | msgstr[1] "Hay actualizaciones disponibles para los siguientes 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] "El siguiente requiere plugin está actualmente inactiva: %1$s." 87 | msgstr[1] "El siguiente requiere los plugins son actualmente inactivos: %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] "Recomienda el siguiente plugin está actualmente inactiva: %1$s." 95 | msgstr[1] "" 96 | "Recomienda lo siguiente los plugins son actualmente inactivos: %1$s." 97 | 98 | #: class-tgm-plugin-activation.php:378 99 | msgid "Begin installing plugin" 100 | msgid_plural "Begin installing plugins" 101 | msgstr[0] "Comenzar a instalar el plugin" 102 | msgstr[1] "Comenzar a instalar plugins" 103 | 104 | #: class-tgm-plugin-activation.php:383 105 | msgid "Begin updating plugin" 106 | msgid_plural "Begin updating plugins" 107 | msgstr[0] "Comenzar la actualización del plugin" 108 | msgstr[1] "Comenzar la actualización de los plugins" 109 | 110 | #: class-tgm-plugin-activation.php:388 111 | msgid "Begin activating plugin" 112 | msgid_plural "Begin activating plugins" 113 | msgstr[0] "Comenzar a activar plugin" 114 | msgstr[1] "Comenzar a activar plugins" 115 | 116 | #: class-tgm-plugin-activation.php:392 117 | msgid "Return to Required Plugins Installer" 118 | msgstr "Volver al instalador de Plugins" 119 | 120 | #: class-tgm-plugin-activation.php:393 class-tgm-plugin-activation.php:920 121 | #: class-tgm-plugin-activation.php:2626 class-tgm-plugin-activation.php:3673 122 | msgid "Return to the Dashboard" 123 | msgstr "Volver al Escritorio" 124 | 125 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 126 | msgid "Plugin activated successfully." 127 | msgstr "Plugin activado correctamente." 128 | 129 | #: class-tgm-plugin-activation.php:395 class-tgm-plugin-activation.php:3045 130 | msgid "The following plugin was activated successfully:" 131 | msgid_plural "The following plugins were activated successfully:" 132 | msgstr[0] "" 133 | msgstr[1] "" 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 se realizó ninguna acción. El plugin %1$s ya estaba activado." 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 desactivado. Necesitas una versión superior de %s para este tema. Por " 149 | "favor, actualiza el 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 "Todos los plugin instalados y activados correctamente. %1$s" 156 | 157 | #: class-tgm-plugin-activation.php:402 158 | msgid "Dismiss this notice" 159 | msgstr "Descartar este aviso" 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 "Por favor, contacta con al administrador de este sitio." 170 | 171 | #: class-tgm-plugin-activation.php:607 172 | msgid "This plugin needs to be updated to be compatible with your theme." 173 | msgstr "Este plugin debe actualizarse para que sea compatible con tu tema." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Requiere actualización" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Establece la variable de configuración parent_slug en su lugar." 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 | "El paquete remoto del plugin no contiene una carpeta con el slug apropiado y " 189 | "no funcionó el cambio de nombre." 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 | "Por favor, ponte en contacto con el autor del plugin y pídele que lo " 197 | "empaquete de acuerdo a las prácticas recomendadas de WordPress." 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 | "El paquete remoto del plugin está compuesto por más de un archivo, pero los " 205 | "archivos no están dentro de una carpeta." 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 "y" 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 "Obligatorio" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "RECOMENDADO" 225 | 226 | #: class-tgm-plugin-activation.php:2385 227 | msgid "WordPress Repository" 228 | msgstr "Repositorio WordPress" 229 | 230 | #: class-tgm-plugin-activation.php:2388 231 | msgid "External Source" 232 | msgstr "Fuente externa" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Pre-empaquetado" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "No Instalado" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Instalado pero no activado" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Activar" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Actualización requerida no disponible" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Requiere actualización" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Actualización recomendada" 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] "Todos (%s)" 276 | msgstr[1] "Todos (%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] "A instalar (%s)" 284 | msgstr[1] "A instalar (%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] "Actualización disponible (%s)" 292 | msgstr[1] "Actualizaciones disponibles (%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] "Para activar (%s)" 300 | msgstr[1] "Para activar (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "desconocido" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Versión instalada:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Versión mínima requerida:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Versión disponible:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "No hay plugins para instalar, actualizar o activar." 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 "Origen" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Clase" 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 "Instalar %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 "Actualizar %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 "Activar %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Mensaje de actualización del autor del plugin:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Instalar" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Actualizar" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Activar:" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "" 380 | "No se han seleccionado plugins para instalar. No se realizará ninguna acción." 381 | 382 | #: class-tgm-plugin-activation.php:2852 383 | msgid "No plugins were selected to be updated. No action taken." 384 | msgstr "" 385 | "No se han seleccionado plugins para actualizar. No se realizará ninguna " 386 | "acción." 387 | 388 | #: class-tgm-plugin-activation.php:2893 389 | msgid "No plugins are available to be installed at this time." 390 | msgstr "No hay plugins disponibles para instalar en este momento." 391 | 392 | #: class-tgm-plugin-activation.php:2895 393 | msgid "No plugins are available to be updated at this time." 394 | msgstr "No hay plugins disponibles para activar en este momento." 395 | 396 | #: class-tgm-plugin-activation.php:3001 397 | msgid "No plugins were selected to be activated. No action taken." 398 | msgstr "" 399 | "No se han seleccionado plugins para instalar. No se realizará ninguna acción." 400 | 401 | #: class-tgm-plugin-activation.php:3027 402 | msgid "No plugins are available to be activated at this time." 403 | msgstr "No hay plugins disponibles para activar en este momento." 404 | 405 | #: class-tgm-plugin-activation.php:3251 406 | msgid "Plugin activation failed." 407 | msgstr "Fallo en la activación de Plugin." 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 "Actualizando 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 | "A ocurrido un error durante la instalación %1$s: %2$s." 421 | 422 | #. translators: 1: plugin name. 423 | #: class-tgm-plugin-activation.php:3596 424 | #, php-format 425 | msgid "The installation of %1$s failed." 426 | msgstr "La instalación de %1$s fallida." 427 | 428 | #: class-tgm-plugin-activation.php:3600 429 | msgid "" 430 | "The installation and activation process is starting. This process may take a " 431 | "while on some hosts, so please be patient." 432 | msgstr "" 433 | "Comienza el proceso de instalación y activación. Este proceso puede tardar " 434 | "un poco en algunos alojamientos, por favor sea paciente." 435 | 436 | #. translators: 1: plugin name. 437 | #: class-tgm-plugin-activation.php:3602 438 | #, php-format 439 | msgid "%1$s installed and activated successfully." 440 | msgstr "%1$s Instalado y activado correctamente." 441 | 442 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 443 | msgid "Show Details" 444 | msgstr "Ver Detalles" 445 | 446 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 447 | msgid "Hide Details" 448 | msgstr "Esconder detalles" 449 | 450 | #: class-tgm-plugin-activation.php:3603 451 | msgid "All installations and activations have been completed." 452 | msgstr "Todas las instalaciones y activaciones se han completado." 453 | 454 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 455 | #: class-tgm-plugin-activation.php:3605 456 | #, php-format 457 | msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)" 458 | msgstr "Instalación y Activación Plugin %1$s (%2$d/%3$d)" 459 | 460 | #: class-tgm-plugin-activation.php:3608 461 | msgid "" 462 | "The installation process is starting. This process may take a while on some " 463 | "hosts, so please be patient." 464 | msgstr "" 465 | "El proceso de instalación ha comenzado. Este proceso puede tardar un poco " 466 | "según el alojamiento, por favor sea paciente." 467 | 468 | #. translators: 1: plugin name. 469 | #: class-tgm-plugin-activation.php:3610 470 | #, php-format 471 | msgid "%1$s installed successfully." 472 | msgstr "%1$s instalado correctamente." 473 | 474 | #: class-tgm-plugin-activation.php:3611 475 | msgid "All installations have been completed." 476 | msgstr "Todas las instalaciones completadas." 477 | 478 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 479 | #: class-tgm-plugin-activation.php:3613 480 | #, php-format 481 | msgid "Installing Plugin %1$s (%2$d/%3$d)" 482 | msgstr "Instalar Plugin %1$s (%2$d/%3$d)" 483 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-fr_FR.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-he_IL.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-hr_HR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-hr_HR.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-it_IT.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-it_IT.po: -------------------------------------------------------------------------------- 1 | # Translation of TGM Plugin Activation in Italian 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: \n" 10 | "Language: it\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 "Installa i Plugins richiesti" 20 | 21 | #: class-tgm-plugin-activation.php:335 22 | msgid "Install Plugins" 23 | msgstr "Installa plugin" 24 | 25 | #. translators: %s: plugin name. 26 | #: class-tgm-plugin-activation.php:337 27 | #, php-format 28 | msgid "Installing Plugin: %s" 29 | msgstr "Installazione 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 "Qualcosa è andato storto con l'API 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] "Questo tema richiede il seguente plugin: %1$s." 47 | msgstr[1] "Questo tema richiede i seguenti plugin: %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] "Questo tema raccomanda il seguente plugin: %1$s." 55 | msgstr[1] "Questo tema raccomanda i seguenti plugin: %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 | "Il seguente plugin deve essere aggiornato per garantire la massima " 68 | "compatibilità con questo tema: %1$s." 69 | msgstr[1] "" 70 | "I seguenti plugin devono essere aggiornati per garantire la massima " 71 | "compatibilità con questo 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] "C'è un aggiornamento disponibile per: %1$s." 79 | msgstr[1] "Sono disponibili degli aggiornamenti per i seguenti plugin: %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] "Il seguente plugin richiesto è al momento inattivo: %1$s." 87 | msgstr[1] "I seguenti plugin richiesti sono al momento inattivi: %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] "Il seguente plugin raccomandato è al momento inattivo: %1$s." 95 | msgstr[1] "I seguenti plugin raccomandati sono al momento inattivi: %1$s." 96 | 97 | #: class-tgm-plugin-activation.php:378 98 | msgid "Begin installing plugin" 99 | msgid_plural "Begin installing plugins" 100 | msgstr[0] "Inizio installazione plugin" 101 | msgstr[1] "Inizio installazione plugin" 102 | 103 | #: class-tgm-plugin-activation.php:383 104 | msgid "Begin updating plugin" 105 | msgid_plural "Begin updating plugins" 106 | msgstr[0] "Iniziare l'aggiornamento del plugin" 107 | msgstr[1] "Iniziare l'aggiornamento dei plugin" 108 | 109 | #: class-tgm-plugin-activation.php:388 110 | msgid "Begin activating plugin" 111 | msgid_plural "Begin activating plugins" 112 | msgstr[0] "Inizio attivazione plugin" 113 | msgstr[1] "Inizio attivazione plugin" 114 | 115 | #: class-tgm-plugin-activation.php:392 116 | msgid "Return to Required Plugins Installer" 117 | msgstr "Ritorna all' Installer del plugin richiesto" 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 "Ritorna alla Bacheca" 123 | 124 | #: class-tgm-plugin-activation.php:394 class-tgm-plugin-activation.php:3252 125 | msgid "Plugin activated successfully." 126 | msgstr "Plugin installato corretamente" 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 "Non verrà eseguita alcuna azione. Il plugin %1$s è già attivo. " 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 | "Il plugin non è stato attivato. Per questo tema è necessaria una versione " 148 | "più recente di %s. Aggiornare il 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 "Tutti i plugin installati e attivati ​​con successo. %1$s" 155 | 156 | #: class-tgm-plugin-activation.php:402 157 | msgid "Dismiss this notice" 158 | msgstr "Elimina questo avviso" 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 "Contattare l'amministratore del sito per chiedere aiuto. " 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "" 173 | "Questo plugin deve essere aggiornato per essere compatibile con il tema. " 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "È richiesto l'aggiornamento " 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Imposta la variabile di configurazione parent_slug" 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 | "Il pacchetto remoto del plugin non contiene una cartella con lo slug " 189 | "desiderato e non è possibile rinominare. " 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 | "Contatta il fornitore del plugin per chiedergli di preparare il plugin " 197 | "secondo le linee guida di WordPress. " 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 | "Il pacchetto remoto del plugin comprende più file ma questi file on sono " 205 | "raggruppati in una cartella. " 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 "e" 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 "Obbligatorio" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Raccomandato" 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 "Fonte esterna " 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 "Non installato" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installato ma non attivato" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Attiva" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "L'aggiornamento richiesto non è disponibile" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Aggiornamento richiesto" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Aggiornamento consigliato" 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] "Tutto (%s)" 276 | msgstr[1] "Tutti (%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] "Installare il (%s)" 284 | msgstr[1] "Installare i (%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] "Aggiornamento disponibile (%s)" 292 | msgstr[1] "Aggiornamenti disponibili (%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] "Attivare il (%s)" 300 | msgstr[1] "Attivare i (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "sconosciuto" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Versione installata:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Versione minima richiesta:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Versione disponibile:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "Nessun plugin da installare, aggiornare o attivare." 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Plugin (estensione)" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Sorgente" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Typo" 334 | 335 | #: class-tgm-plugin-activation.php:2646 336 | msgid "Version" 337 | msgstr "Versione" 338 | 339 | #: class-tgm-plugin-activation.php:2647 340 | msgid "Status" 341 | msgstr "Stato" 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 "Installa %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 "Aggiorna %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 "Attiva %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Messaggio di aggiornamento dall'autore del plugin:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Installa" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Aggiornare" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Attivare" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "" 380 | "Nessun plugin è stato selezionato per l'installazione. L'azione non è stata " 381 | "eseguita" 382 | 383 | #: class-tgm-plugin-activation.php:2852 384 | msgid "No plugins were selected to be updated. No action taken." 385 | msgstr "" 386 | "Nessun plugin è stato selezionato per l'aggiornamento. L'azione non è stata " 387 | "eseguita" 388 | 389 | #: class-tgm-plugin-activation.php:2893 390 | msgid "No plugins are available to be installed at this time." 391 | msgstr "Nessun plugin è disponibile per l'installazione. " 392 | 393 | #: class-tgm-plugin-activation.php:2895 394 | msgid "No plugins are available to be updated at this time." 395 | msgstr "Nessun plugin è al momento disponibile per l'aggiornamento. " 396 | 397 | #: class-tgm-plugin-activation.php:3001 398 | msgid "No plugins were selected to be activated. No action taken." 399 | msgstr "" 400 | "Nessun plugin è stato selezionato per l'attivazione. L'azione non è stata " 401 | "eseguita. " 402 | 403 | #: class-tgm-plugin-activation.php:3027 404 | msgid "No plugins are available to be activated at this time." 405 | msgstr "Nessun plugin è disponibile per l'attivazione. " 406 | 407 | #: class-tgm-plugin-activation.php:3251 408 | msgid "Plugin activation failed." 409 | msgstr "Attivazione plugin fallita" 410 | 411 | #. translators: 1: plugin name, 2: action number 3: total number of actions. 412 | #: class-tgm-plugin-activation.php:3591 413 | #, php-format 414 | msgid "Updating Plugin %1$s (%2$d/%3$d)" 415 | msgstr "Aggiornamento plugin %1$s (%2$d/%3$d)" 416 | 417 | #. translators: 1: plugin name, 2: error message. 418 | #: class-tgm-plugin-activation.php:3594 419 | #, php-format 420 | msgid "An error occurred while installing %1$s: %2$s." 421 | msgstr "Errore durante l'installazione %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 "L'installazione di %1$s fallita" 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 | "Il processo di installazione e l'attivazione sta iniziando. Questo processo " 435 | "può richiedere tempo su alcuni host, quindi per favore sii paziente." 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 installato e attivato con successo" 442 | 443 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 444 | msgid "Show Details" 445 | msgstr "Mostra dettagli" 446 | 447 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 448 | msgid "Hide Details" 449 | msgstr "Nascondi dettagli" 450 | 451 | #: class-tgm-plugin-activation.php:3603 452 | msgid "All installations and activations have been completed." 453 | msgstr "Tutte le installazioni e le attivazioni sono state completate." 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 "Installo e attivo 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 | "Il processo di installazione si avvia. Questo processo può richiedere tempo " 467 | "su alcuni host, quindi per favore sii paziente." 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 installato con successo" 474 | 475 | #: class-tgm-plugin-activation.php:3611 476 | msgid "All installations have been completed." 477 | msgstr "Tutte le installazioni sono state completate." 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 "Installazione Plugin %1$s (%2$d/%3$d)" 484 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-nl_NL.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-pt_BR.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-ro_RO.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-ru_RU.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-sr_RS.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/TGM-Plugin-Activation-2.6.1/languages/tgmpa-sv_SE.mo -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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-05-19 03:05+0200\n" 8 | "Last-Translator: \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.7\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ägget 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ägg aktiverats 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 | 166 | #: class-tgm-plugin-activation.php:404 167 | msgid "Please contact the administrator of this site for help." 168 | msgstr "Var god kontakta hemsidans administratör för att få hjälp." 169 | 170 | #: class-tgm-plugin-activation.php:607 171 | msgid "This plugin needs to be updated to be compatible with your theme." 172 | msgstr "" 173 | "Detta tillägg behöver uppdateras för att vara kompatibelt med ditt tema." 174 | 175 | #: class-tgm-plugin-activation.php:608 176 | msgid "Update Required" 177 | msgstr "Uppdatering behövs" 178 | 179 | #: class-tgm-plugin-activation.php:725 180 | msgid "Set the parent_slug config variable instead." 181 | msgstr "Använd parent_slug konfigurationsvariabelen istället." 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 | "Tilläggspaketet på servern innehåller ej en mapp som har önskad slug och det " 189 | "gick inte att byta namnet." 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 | "Var god kontakta tilläggsleverantör och begära att de ska förpacka deras " 197 | "tillägg enligt WordPressriktlinjerna." 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 | "Tilläggspaketet på servern bestå av mer än en fil, men filerna förpackats " 205 | "inte i en mapp." 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 "och" 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 "Behövde" 221 | 222 | #: class-tgm-plugin-activation.php:2369 223 | msgid "Recommended" 224 | msgstr "Rekommenderade" 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 "Extern källa" 233 | 234 | #: class-tgm-plugin-activation.php:2391 235 | msgid "Pre-Packaged" 236 | msgstr "Förpackad" 237 | 238 | #: class-tgm-plugin-activation.php:2408 239 | msgid "Not Installed" 240 | msgstr "Ej installerad" 241 | 242 | #: class-tgm-plugin-activation.php:2412 243 | msgid "Installed But Not Activated" 244 | msgstr "Installerad men inte aktiverad" 245 | 246 | #: class-tgm-plugin-activation.php:2414 247 | msgid "Active" 248 | msgstr "Aktiv" 249 | 250 | #: class-tgm-plugin-activation.php:2420 251 | msgid "Required Update not Available" 252 | msgstr "Obligatorisk uppdatering saknas" 253 | 254 | #: class-tgm-plugin-activation.php:2423 255 | msgid "Requires Update" 256 | msgstr "Uppdatering behövs" 257 | 258 | #: class-tgm-plugin-activation.php:2426 259 | msgid "Update recommended" 260 | msgstr "Uppdatering rekommenderades" 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] "Alla (%s)" 276 | msgstr[1] "Alla (%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] "För att installera (%s)" 284 | msgstr[1] "För att installera (%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] "Uppdatering tillgänglig (%s)" 292 | msgstr[1] "Uppdatering tillgänglig (%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] "För att aktivera (%s)" 300 | msgstr[1] "För att aktivera (%s)" 301 | 302 | #: class-tgm-plugin-activation.php:2575 303 | msgctxt "as in: \"version nr unknown\"" 304 | msgid "unknown" 305 | msgstr "okänt" 306 | 307 | #: class-tgm-plugin-activation.php:2583 308 | msgid "Installed version:" 309 | msgstr "Installerade version:" 310 | 311 | #: class-tgm-plugin-activation.php:2591 312 | msgid "Minimum required version:" 313 | msgstr "Lägsta version som stöds:" 314 | 315 | #: class-tgm-plugin-activation.php:2603 316 | msgid "Available version:" 317 | msgstr "Tillgänglig version:" 318 | 319 | #: class-tgm-plugin-activation.php:2626 320 | msgid "No plugins to install, update or activate." 321 | msgstr "Inga tillägg att installera, uppdatera eller aktivera." 322 | 323 | #: class-tgm-plugin-activation.php:2640 324 | msgid "Plugin" 325 | msgstr "Tillägg" 326 | 327 | #: class-tgm-plugin-activation.php:2641 328 | msgid "Source" 329 | msgstr "Källa" 330 | 331 | #: class-tgm-plugin-activation.php:2642 332 | msgid "Type" 333 | msgstr "Typ" 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 "Installera %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 "Uppdatera %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 "Aktivera %2$s" 360 | 361 | #: class-tgm-plugin-activation.php:2777 362 | msgid "Upgrade message from the plugin author:" 363 | msgstr "Uppgraderingsmeddelande från tilläggets utvecklare:" 364 | 365 | #: class-tgm-plugin-activation.php:2810 366 | msgid "Install" 367 | msgstr "Installera" 368 | 369 | #: class-tgm-plugin-activation.php:2816 370 | msgid "Update" 371 | msgstr "Uppdatera" 372 | 373 | #: class-tgm-plugin-activation.php:2819 374 | msgid "Activate" 375 | msgstr "Aktivera" 376 | 377 | #: class-tgm-plugin-activation.php:2850 378 | msgid "No plugins were selected to be installed. No action taken." 379 | msgstr "Inga tillägg valdes för att installera. Ingen åtgärd utfördes." 380 | 381 | #: class-tgm-plugin-activation.php:2852 382 | msgid "No plugins were selected to be updated. No action taken." 383 | msgstr "Inga tillägg valdes för att uppdatera. Ingen åtgärd utfördes." 384 | 385 | #: class-tgm-plugin-activation.php:2893 386 | msgid "No plugins are available to be installed at this time." 387 | msgstr "Inga tillägg är tillgängliga för att installera vid denna tidpunkt." 388 | 389 | #: class-tgm-plugin-activation.php:2895 390 | msgid "No plugins are available to be updated at this time." 391 | msgstr "Inga tillägg är tillgängliga för att uppdatera vid denna tidpunkt." 392 | 393 | #: class-tgm-plugin-activation.php:3001 394 | msgid "No plugins were selected to be activated. No action taken." 395 | msgstr "Inga tillägg valdes för att aktivera. Ingen åtgärd utfördes." 396 | 397 | #: class-tgm-plugin-activation.php:3027 398 | msgid "No plugins are available to be activated at this time." 399 | msgstr "Inga tillägg är tillgängliga för att aktivera vid denna tidpunkt." 400 | 401 | #: class-tgm-plugin-activation.php:3251 402 | msgid "Plugin activation failed." 403 | msgstr "Aktivering av tillägg lyckades ej." 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 "Uppdaterar tillägg %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 "Ett fel uppstöd under installation av %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 "Installationen av %1$s lyckades ej." 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 | "Installation- och aktiveringsprocess påbörjar. Denna process kan ta lite tid " 429 | "på vissa värdar - var god vänta." 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 installerades och aktiverades utan fel." 436 | 437 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 438 | msgid "Show Details" 439 | msgstr "Visa detaljer" 440 | 441 | #: class-tgm-plugin-activation.php:3602 class-tgm-plugin-activation.php:3610 442 | msgid "Hide Details" 443 | msgstr "Dölja detaljer" 444 | 445 | #: class-tgm-plugin-activation.php:3603 446 | msgid "All installations and activations have been completed." 447 | msgstr "Alla installationer och aktiveringar har utförts." 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 "Installerar och aktiverar tillägg %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 | "Installationsprocessen påbörjar. Denna process kan ta lite tid på vissa " 461 | "värdar - var god vänta." 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 installerades utan fel." 468 | 469 | #: class-tgm-plugin-activation.php:3611 470 | msgid "All installations have been completed." 471 | msgstr "Alla installationer har utförts." 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 "Installerar tillägg %1$s (%2$d/%3$d)" 478 | -------------------------------------------------------------------------------- /theme/TGM-Plugin-Activation-2.6.1/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 | -------------------------------------------------------------------------------- /theme/functions.php: -------------------------------------------------------------------------------- 1 | 'WordPress REST API (Version 2)', 17 | 'slug' => 'rest-api', 18 | 'source' => get_stylesheet_directory() . '/plugins/rest-api.2.0-beta15.zip', 19 | 'required' => true, 20 | 'version' => '', 21 | 'force_activation' => false, 22 | 'force_deactivation' => false, 23 | 'external_url' => '', 24 | 'is_callable' => '', 25 | ), 26 | ); 27 | 28 | $config = array(); 29 | 30 | tgmpa( $plugins, $config ); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /theme/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?php 7 | wp_title( '|', 'true', 'right' ); 8 | bloginfo( 'name' ); 9 | ?> 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Loading...!! 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /theme/plugins/rest-api.2.0-beta15.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemdemo/wordpress-restapi-angular2/7ae30d660921be3cc7656dad4c166f322327dbeb/theme/plugins/rest-api.2.0-beta15.zip -------------------------------------------------------------------------------- /theme/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: RestAPI Angular 3 | Author: Artem Demo 4 | Version: 1.0 5 | */ 6 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES5", 4 | "module": "commonjs", 5 | "emitDecoratorMetadata": true, 6 | "experimentalDecorators": true, 7 | "sourceMap": true, 8 | "noEmitHelpers": true, 9 | "noUnusedLocals": true, 10 | "noUnusedParameters": true, 11 | "lib": ["es2015", "dom"] 12 | }, 13 | "compileOnSave": false, 14 | "buildOnSave": false, 15 | "awesomeTypescriptLoaderOptions": { 16 | "forkChecker": true, 17 | "useWebpackText": true 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const CopyWebpackPlugin = require('copy-webpack-plugin'); 2 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 3 | const CleanWebpackPlugin = require('clean-webpack-plugin'); 4 | const ContextReplacementPlugin = require('webpack').ContextReplacementPlugin; 5 | const DefinePlugin = require('webpack').DefinePlugin; 6 | const path = require('path'); 7 | 8 | const isProduction = process.env.NODE_ENV === 'production'; 9 | 10 | module.exports = { 11 | entry: { 12 | app: './source/index.ts', 13 | }, 14 | devtool: 'source-map', 15 | output: { 16 | path: `${__dirname}/theme`, 17 | filename: './js/bundle.js', 18 | publicPath: '/', 19 | }, 20 | resolve: { 21 | extensions: ['.js', '.ts', '.tsx'], 22 | }, 23 | module: { 24 | loaders: [ 25 | { 26 | test: /\.tsx?$/, 27 | loaders: ['ts-loader'], 28 | exclude: /node_modules/, 29 | }, 30 | { 31 | test: /\.(css|less)$/, 32 | loaders: ['to-string-loader', 'css-loader', 'less-loader'], 33 | }, 34 | {test: /\.(png|gif|jpg)(\?.*$|$)/, loader: 'url-loader?limit=100000&name=images/[hash].[ext]'}, 35 | {test: /\.(json)(\?.*$|$)/, loader: 'json-loader'}, 36 | {test: /\.(html)(\?.*$|$)/, loader: 'html-loader'}, 37 | // Font Definitions 38 | {test: /\.(svg)(\?.*$|$)/, loader: 'url-loader?limit=65000&mimetype=image/svg+xml&name=fonts/[name].[ext]'}, 39 | {test: /\.(woff)(\?.*$|$)/, loader: 'url-loader?limit=65000&mimetype=application/font-woff&name=fonts/[name].[ext]'}, 40 | {test: /\.(woff2)(\?.*$|$)/, loader: 'url-loader?limit=65000&mimetype=application/font-woff2&name=fonts/[name].[ext]'}, 41 | {test: /\.([ot]tf)(\?.*$|$)/, loader: 'url-loader?limit=65000&mimetype=application/octet-stream&name=fonts/[name].[ext]'}, 42 | {test: /\.(eot)(\?.*$|$)/, loader: 'url-loader?limit=65000&mimetype=application/vnd.ms-fontobject&name=fonts/[name].[ext]'}, 43 | ], 44 | }, 45 | plugins: [ 46 | new DefinePlugin({ 47 | ENV: {production: isProduction}, 48 | }), 49 | 50 | new ExtractTextPlugin('./css/styles.css'), 51 | 52 | new CleanWebpackPlugin([ 53 | './www/wp-content/themes/restapi-angular' 54 | ], { 55 | verbose: true, 56 | dry: false, 57 | root: path.resolve(__dirname, './'), 58 | exclude: ['.gitignore'], 59 | }), 60 | 61 | new CopyWebpackPlugin([ 62 | { 63 | from: 'theme', 64 | to: '../www/wp-content/themes/restapi-angular', 65 | }, 66 | ]), 67 | 68 | // Workaround needed for angular 2 angular/angular#11580 69 | new ContextReplacementPlugin( 70 | /angular(\\|\/)core(\\|\/)@angular/, 71 | './source' 72 | ), 73 | ], 74 | }; 75 | -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /www/README.md: -------------------------------------------------------------------------------- 1 | ## WP dev directory 2 | 3 | Dev directory for storing wordpress CMS. 4 | --------------------------------------------------------------------------------