f0a27b5d by Jeff Balicki

resource fixed

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 333bb999
Showing 1000 changed files with 3165 additions and 0 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

# Contributing to this project
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
Following these guidelines will help us get back to you more quickly, and will show that you care about making FakerPress better just like we do. In return, we'll do our best to respond to your issue or pull request as soon as possible with the same respect.
## Use the issue tracker
The [issue tracker](https://github.com/bordoni/fakerpress/issues) is the preferred channel for [bug reports](#bugs), [features requests](#features) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
* Support issues or usage questions that are not bugs should be posted on the [Plugin Support Forum](http://wordpress.org/support/plugin/fakerpress).
* Please **do not** derail or troll issues. Keep the discussion on topic and respect the opinions of others.
* Make sure to read all the [labels below](#tracker-labels) to avoid confusion on status of each issue
<a name="tracker-labels"></a>
## Labels on issue tracker
There is an idea behind this naming convetion, and we will stick to it because it's faily important to keep thing tidy if we want to move forward fast and clean.
We will split the labels in two pieces, groups of labels and a label name, following the pattern below:
```html
<label-group>:<label-name>
```
Below you will find a list of fixed ones and it's explanations and what variables we might have:
#### Group: "Type"
* `type:bug`
* `type:feature`
* `type:l18n`
* `type:3rd_party`
* `type:invalid`
* `type:enhancement`
#### Group: "Status"
* `status:confirmed`
* `status:in_progress`
* `status:incomplete`
* `status:rejected`
* `status:pull_requested`
* `status:resolved`
* `status:testing`
* `status:on_hold`
#### Group: "Information"
* `info:feedback`
* `info:help`
<a name="bugs"></a>
## Bug reports
A bug is a _demonstrable problem_ that is caused by the code in the repository. Good bug reports with complete error messages, environment details and screenshots are extremely helpful &mdash; thank you!
Guidelines for bug reports:
1. **Check if the bug has already been fixed** &mdash; Someone may already be on top of it, so try to reproduce it using the latest from the `master` branch.
2. **Use the [GitHub issue search](https://github.com/bordoni/fakerpress/search?type=Issues)** &mdash; Someone might already know about it, so please check if the issue has already been reported.
3. **Isolate the problem** &mdash; The better you can determine exactly what behavior(s) cause the issue, the faster and more effectively it can be resolved. “I’m getting an error message.” is not a good bug report. A good bug report shouldn't leave others needing to contact you for more information.
Please try to be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What browser(s) experience the problem? What outcome did you expect, and how did it differ from what you actually saw? All these details will help people to fix any potential bugs.
Example:
> Short and descriptive example bug report title
>
> A summary of the issue and the environment/browser in which it occurs. If
> suitable, include the steps required to reproduce the bug.
>
> 1. This is the first step
> 2. This is the second step
> 3. Further steps, etc.
>
> Any other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).
**Note:** In an effort to keep open issues to a manageable number, we will close any issues that do not provide enough information for us to be able to work on a solution. You will be encouraged to provide the necessary details, after which we will reopen the issue.
<a name="features"></a>
## Feature requests
Feature requests are very welcome! But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to *you* to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible.
Building something great means choosing features carefully especially because it is much, much easier to add features than it is to take them away. Additions to FakerPress will be evaluated on a combination of scope (how well it fits into the project), maintenance burden and general usefulness to users.
<a name="pull-requests"></a>
## Pull requests
Good pull requests &mdash; patches, improvements, new features &mdash; are a fantastic help.
They should remain focused in scope and avoid containing unrelated commits.
**Please ask first** before embarking on any significant pull request (e.g. implementing features, refactoring code), otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project. You can solicit feedback and opinions in an open enhancement issue, or [create a new one](https://github.com/bordoni/fakerpress/issues/new).
Please use the [git flow for pull requests](#git-flow) and follow [WordPress Coding Standards](http://make.wordpress.org/core/handbook/coding-standards/) before submitting your work. Adhering to these guidelines is the best way to get your work included in FakerPress.
<a name="git-flow"></a>
#### Git Flow for pull requests
1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes:
```bash
# Clone your fork of the repo into the current directory
git clone git@github.com:<YOUR_USERNAME>/fakerpress.git
# Navigate to the newly cloned directory
cd fakerpress
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/bordoni/fakerpress
```
2. If you cloned a while ago, get the latest changes from upstream:
```bash
git checkout master
git pull upstream master
```
3. Create a new topic branch (off the `master` branch) to contain your feature, change, or fix:
```bash
git checkout -b <topic-branch-name>
```
4. Commit your changes in logical chunks. Please adhere to these [git commit message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) or your code is unlikely be merged into the main project. Use Git's [interactive rebase](https://help.github.com/articles/interactive-rebase) feature to tidy up your commits before making them public.
5. Locally merge (or rebase) the upstream development branch into your topic branch:
```bash
git pull [--rebase] upstream master
```
6. Push your topic branch up to your fork:
```bash
git push origin <topic-branch-name>
```
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) (with a clear title and description) to the `master` branch.
**IMPORTANT**: By submitting a patch, you agree to allow the project owner to license your work under the [GPL v2 license](http://www.gnu.org/licenses/gpl-2.0.html).
<?php
/**
* Plugin Name: FakerPress
* Plugin URI: https://fakerpress.com
* Description: FakerPress is a clean way to generate fake data to your WordPress installation, great for developers who need testing
* Version: 0.5.3
* Author: Gustavo Bordoni
* Author URI: http://bordoni.me
* Text Domain: fakerpress
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/bordoni/fakerpress
*/
// Need to store this variable before leaving this file
define( '__FP_FILE__', __FILE__ );
/**
* To allow internationalization for the errors strings the text domain is
* loaded in a 5.2 way, no Fatal Errors, only a message to the user.
*
* @return bool;
*/
function _fp_l10n() {
// Doing that to use the real folder that the plugin is living, not a static string
$plugin_folder = str_replace( DIRECTORY_SEPARATOR . basename( __FILE__ ), '', plugin_basename( __FP_FILE__ ) );
return load_plugin_textdomain( 'fakerpress', false, $plugin_folder . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR );
}
add_action( 'plugins_loaded', '_fp_l10n' );
/**
* Version compare to PHP 5.3, so we can use namespaces, anonymous functions
* and a lot of packages require 5.3, so...
*
* For now 3.8 or bigger is needed for the admin interface, later on the
* intention is to bring this number lower
*/
if ( PHP_VERSION_ID < 50600 ) {
if ( ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) && is_admin() ) {
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( ! is_plugin_active( plugin_basename( __FP_FILE__ ) ) ) {
wp_print_styles( 'open-sans' );
echo "<style>body{margin: 0 2px;font-family: 'Open Sans',sans-serif;font-size: 13px;line-height: 1.5em;}</style>";
echo wp_kses_post( __( '<b>FakerPress</b> requires PHP 5.6 or higher, and the plugin has now disabled itself.', 'fakerpress' ) ) .
'<br />' .
esc_attr__( 'To allow better control over dates, advanced security improvements and performance gain.', 'fakerpress' ) .
'<br />' .
esc_attr__( 'Contact your Hosting or your system administrator and ask for this Upgrade to version 5.6 of PHP.', 'fakerpress' );
exit;
}
deactivate_plugins( __FP_FILE__ );
}
} else {
require_once plugin_dir_path( __FP_FILE__ ) . 'load.php';
}
<?php // Silence is Golden
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Assamese
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: as_IN\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "South Georgia"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "ছিংগাপুৰ"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Samoa"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "San Marino"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "কাটাৰ"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Puerto Rico"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "পানামা"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palau"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niue"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauru"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Mayotte"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "মৰিচাছ"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martinique"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "মাল্টা"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "মালডিভিচ"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macau"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "লাক্স্যেমবাৰ্গ"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "কুৱেইট"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Jersey"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "জামাইকা"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Isle of Man"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "হংকং"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guyana"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "গুৱাট্যেমালা"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Guernsey"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Grenada"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Guadeloupe"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Gibraltar"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "ফিজি"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "এল চালভাড'ৰ"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Dominica"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Djibouti"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "ক'ষ্টা ৰিকা"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Cape Verde"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "ব্ৰুনেই"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "বাৰ্মুডা"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Belize"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "বাৰ্বাডোজ"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "বাহৰেইন"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Aruba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "অষ্ট্ৰেলিয়া"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "আৰ্জেন্টিনা"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Anguilla"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorra"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in South Azerbaijani
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: az_IR\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "گرجستان جنوبی"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "سنگاپور"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "ساموآ"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "سن‌مارینو"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "قطر"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "پورتوریکو"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "پاناما"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "پالائو"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "نیواِی"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "نائورو"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "مونتسرات"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "موناکو"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "مایوت"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "مائوریتی"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "مارتینیک"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "مالت"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "مالدیو"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "ماکایو"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "لوکزامبورگ"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "کویت"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "جرسی"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "جاماییکا"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "جزیره من"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "هنگ‌کنگ"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "گویانا"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "گواتمالا"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "گرنزی"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "گوام"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "گرانادا"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "گوادالوپ"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "جبل‌الطارق"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "فیجی"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "السالوادور"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "دومینیکا"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "جیبوتی"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "کاستاریکا"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "کیپ‌ورد"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "برونئی"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "برمودا"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "بلیز"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "باربادوس"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "بحرین"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "آروبا"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "استرالیا"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "آرژنتینا"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "آنگوییلا"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "آندورا"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Balochi Southern
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: bcc_PK\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "زربارجورجیا"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "سنگاپور"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "ساموآ"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "سین مارینو"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "قطر"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "پیورٹوریکو"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "پاناما"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "پالائو"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "نیواِی"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "نائورو"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "مونٹسیراٹ"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "موناکو"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "مایوٹ"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "مروشیس"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "مارٹینیق"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "مالت"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "مالدیو"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "مکاوٗ"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "لوکزامبورگ"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "کویت"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "جرسی"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "جمائکا"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "جزیره من"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "ہانک کانگ"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "گویانا"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "گواتمالا"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "گوورنسے"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "گوام"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "گرینادا"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "گوادالوپ"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "گبرالتار"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "فیجی"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "السالوادور"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "دومینیکا"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "جیبوتی"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "کوسٹا ریکا"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "کیپ وردی"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "بیرونی"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "برمودا"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "بلیز"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "باربادوس"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "بحرین"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "آروبا"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "آسٹریلیا"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "ارجنٹینا"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "آنگوییلا"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "انڈورا"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Cebuano
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: ceb_PH\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "South Georgia"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singapore"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Samoa"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "San Marino"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Qatar"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Puerto Rico"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Panama"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palau"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niue"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauru"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Mayotte"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Mauritius"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martinique"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malta"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Maldives"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macau"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Luxembourg"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Kuwait"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Jersey"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Jamaica"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Isle of Man"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Hong Kong"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guyana"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Guatemala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Guernsey"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Grenada"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Guadeloupe"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Gibraltar"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Fiji"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "El Salvador"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Dominica"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Djibouti"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Costa Rica"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Cape Verde"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brunei"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Bermuda"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Belize"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Bardados"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Bahrain"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Aruba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Australia"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "Argentina"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Anguilla"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorra"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Kurdish (Sorani)
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-05 19:55:35+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: ku_IQ\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "جۆرجیای باشور"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "سینگاپور"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "سان مارینۆ"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "ساموا"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "قەتەر"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "پاناما"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "پالاو"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "نایوێ"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "نەوڕوو"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "مۆنتسیرات"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "مۆناکۆ"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "مایۆت"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "مۆریشیۆس"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "مازاتلان"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "ماڵتا"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "ماڵدیڤ"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "ماکاو"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "لوکسەمبورگ"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "کوەیت"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "جێرسی "
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "جامایکا"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "ئایلۆف مان "
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "هۆنگ کۆنگ"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "غیرینسی "
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "گوام"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "گریندا"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "جەبەل تاریق "
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "فیجی"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "جیبوتی"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "کۆستا ریکا "
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "کەیپ ڤەردی "
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "برونای"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "بەرمۆدا"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "بەحرەین"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "ئوسترالیا"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "ئروبە "
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "ئەرجەنتین"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "ئەندۆرا"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Corsican
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-03-23 15:06:42+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: co_IT\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-field.php:1138
msgid "Name"
msgstr "Nome"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Dhivehi
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: dv_MV\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "ސައުތު ޖޯޖިޔާ"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "ސިންގަޕޫރު"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "ސަމާއޯ"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "ސަން މާރިއޯ"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "ޤަތަރު"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "ޕިއުޓޯ ރިކޯ"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "ޕެނަމާ"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "ޕަލައު"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "ނިއުއޭ"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "ނައުރޫ"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "މޮންޓްސެރަޓް"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "މޮނާކޯ"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "މަޔޮއްޓޭ"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "މޮރިޝަސް"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "މާޓިނިކިއު"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "މަލްޓާ"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "ދިވެހިރާއްޖެ"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "މަކާއޫ"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "ލަކްޒަމްބާގް"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "ކުވޭތު"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "ޖާރޒީ"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "ޖަމައިކާ"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "އިސުލް އޮފް މޭން"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "ހޮންކޮން"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "ގުޔާނާ"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "ގުއެޓަމާލާ"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "ގުއެންސޭ"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "ގުއަމް"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "ގްރެނަޑާ"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "ގުއެޑެލޯޕް"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "ގިބްރަލްޓާ"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "ފިޖީ"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "އެލް ސަލްވަޑޯ"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "ޑޮމިނިކާ"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "ޖިބޯޓީ"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "ކޮސްޓަރިކާ"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "ކޭޕް ވާޑެ"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "ބުރުނާއީ"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "ބާމިއުޑާ"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "ބެލިޒް"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "ބާބަޑޮސް"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "ބަހްރެއިން"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "އަރޫބާ"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "އޮސްޓްރޭލިޔާ"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "އާޖެންޓީނާ"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "އެންގުއިލާ"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "އެންޑޯރާ"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Esperanto
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-06 13:50:56+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: eo\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "Sud-Georgio kaj Sud-Sandviĉinsuloj"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singapuro"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Usona Samoo"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "Sanmarino"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Kataro"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Puertoriko"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Panamo"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palaŭo"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niuo"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauro"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Moncerato"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monako"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Majoto"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Maŭricio"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martiniko"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malto"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Maldivoj"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Makao"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Luksemburgurbo"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Kuvajto"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Ĵerzejo"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Jamajko"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Manksinsulo"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Hongkongo"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Gujano"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Gvatemalo"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Gernezejo"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Gvamo"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Grenado"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Gvadelupo"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Ĝibraltaro"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Fiĝio"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "Salvadoro"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Dominiko"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Ĝibutio"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Kostariko"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Kaboverdo"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brunejo"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Bermudoj"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Belizo"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Barbado"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Barejno"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Arubo"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Aŭstralio"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "Argentino"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Angvilo"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andoro"
#: inc/class-fp-dates.php:19
msgid "Today"
msgstr "Hodiaŭ"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Spanish (Guatemala)
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: es_GT\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "South Georgia"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singapur"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Samoa"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "San Marino"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Qatar"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Puerto Rico"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Panamá"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palau"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niue"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauru"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Mónaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Mayotte"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Mauricio"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martinica"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malta"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Maldivas"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macau"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Luxemburgo"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Kuwait"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Jersey"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Jamaica"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Isle of Man"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Hong Kong"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guyana"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Guatemala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Guernsey"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Grenada"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Guadeloupe"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Gibraltar"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Fiyi"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "El Salvador"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Dominica"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Djibouti"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Costa Rica"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Cabo Verde"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brunei"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Bermuda"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Belize"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Barbados"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Bahrain"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Aruba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Australia"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "Argentina"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Anguilla"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorra"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Persian (Afghanistan)
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: fa\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "گرجستان جنوبی"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "سنگاپور"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "ساموآ"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "سن‌مارینو"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "قطر"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "پورتوریکو"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "پاناما"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "پالائو"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "نیواِی"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "نائورو"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "مونتسرات"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "موناکو"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "مایوت"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "مائوریتی"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "مارتینیک"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "مالت"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "مالدیو"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "ماکایو"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "لوکزامبورگ"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "کویت"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "جرسی"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "جاماییکا"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "جزیره من"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "هنگ‌کنگ"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "گویانا"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "گواتمالا"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "گرنزی"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "گوام"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "گرانادا"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "گوادالوپ"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "جبل‌الطارق"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "فیجی"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "السالوادور"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "دومینیکا"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "جیبوتی"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "کاستاریکا"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "کیپ‌ورد"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "برونئی"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "برمودا"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "بلیز"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "باربادوس"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "بحرین"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "آروبا"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "استرالیا"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "آرژنتینا"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "آنگوییلا"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "آندورا"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in French (Belgium)
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: fr_BE\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "Île de Géorgie du Sud"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singapour"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Samoa"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "Saint-Marin"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Qatar"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Porto Rico"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Panama"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palaos"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niué"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauru"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Mayotte"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Île Maurice"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martinique"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malte"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Maldives"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macao"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Luxembourg"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Koweït"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Jersey"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Jamaïque"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Île de Man"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Hong Kong"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guyane"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Guatemala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Guernsey"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Grenade"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Guadeloupe"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Gibraltar"
#: inc/class-fp-utils.php:566
msgid "Georgia"
msgstr "Georgia"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Fidji"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "Salvador"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Dominique"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Djibouti"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Costa Rica"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Cap-Vert"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brunei"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Bermudes"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Belize"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Barbade"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Bahreïn"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Aruba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Australie"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "Argentine"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Anguilla"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorre"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in French (Canada)
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2019-06-17 01:22:25+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: fr_CA\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "Île de Géorgie du Sud"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singapour"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Samoa"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "Saint-Marin"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Qatar"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Porto Rico"
#: inc/class-fp-utils.php:1036
msgid "Poland"
msgstr "Pologne"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Panama"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palaos"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niue"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauru"
#: inc/class-fp-utils.php:901
msgid "Morocco"
msgstr "Maroc"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Mayotte"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Île Maurice"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martinique"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malte"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Maldives"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macao"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Luxembourg"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Koweït"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Jersey"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Jamaïque"
#: inc/class-fp-utils.php:706
msgid "Italy"
msgstr "Italie"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Île de Man"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Hong Kong"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guyane"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Guatemala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Guernsey"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Grenade"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Guadeloupe"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Gibraltar"
#: inc/class-fp-utils.php:556
msgid "Gabon"
msgstr "Gabon"
#: inc/class-fp-utils.php:536
msgid "France"
msgstr "France"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Fidji"
#: inc/class-fp-utils.php:531
msgid "Finland"
msgstr "Finlande"
#: inc/class-fp-utils.php:516
msgid "Falkland Islands"
msgstr "Îles Falkland"
#: inc/class-fp-utils.php:521
msgid "Faroe Islands"
msgstr "Îles Féroé"
#: inc/class-fp-utils.php:501
msgid "Eritrea"
msgstr "Érythrée"
#: inc/class-fp-utils.php:506
msgid "Estonia"
msgstr "Estonie"
#: inc/class-fp-utils.php:511
msgid "Ethiopia"
msgstr "Éthiopie"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "El Salvador"
#: inc/class-fp-utils.php:496
msgid "Equatorial Guinea"
msgstr "Guinée équatoriale"
#: inc/class-fp-utils.php:476
msgid "Dominican Republic"
msgstr "République dominicaine"
#: inc/class-fp-utils.php:481
msgid "Ecuador"
msgstr "Équateur"
#: inc/class-fp-utils.php:486
msgid "Egypt"
msgstr "Égypte"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Dominique"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Djibouti"
#: inc/class-fp-utils.php:456
msgid "Czech Republic"
msgstr "République Tchèque"
#: inc/class-fp-utils.php:461
msgid "Denmark"
msgstr "Danemark"
#: inc/class-fp-utils.php:436
msgid "Croatia"
msgstr "Croatie"
#: inc/class-fp-utils.php:441
msgid "Cuba"
msgstr "Cuba"
#: inc/class-fp-utils.php:451
msgid "Cyprus"
msgstr "Chypre"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Costa Rica"
#: inc/class-fp-utils.php:426
msgid "Cook Islands"
msgstr " Îles Cook"
#: inc/class-fp-utils.php:401
msgid "Cocos (Keeling) Islands"
msgstr "Îles Cocos (Keeling)"
#: inc/class-fp-utils.php:406
msgid "Colombia"
msgstr "Colombie"
#: inc/class-fp-utils.php:411
msgid "Comoros"
msgstr "Comores"
#: inc/class-fp-utils.php:386
msgid "Chile"
msgstr "Chili"
#: inc/class-fp-utils.php:391
msgid "China"
msgstr "Chine"
#: inc/class-fp-utils.php:396
msgid "Christmas Island"
msgstr "Île Christmas"
#: inc/class-fp-utils.php:371
msgid "Cayman Islands"
msgstr "Îles Caïmanes"
#: inc/class-fp-utils.php:376
msgid "Central African Republic"
msgstr "République Centrafricaine"
#: inc/class-fp-utils.php:381
msgid "Chad"
msgstr "Tchad"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Cap-Vert"
#: inc/class-fp-utils.php:361
msgid "Canada"
msgstr "Canada"
#: inc/class-fp-utils.php:351
msgid "Cambodia"
msgstr "Cambodge"
#: inc/class-fp-utils.php:356
msgid "Cameroon"
msgstr "Cameroun"
#: inc/class-fp-utils.php:336
msgid "Bulgaria"
msgstr "Bulgarie"
#: inc/class-fp-utils.php:341
msgid "Burkina Faso"
msgstr "Burkina Faso"
#: inc/class-fp-utils.php:346
msgid "Burundi"
msgstr "Burundi"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brunei"
#: inc/class-fp-utils.php:301
msgid "Botswana"
msgstr "Botswana"
#: inc/class-fp-utils.php:311
msgid "Brazil"
msgstr "Brésil"
#: inc/class-fp-utils.php:281
msgid "Bhutan"
msgstr "Bhoutan"
#: inc/class-fp-utils.php:286
msgid "Bolivia"
msgstr "Bolivie"
#: inc/class-fp-utils.php:296
msgid "Bosnia and Herzegovina"
msgstr "Bosnie-Herzégovine"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Bermudes"
#: inc/class-fp-utils.php:271
msgid "Benin"
msgstr "Bénin"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Belize"
#: inc/class-fp-utils.php:261
msgid "Belgium"
msgstr "Belgique"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Barbade"
#: inc/class-fp-utils.php:256
msgid "Belarus"
msgstr "Bélarus"
#: inc/class-fp-utils.php:246
msgid "Bangladesh"
msgstr "Bangladesh"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Bahreïn"
#: inc/class-fp-utils.php:231
msgid "Azerbaijan"
msgstr "Azerbaïdjan"
#: inc/class-fp-utils.php:226
msgid "Austria"
msgstr "Autriche"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Aruba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Australie"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "Argentine"
#: inc/class-fp-utils.php:211
msgid "Armenia"
msgstr "Arménie"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Anguilla"
#: inc/class-fp-utils.php:201
msgid "Antigua and Barbuda"
msgstr "Antigua-et-Barbuda"
#: inc/class-fp-utils.php:191
msgid "Angola"
msgstr "Angola"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorre"
#: inc/class-fp-utils.php:171
msgid "Albania"
msgstr "Albanie"
#: inc/class-fp-utils.php:176
msgid "Algeria"
msgstr "Algérie"
#: inc/class-fp-utils.php:161
msgid "Afghanistan"
msgstr "Afghanistan"
#: inc/class-fp-field.php:1594
msgid "Address"
msgstr "Adresse"
#: inc/class-fp-field.php:1716
msgid "Email"
msgstr "E-mail"
#: view/attachments.php:23 view/comments.php:88 view/posts.php:24
#: inc/class-fp-field.php:1680
msgid "Date"
msgstr "Date"
#: inc/class-fp-field.php:1562
msgid "Country"
msgstr "Pays"
#: inc/class-fp-field.php:1582
msgid "City"
msgstr "Ville"
#: inc/class-fp-field.php:1507
msgid "First Name"
msgstr "Prénom"
#: inc/class-fp-field.php:1511
msgid "Last Name"
msgstr "Nom"
#: inc/class-fp-field.php:1210
msgid "Weight"
msgstr "Poids"
#: inc/class-fp-field.php:1379
msgid "Text"
msgstr "Texte"
#: view/terms.php:8 view/users.php:8 view/attachments.php:11
#: view/comments.php:79 view/posts.php:12 inc/class-fp-field.php:999
#: inc/class-fp-field.php:1217
msgid "Quantity"
msgstr "Quantité"
#: inc/class-fp-field.php:1413
msgid "HTML"
msgstr "HTML"
#: inc/class-fp-field.php:1503
msgid "Title"
msgstr "Titre"
#: inc/class-fp-field.php:1138
msgid "Name"
msgstr "Nom"
#: inc/class-fp-admin.php:87 inc/class-fp-admin.php:276
msgid "Settings"
msgstr "Réglages"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Arpitan
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:49+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: frp_FR\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singapóre"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "Sant Marin"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Catare"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monacô"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Martinica"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malta"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macaô"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Luxembôrg"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Covête"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "J·èrsê"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Jamayica"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Ila de Man"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Honcongue"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guyana"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Goatèmala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Guèrnesê"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "G·ibraltare"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Cape Vèrt"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brunê"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Barêne"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Ôstrali"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorra"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Irish
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: ga_IE\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "Muir_Mhór/Seoirse_Theas(South_Georgia)"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Áise/Singapore"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Ciúnach/Samó"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "Eoraip/San_Marino"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Áise/Catar(Qatar)"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Meiriceá/Puerto_Rico"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Meiriceá/Panama"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Ciúnach/Palau"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Ciúnach/Niubhae(Niuē)"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Ciúnach/Nárú"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Meiriceá/Montserrat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Eoraip/Monaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Inniach/Mayotte"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Inniach/Muirís"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Meiriceá/Martinique"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Eoraip/Malta"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Inniach/Maildíve"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Áise/Macau"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Eoraip/Lucsamburg(Lëtzebuerg/Luxembourg)"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Áise/Cuáit(Kuwait)"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Eoraip/Siorraí(Jèrri/Jersey)"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Meiriceá/Iamáice"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Eoraip/Manainn(Isle_of_Man)"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Áise/Hong_Cong"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Meiriceá/Guyana"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Meiriceá/Guatemala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Eoraip/Geansaí(Guernsey)"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Meiriceá/Grenada"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Meiriceá/Guadeloupe"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Eoraip/Gibraltar"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Ciúnach/Fídsí"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "El Salvador"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Meiriceá/Dominica"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Afraic/Djibouti"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Costa Rica"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "Rinn Verde"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Áise/Brúiné"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Muir_Mhór/Beirmiúda(Bermuda)"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Meiriceá/Beilís"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Meiriceá/Barbados"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Áise/Bathraein"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Meiriceá/Aruba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Astráil"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "Meiriceá/Airgintín"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Meiriceá/Anguilla"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Eoraip/Andorra"
\ No newline at end of file
# Translation of Plugins - FakerPress - Development (trunk) in Scottish Gaelic
# This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Generator: GlotPress/2.4.0-alpha\n"
"Language: gd_GB\n"
"Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
#: inc/class-fp-utils.php:1191
msgid "South Georgia"
msgstr "Seòirsea a Deas"
#: inc/class-fp-utils.php:1156
msgid "Singapore"
msgstr "Singeapòr"
#: inc/class-fp-utils.php:1116
msgid "Samoa"
msgstr "Samotha"
#: inc/class-fp-utils.php:1121
msgid "San Marino"
msgstr "San Marino"
#: inc/class-fp-utils.php:1051
msgid "Qatar"
msgstr "Catar"
#: inc/class-fp-utils.php:1046
msgid "Puerto Rico"
msgstr "Porto Rìceo"
#: inc/class-fp-utils.php:1006
msgid "Panama"
msgstr "Panama"
#: inc/class-fp-utils.php:996
msgid "Palau"
msgstr "Palabh"
#: inc/class-fp-utils.php:961
msgid "Niue"
msgstr "Niue"
#: inc/class-fp-utils.php:921
msgid "Nauru"
msgstr "Nauru"
#: inc/class-fp-utils.php:896
msgid "Montserrat"
msgstr "Montsarat"
#: inc/class-fp-utils.php:881
msgid "Monaco"
msgstr "Monaco"
#: inc/class-fp-utils.php:861
msgid "Mayotte"
msgstr "Mayotte/Maore"
#: inc/class-fp-utils.php:856
msgid "Mauritius"
msgstr "Na h-Eileanan Mhoiriseas"
#: inc/class-fp-utils.php:846
msgid "Martinique"
msgstr "Mairtinic"
#: inc/class-fp-utils.php:836
msgid "Malta"
msgstr "Malta"
#: inc/class-fp-utils.php:826
msgid "Maldives"
msgstr "Na h-Eileanan Mhaladaibh"
#: inc/class-fp-utils.php:801
msgid "Macau"
msgstr "Macàthu"
#: inc/class-fp-utils.php:796
msgid "Luxembourg"
msgstr "Lugsamburg"
#: inc/class-fp-utils.php:746
msgid "Kuwait"
msgstr "Cuibhèit"
#: inc/class-fp-utils.php:721
msgid "Jersey"
msgstr "Deàrsaidh"
#: inc/class-fp-utils.php:711
msgid "Jamaica"
msgstr "Diameuga"
#: inc/class-fp-utils.php:696
msgid "Isle of Man"
msgstr "Eilean Manainn"
#: inc/class-fp-utils.php:651
msgid "Hong Kong"
msgstr "Hong Kong"
#: inc/class-fp-utils.php:631
msgid "Guyana"
msgstr "Guidheàna"
#: inc/class-fp-utils.php:611
msgid "Guatemala"
msgstr "Guatamala"
#: inc/class-fp-utils.php:616
msgid "Guernsey"
msgstr "Geàrnsaidh"
#: inc/class-fp-utils.php:606
msgid "Guam"
msgstr "Guam"
#: inc/class-fp-utils.php:596
msgid "Grenada"
msgstr "Greanàda"
#: inc/class-fp-utils.php:601
msgid "Guadeloupe"
msgstr "Guadalup"
#: inc/class-fp-utils.php:581
msgid "Gibraltar"
msgstr "Diobraltar"
#: inc/class-fp-utils.php:526
msgid "Fiji"
msgstr "Fìdi"
#: inc/class-fp-utils.php:491
msgid "El Salvador"
msgstr "An Salbhador"
#: inc/class-fp-utils.php:471
msgid "Dominica"
msgstr "Doiminicea"
#: inc/class-fp-utils.php:466
msgid "Djibouti"
msgstr "Diobùtaidh"
#: inc/class-fp-utils.php:431
msgid "Costa Rica"
msgstr "Costa Rìcea"
#: inc/class-fp-utils.php:366
msgid "Cape Verde"
msgstr "An Ceap Uaine"
#: inc/class-fp-utils.php:331
msgid "Brunei"
msgstr "Brùnaigh"
#: inc/class-fp-utils.php:276
msgid "Bermuda"
msgstr "Bearmùda"
#: inc/class-fp-utils.php:266
msgid "Belize"
msgstr "Beilìs"
#: inc/class-fp-utils.php:251
msgid "Barbados"
msgstr "Barbados"
#: inc/class-fp-utils.php:241
msgid "Bahrain"
msgstr "Bachrain"
#: inc/class-fp-utils.php:216
msgid "Aruba"
msgstr "Arùba"
#: inc/class-fp-utils.php:221
msgid "Australia"
msgstr "Astràilia"
#: inc/class-fp-utils.php:206
msgid "Argentina"
msgstr "An Argantain"
#: inc/class-fp-utils.php:196
msgid "Anguilla"
msgstr "Anguilla"
#: inc/class-fp-utils.php:186
msgid "Andorra"
msgstr "Andorra"
\ No newline at end of file
This diff could not be displayed because it is too large.