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.

1 # Contributing to this project
2
3 Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
4
5 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.
6
7
8 ## Use the issue tracker
9
10 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:
11
12 * Support issues or usage questions that are not bugs should be posted on the [Plugin Support Forum](http://wordpress.org/support/plugin/fakerpress).
13 * Please **do not** derail or troll issues. Keep the discussion on topic and respect the opinions of others.
14 * Make sure to read all the [labels below](#tracker-labels) to avoid confusion on status of each issue
15
16 <a name="tracker-labels"></a>
17 ## Labels on issue tracker
18
19 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.
20
21 We will split the labels in two pieces, groups of labels and a label name, following the pattern below:
22
23 ```html
24 <label-group>:<label-name>
25 ```
26
27 Below you will find a list of fixed ones and it's explanations and what variables we might have:
28
29 #### Group: "Type"
30 * `type:bug`
31 * `type:feature`
32 * `type:l18n`
33 * `type:3rd_party`
34 * `type:invalid`
35 * `type:enhancement`
36
37 #### Group: "Status"
38 * `status:confirmed`
39 * `status:in_progress`
40 * `status:incomplete`
41 * `status:rejected`
42 * `status:pull_requested`
43 * `status:resolved`
44 * `status:testing`
45 * `status:on_hold`
46
47 #### Group: "Information"
48 * `info:feedback`
49 * `info:help`
50
51
52 <a name="bugs"></a>
53 ## Bug reports
54
55 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!
56
57 Guidelines for bug reports:
58
59 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.
60
61 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.
62
63 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.
64
65 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.
66
67 Example:
68
69 > Short and descriptive example bug report title
70 >
71 > A summary of the issue and the environment/browser in which it occurs. If
72 > suitable, include the steps required to reproduce the bug.
73 >
74 > 1. This is the first step
75 > 2. This is the second step
76 > 3. Further steps, etc.
77 >
78 > 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).
79
80 **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.
81
82 <a name="features"></a>
83 ## Feature requests
84
85 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.
86
87 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.
88
89 <a name="pull-requests"></a>
90 ## Pull requests
91
92 Good pull requests &mdash; patches, improvements, new features &mdash; are a fantastic help.
93 They should remain focused in scope and avoid containing unrelated commits.
94
95 **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).
96
97 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.
98
99 <a name="git-flow"></a>
100 #### Git Flow for pull requests
101
102 1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes:
103
104 ```bash
105 # Clone your fork of the repo into the current directory
106 git clone git@github.com:<YOUR_USERNAME>/fakerpress.git
107 # Navigate to the newly cloned directory
108 cd fakerpress
109 # Assign the original repo to a remote called "upstream"
110 git remote add upstream https://github.com/bordoni/fakerpress
111 ```
112
113 2. If you cloned a while ago, get the latest changes from upstream:
114
115 ```bash
116 git checkout master
117 git pull upstream master
118 ```
119
120 3. Create a new topic branch (off the `master` branch) to contain your feature, change, or fix:
121
122 ```bash
123 git checkout -b <topic-branch-name>
124 ```
125
126 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.
127
128 5. Locally merge (or rebase) the upstream development branch into your topic branch:
129
130 ```bash
131 git pull [--rebase] upstream master
132 ```
133
134 6. Push your topic branch up to your fork:
135
136 ```bash
137 git push origin <topic-branch-name>
138 ```
139
140 7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) (with a clear title and description) to the `master` branch.
141
142 **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).
1 <?php
2 /**
3 * Plugin Name: FakerPress
4 * Plugin URI: https://fakerpress.com
5 * Description: FakerPress is a clean way to generate fake data to your WordPress installation, great for developers who need testing
6 * Version: 0.5.3
7 * Author: Gustavo Bordoni
8 * Author URI: http://bordoni.me
9 * Text Domain: fakerpress
10 * License: GPL-2.0+
11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
12 * Domain Path: /languages
13 * GitHub Plugin URI: https://github.com/bordoni/fakerpress
14 */
15
16 // Need to store this variable before leaving this file
17 define( '__FP_FILE__', __FILE__ );
18
19 /**
20 * To allow internationalization for the errors strings the text domain is
21 * loaded in a 5.2 way, no Fatal Errors, only a message to the user.
22 *
23 * @return bool;
24 */
25
26 function _fp_l10n() {
27 // Doing that to use the real folder that the plugin is living, not a static string
28 $plugin_folder = str_replace( DIRECTORY_SEPARATOR . basename( __FILE__ ), '', plugin_basename( __FP_FILE__ ) );
29 return load_plugin_textdomain( 'fakerpress', false, $plugin_folder . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR );
30 }
31 add_action( 'plugins_loaded', '_fp_l10n' );
32
33 /**
34 * Version compare to PHP 5.3, so we can use namespaces, anonymous functions
35 * and a lot of packages require 5.3, so...
36 *
37 * For now 3.8 or bigger is needed for the admin interface, later on the
38 * intention is to bring this number lower
39 */
40 if ( PHP_VERSION_ID < 50600 ) {
41 if ( ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) && is_admin() ) {
42 require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
43
44 if ( ! is_plugin_active( plugin_basename( __FP_FILE__ ) ) ) {
45 wp_print_styles( 'open-sans' );
46 echo "<style>body{margin: 0 2px;font-family: 'Open Sans',sans-serif;font-size: 13px;line-height: 1.5em;}</style>";
47 echo wp_kses_post( __( '<b>FakerPress</b> requires PHP 5.6 or higher, and the plugin has now disabled itself.', 'fakerpress' ) ) .
48 '<br />' .
49 esc_attr__( 'To allow better control over dates, advanced security improvements and performance gain.', 'fakerpress' ) .
50 '<br />' .
51 esc_attr__( 'Contact your Hosting or your system administrator and ask for this Upgrade to version 5.6 of PHP.', 'fakerpress' );
52 exit;
53 }
54
55 deactivate_plugins( __FP_FILE__ );
56 }
57 } else {
58 require_once plugin_dir_path( __FP_FILE__ ) . 'load.php';
59 }
1 <?php // Silence is Golden
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Assamese
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: as_IN\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "South Georgia"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "ছিংগাপুৰ"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Samoa"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "San Marino"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "কাটাৰ"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Puerto Rico"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "পানামা"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Palau"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Niue"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Nauru"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Montserrat"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Monaco"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Mayotte"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "মৰিচাছ"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Martinique"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "মাল্টা"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "মালডিভিচ"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Macau"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "লাক্স্যেমবাৰ্গ"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "কুৱেইট"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Jersey"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "জামাইকা"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Isle of Man"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "হংকং"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Guyana"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "গুৱাট্যেমালা"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Guernsey"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Guam"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Grenada"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Guadeloupe"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Gibraltar"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "ফিজি"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "এল চালভাড'ৰ"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "Dominica"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "Djibouti"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "ক'ষ্টা ৰিকা"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "Cape Verde"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "ব্ৰুনেই"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "বাৰ্মুডা"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "Belize"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "বাৰ্বাডোজ"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "বাহৰেইন"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "Aruba"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "অষ্ট্ৰেলিয়া"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "আৰ্জেন্টিনা"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "Anguilla"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "Andorra"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in South Azerbaijani
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: az_IR\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "گرجستان جنوبی"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "سنگاپور"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "ساموآ"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "سن‌مارینو"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "قطر"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "پورتوریکو"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "پاناما"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "پالائو"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "نیواِی"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "نائورو"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "مونتسرات"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "موناکو"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "مایوت"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "مائوریتی"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "مارتینیک"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "مالت"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "مالدیو"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "ماکایو"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "لوکزامبورگ"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "کویت"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "جرسی"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "جاماییکا"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "جزیره من"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "هنگ‌کنگ"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "گویانا"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "گواتمالا"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "گرنزی"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "گوام"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "گرانادا"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "گوادالوپ"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "جبل‌الطارق"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "فیجی"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "السالوادور"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "دومینیکا"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "جیبوتی"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "کاستاریکا"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "کیپ‌ورد"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "برونئی"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "برمودا"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "بلیز"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "باربادوس"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "بحرین"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "آروبا"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "استرالیا"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "آرژنتینا"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "آنگوییلا"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "آندورا"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Balochi Southern
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=1; plural=0;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: bcc_PK\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "زربارجورجیا"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "سنگاپور"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "ساموآ"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "سین مارینو"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "قطر"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "پیورٹوریکو"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "پاناما"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "پالائو"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "نیواِی"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "نائورو"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "مونٹسیراٹ"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "موناکو"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "مایوٹ"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "مروشیس"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "مارٹینیق"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "مالت"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "مالدیو"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "مکاوٗ"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "لوکزامبورگ"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "کویت"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "جرسی"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "جمائکا"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "جزیره من"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "ہانک کانگ"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "گویانا"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "گواتمالا"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "گوورنسے"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "گوام"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "گرینادا"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "گوادالوپ"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "گبرالتار"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "فیجی"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "السالوادور"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "دومینیکا"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "جیبوتی"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "کوسٹا ریکا"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "کیپ وردی"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "بیرونی"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "برمودا"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "بلیز"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "باربادوس"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "بحرین"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "آروبا"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "آسٹریلیا"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "ارجنٹینا"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "آنگوییلا"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "انڈورا"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Cebuano
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: ceb_PH\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "South Georgia"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Singapore"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Samoa"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "San Marino"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Qatar"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Puerto Rico"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "Panama"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Palau"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Niue"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Nauru"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Montserrat"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Monaco"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Mayotte"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "Mauritius"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Martinique"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "Malta"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "Maldives"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Macau"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "Luxembourg"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "Kuwait"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Jersey"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "Jamaica"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Isle of Man"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "Hong Kong"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Guyana"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "Guatemala"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Guernsey"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Guam"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Grenada"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Guadeloupe"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Gibraltar"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "Fiji"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "El Salvador"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "Dominica"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "Djibouti"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "Costa Rica"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "Cape Verde"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "Brunei"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "Bermuda"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "Belize"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "Bardados"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "Bahrain"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "Aruba"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "Australia"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "Argentina"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "Anguilla"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "Andorra"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Kurdish (Sorani)
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-05 19:55:35+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: ku_IQ\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "جۆرجیای باشور"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "سینگاپور"
21
22 #: inc/class-fp-utils.php:1121
23 msgid "San Marino"
24 msgstr "سان مارینۆ"
25
26 #: inc/class-fp-utils.php:1116
27 msgid "Samoa"
28 msgstr "ساموا"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "قەتەر"
33
34 #: inc/class-fp-utils.php:1006
35 msgid "Panama"
36 msgstr "پاناما"
37
38 #: inc/class-fp-utils.php:996
39 msgid "Palau"
40 msgstr "پالاو"
41
42 #: inc/class-fp-utils.php:961
43 msgid "Niue"
44 msgstr "نایوێ"
45
46 #: inc/class-fp-utils.php:921
47 msgid "Nauru"
48 msgstr "نەوڕوو"
49
50 #: inc/class-fp-utils.php:896
51 msgid "Montserrat"
52 msgstr "مۆنتسیرات"
53
54 #: inc/class-fp-utils.php:881
55 msgid "Monaco"
56 msgstr "مۆناکۆ"
57
58 #: inc/class-fp-utils.php:861
59 msgid "Mayotte"
60 msgstr "مایۆت"
61
62 #: inc/class-fp-utils.php:856
63 msgid "Mauritius"
64 msgstr "مۆریشیۆس"
65
66 #: inc/class-fp-utils.php:846
67 msgid "Martinique"
68 msgstr "مازاتلان"
69
70 #: inc/class-fp-utils.php:836
71 msgid "Malta"
72 msgstr "ماڵتا"
73
74 #: inc/class-fp-utils.php:826
75 msgid "Maldives"
76 msgstr "ماڵدیڤ"
77
78 #: inc/class-fp-utils.php:801
79 msgid "Macau"
80 msgstr "ماکاو"
81
82 #: inc/class-fp-utils.php:796
83 msgid "Luxembourg"
84 msgstr "لوکسەمبورگ"
85
86 #: inc/class-fp-utils.php:746
87 msgid "Kuwait"
88 msgstr "کوەیت"
89
90 #: inc/class-fp-utils.php:721
91 msgid "Jersey"
92 msgstr "جێرسی "
93
94 #: inc/class-fp-utils.php:711
95 msgid "Jamaica"
96 msgstr "جامایکا"
97
98 #: inc/class-fp-utils.php:696
99 msgid "Isle of Man"
100 msgstr "ئایلۆف مان "
101
102 #: inc/class-fp-utils.php:651
103 msgid "Hong Kong"
104 msgstr "هۆنگ کۆنگ"
105
106 #: inc/class-fp-utils.php:616
107 msgid "Guernsey"
108 msgstr "غیرینسی "
109
110 #: inc/class-fp-utils.php:606
111 msgid "Guam"
112 msgstr "گوام"
113
114 #: inc/class-fp-utils.php:596
115 msgid "Grenada"
116 msgstr "گریندا"
117
118 #: inc/class-fp-utils.php:581
119 msgid "Gibraltar"
120 msgstr "جەبەل تاریق "
121
122 #: inc/class-fp-utils.php:526
123 msgid "Fiji"
124 msgstr "فیجی"
125
126 #: inc/class-fp-utils.php:466
127 msgid "Djibouti"
128 msgstr "جیبوتی"
129
130 #: inc/class-fp-utils.php:431
131 msgid "Costa Rica"
132 msgstr "کۆستا ریکا "
133
134 #: inc/class-fp-utils.php:366
135 msgid "Cape Verde"
136 msgstr "کەیپ ڤەردی "
137
138 #: inc/class-fp-utils.php:331
139 msgid "Brunei"
140 msgstr "برونای"
141
142 #: inc/class-fp-utils.php:276
143 msgid "Bermuda"
144 msgstr "بەرمۆدا"
145
146 #: inc/class-fp-utils.php:241
147 msgid "Bahrain"
148 msgstr "بەحرەین"
149
150 #: inc/class-fp-utils.php:221
151 msgid "Australia"
152 msgstr "ئوسترالیا"
153
154 #: inc/class-fp-utils.php:216
155 msgid "Aruba"
156 msgstr "ئروبە "
157
158 #: inc/class-fp-utils.php:206
159 msgid "Argentina"
160 msgstr "ئەرجەنتین"
161
162 #: inc/class-fp-utils.php:186
163 msgid "Andorra"
164 msgstr "ئەندۆرا"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Corsican
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-03-23 15:06:42+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: co_IT\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-field.php:1138
15 msgid "Name"
16 msgstr "Nome"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Dhivehi
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: dv_MV\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "ސައުތު ޖޯޖިޔާ"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "ސިންގަޕޫރު"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "ސަމާއޯ"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "ސަން މާރިއޯ"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "ޤަތަރު"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "ޕިއުޓޯ ރިކޯ"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "ޕެނަމާ"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "ޕަލައު"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "ނިއުއޭ"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "ނައުރޫ"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "މޮންޓްސެރަޓް"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "މޮނާކޯ"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "މަޔޮއްޓޭ"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "މޮރިޝަސް"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "މާޓިނިކިއު"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "މަލްޓާ"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "ދިވެހިރާއްޖެ"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "މަކާއޫ"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "ލަކްޒަމްބާގް"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "ކުވޭތު"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "ޖާރޒީ"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "ޖަމައިކާ"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "އިސުލް އޮފް މޭން"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "ހޮންކޮން"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "ގުޔާނާ"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "ގުއެޓަމާލާ"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "ގުއެންސޭ"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "ގުއަމް"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "ގްރެނަޑާ"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "ގުއެޑެލޯޕް"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "ގިބްރަލްޓާ"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "ފިޖީ"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "އެލް ސަލްވަޑޯ"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "ޑޮމިނިކާ"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "ޖިބޯޓީ"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "ކޮސްޓަރިކާ"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "ކޭޕް ވާޑެ"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "ބުރުނާއީ"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "ބާމިއުޑާ"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "ބެލިޒް"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "ބާބަޑޮސް"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "ބަހްރެއިން"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "އަރޫބާ"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "އޮސްޓްރޭލިޔާ"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "އާޖެންޓީނާ"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "އެންގުއިލާ"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "އެންޑޯރާ"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Esperanto
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-06 13:50:56+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: eo\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "Sud-Georgio kaj Sud-Sandviĉinsuloj"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Singapuro"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Usona Samoo"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "Sanmarino"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Kataro"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Puertoriko"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "Panamo"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Palaŭo"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Niuo"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Nauro"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Moncerato"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Monako"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Majoto"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "Maŭricio"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Martiniko"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "Malto"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "Maldivoj"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Makao"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "Luksemburgurbo"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "Kuvajto"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Ĵerzejo"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "Jamajko"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Manksinsulo"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "Hongkongo"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Gujano"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "Gvatemalo"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Gernezejo"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Gvamo"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Grenado"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Gvadelupo"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Ĝibraltaro"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "Fiĝio"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "Salvadoro"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "Dominiko"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "Ĝibutio"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "Kostariko"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "Kaboverdo"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "Brunejo"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "Bermudoj"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "Belizo"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "Barbado"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "Barejno"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "Arubo"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "Aŭstralio"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "Argentino"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "Angvilo"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "Andoro"
201
202 #: inc/class-fp-dates.php:19
203 msgid "Today"
204 msgstr "Hodiaŭ"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Spanish (Guatemala)
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: es_GT\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "South Georgia"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Singapur"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Samoa"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "San Marino"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Qatar"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Puerto Rico"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "Panamá"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Palau"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Niue"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Nauru"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Montserrat"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Mónaco"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Mayotte"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "Mauricio"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Martinica"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "Malta"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "Maldivas"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Macau"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "Luxemburgo"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "Kuwait"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Jersey"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "Jamaica"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Isle of Man"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "Hong Kong"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Guyana"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "Guatemala"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Guernsey"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Guam"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Grenada"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Guadeloupe"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Gibraltar"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "Fiyi"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "El Salvador"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "Dominica"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "Djibouti"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "Costa Rica"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "Cabo Verde"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "Brunei"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "Bermuda"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "Belize"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "Barbados"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "Bahrain"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "Aruba"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "Australia"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "Argentina"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "Anguilla"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "Andorra"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Persian (Afghanistan)
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=1; plural=0;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: fa\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "گرجستان جنوبی"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "سنگاپور"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "ساموآ"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "سن‌مارینو"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "قطر"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "پورتوریکو"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "پاناما"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "پالائو"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "نیواِی"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "نائورو"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "مونتسرات"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "موناکو"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "مایوت"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "مائوریتی"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "مارتینیک"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "مالت"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "مالدیو"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "ماکایو"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "لوکزامبورگ"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "کویت"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "جرسی"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "جاماییکا"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "جزیره من"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "هنگ‌کنگ"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "گویانا"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "گواتمالا"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "گرنزی"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "گوام"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "گرانادا"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "گوادالوپ"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "جبل‌الطارق"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "فیجی"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "السالوادور"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "دومینیکا"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "جیبوتی"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "کاستاریکا"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "کیپ‌ورد"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "برونئی"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "برمودا"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "بلیز"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "باربادوس"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "بحرین"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "آروبا"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "استرالیا"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "آرژنتینا"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "آنگوییلا"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "آندورا"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in French (Belgium)
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: fr_BE\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "Île de Géorgie du Sud"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Singapour"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Samoa"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "Saint-Marin"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Qatar"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Porto Rico"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "Panama"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Palaos"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Niué"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Nauru"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Montserrat"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Monaco"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Mayotte"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "Île Maurice"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Martinique"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "Malte"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "Maldives"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Macao"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "Luxembourg"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "Koweït"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Jersey"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "Jamaïque"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Île de Man"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "Hong Kong"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Guyane"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "Guatemala"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Guernsey"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Guam"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Grenade"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Guadeloupe"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Gibraltar"
137
138 #: inc/class-fp-utils.php:566
139 msgid "Georgia"
140 msgstr "Georgia"
141
142 #: inc/class-fp-utils.php:526
143 msgid "Fiji"
144 msgstr "Fidji"
145
146 #: inc/class-fp-utils.php:491
147 msgid "El Salvador"
148 msgstr "Salvador"
149
150 #: inc/class-fp-utils.php:471
151 msgid "Dominica"
152 msgstr "Dominique"
153
154 #: inc/class-fp-utils.php:466
155 msgid "Djibouti"
156 msgstr "Djibouti"
157
158 #: inc/class-fp-utils.php:431
159 msgid "Costa Rica"
160 msgstr "Costa Rica"
161
162 #: inc/class-fp-utils.php:366
163 msgid "Cape Verde"
164 msgstr "Cap-Vert"
165
166 #: inc/class-fp-utils.php:331
167 msgid "Brunei"
168 msgstr "Brunei"
169
170 #: inc/class-fp-utils.php:276
171 msgid "Bermuda"
172 msgstr "Bermudes"
173
174 #: inc/class-fp-utils.php:266
175 msgid "Belize"
176 msgstr "Belize"
177
178 #: inc/class-fp-utils.php:251
179 msgid "Barbados"
180 msgstr "Barbade"
181
182 #: inc/class-fp-utils.php:241
183 msgid "Bahrain"
184 msgstr "Bahreïn"
185
186 #: inc/class-fp-utils.php:216
187 msgid "Aruba"
188 msgstr "Aruba"
189
190 #: inc/class-fp-utils.php:221
191 msgid "Australia"
192 msgstr "Australie"
193
194 #: inc/class-fp-utils.php:206
195 msgid "Argentina"
196 msgstr "Argentine"
197
198 #: inc/class-fp-utils.php:196
199 msgid "Anguilla"
200 msgstr "Anguilla"
201
202 #: inc/class-fp-utils.php:186
203 msgid "Andorra"
204 msgstr "Andorre"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in French (Canada)
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2019-06-17 01:22:25+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n != 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: fr_CA\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "Île de Géorgie du Sud"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Singapour"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Samoa"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "Saint-Marin"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Qatar"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Porto Rico"
37
38 #: inc/class-fp-utils.php:1036
39 msgid "Poland"
40 msgstr "Pologne"
41
42 #: inc/class-fp-utils.php:1006
43 msgid "Panama"
44 msgstr "Panama"
45
46 #: inc/class-fp-utils.php:996
47 msgid "Palau"
48 msgstr "Palaos"
49
50 #: inc/class-fp-utils.php:961
51 msgid "Niue"
52 msgstr "Niue"
53
54 #: inc/class-fp-utils.php:921
55 msgid "Nauru"
56 msgstr "Nauru"
57
58 #: inc/class-fp-utils.php:901
59 msgid "Morocco"
60 msgstr "Maroc"
61
62 #: inc/class-fp-utils.php:896
63 msgid "Montserrat"
64 msgstr "Montserrat"
65
66 #: inc/class-fp-utils.php:881
67 msgid "Monaco"
68 msgstr "Monaco"
69
70 #: inc/class-fp-utils.php:861
71 msgid "Mayotte"
72 msgstr "Mayotte"
73
74 #: inc/class-fp-utils.php:856
75 msgid "Mauritius"
76 msgstr "Île Maurice"
77
78 #: inc/class-fp-utils.php:846
79 msgid "Martinique"
80 msgstr "Martinique"
81
82 #: inc/class-fp-utils.php:836
83 msgid "Malta"
84 msgstr "Malte"
85
86 #: inc/class-fp-utils.php:826
87 msgid "Maldives"
88 msgstr "Maldives"
89
90 #: inc/class-fp-utils.php:801
91 msgid "Macau"
92 msgstr "Macao"
93
94 #: inc/class-fp-utils.php:796
95 msgid "Luxembourg"
96 msgstr "Luxembourg"
97
98 #: inc/class-fp-utils.php:746
99 msgid "Kuwait"
100 msgstr "Koweït"
101
102 #: inc/class-fp-utils.php:721
103 msgid "Jersey"
104 msgstr "Jersey"
105
106 #: inc/class-fp-utils.php:711
107 msgid "Jamaica"
108 msgstr "Jamaïque"
109
110 #: inc/class-fp-utils.php:706
111 msgid "Italy"
112 msgstr "Italie"
113
114 #: inc/class-fp-utils.php:696
115 msgid "Isle of Man"
116 msgstr "Île de Man"
117
118 #: inc/class-fp-utils.php:651
119 msgid "Hong Kong"
120 msgstr "Hong Kong"
121
122 #: inc/class-fp-utils.php:631
123 msgid "Guyana"
124 msgstr "Guyane"
125
126 #: inc/class-fp-utils.php:611
127 msgid "Guatemala"
128 msgstr "Guatemala"
129
130 #: inc/class-fp-utils.php:616
131 msgid "Guernsey"
132 msgstr "Guernsey"
133
134 #: inc/class-fp-utils.php:606
135 msgid "Guam"
136 msgstr "Guam"
137
138 #: inc/class-fp-utils.php:596
139 msgid "Grenada"
140 msgstr "Grenade"
141
142 #: inc/class-fp-utils.php:601
143 msgid "Guadeloupe"
144 msgstr "Guadeloupe"
145
146 #: inc/class-fp-utils.php:581
147 msgid "Gibraltar"
148 msgstr "Gibraltar"
149
150 #: inc/class-fp-utils.php:556
151 msgid "Gabon"
152 msgstr "Gabon"
153
154 #: inc/class-fp-utils.php:536
155 msgid "France"
156 msgstr "France"
157
158 #: inc/class-fp-utils.php:526
159 msgid "Fiji"
160 msgstr "Fidji"
161
162 #: inc/class-fp-utils.php:531
163 msgid "Finland"
164 msgstr "Finlande"
165
166 #: inc/class-fp-utils.php:516
167 msgid "Falkland Islands"
168 msgstr "Îles Falkland"
169
170 #: inc/class-fp-utils.php:521
171 msgid "Faroe Islands"
172 msgstr "Îles Féroé"
173
174 #: inc/class-fp-utils.php:501
175 msgid "Eritrea"
176 msgstr "Érythrée"
177
178 #: inc/class-fp-utils.php:506
179 msgid "Estonia"
180 msgstr "Estonie"
181
182 #: inc/class-fp-utils.php:511
183 msgid "Ethiopia"
184 msgstr "Éthiopie"
185
186 #: inc/class-fp-utils.php:491
187 msgid "El Salvador"
188 msgstr "El Salvador"
189
190 #: inc/class-fp-utils.php:496
191 msgid "Equatorial Guinea"
192 msgstr "Guinée équatoriale"
193
194 #: inc/class-fp-utils.php:476
195 msgid "Dominican Republic"
196 msgstr "République dominicaine"
197
198 #: inc/class-fp-utils.php:481
199 msgid "Ecuador"
200 msgstr "Équateur"
201
202 #: inc/class-fp-utils.php:486
203 msgid "Egypt"
204 msgstr "Égypte"
205
206 #: inc/class-fp-utils.php:471
207 msgid "Dominica"
208 msgstr "Dominique"
209
210 #: inc/class-fp-utils.php:466
211 msgid "Djibouti"
212 msgstr "Djibouti"
213
214 #: inc/class-fp-utils.php:456
215 msgid "Czech Republic"
216 msgstr "République Tchèque"
217
218 #: inc/class-fp-utils.php:461
219 msgid "Denmark"
220 msgstr "Danemark"
221
222 #: inc/class-fp-utils.php:436
223 msgid "Croatia"
224 msgstr "Croatie"
225
226 #: inc/class-fp-utils.php:441
227 msgid "Cuba"
228 msgstr "Cuba"
229
230 #: inc/class-fp-utils.php:451
231 msgid "Cyprus"
232 msgstr "Chypre"
233
234 #: inc/class-fp-utils.php:431
235 msgid "Costa Rica"
236 msgstr "Costa Rica"
237
238 #: inc/class-fp-utils.php:426
239 msgid "Cook Islands"
240 msgstr " Îles Cook"
241
242 #: inc/class-fp-utils.php:401
243 msgid "Cocos (Keeling) Islands"
244 msgstr "Îles Cocos (Keeling)"
245
246 #: inc/class-fp-utils.php:406
247 msgid "Colombia"
248 msgstr "Colombie"
249
250 #: inc/class-fp-utils.php:411
251 msgid "Comoros"
252 msgstr "Comores"
253
254 #: inc/class-fp-utils.php:386
255 msgid "Chile"
256 msgstr "Chili"
257
258 #: inc/class-fp-utils.php:391
259 msgid "China"
260 msgstr "Chine"
261
262 #: inc/class-fp-utils.php:396
263 msgid "Christmas Island"
264 msgstr "Île Christmas"
265
266 #: inc/class-fp-utils.php:371
267 msgid "Cayman Islands"
268 msgstr "Îles Caïmanes"
269
270 #: inc/class-fp-utils.php:376
271 msgid "Central African Republic"
272 msgstr "République Centrafricaine"
273
274 #: inc/class-fp-utils.php:381
275 msgid "Chad"
276 msgstr "Tchad"
277
278 #: inc/class-fp-utils.php:366
279 msgid "Cape Verde"
280 msgstr "Cap-Vert"
281
282 #: inc/class-fp-utils.php:361
283 msgid "Canada"
284 msgstr "Canada"
285
286 #: inc/class-fp-utils.php:351
287 msgid "Cambodia"
288 msgstr "Cambodge"
289
290 #: inc/class-fp-utils.php:356
291 msgid "Cameroon"
292 msgstr "Cameroun"
293
294 #: inc/class-fp-utils.php:336
295 msgid "Bulgaria"
296 msgstr "Bulgarie"
297
298 #: inc/class-fp-utils.php:341
299 msgid "Burkina Faso"
300 msgstr "Burkina Faso"
301
302 #: inc/class-fp-utils.php:346
303 msgid "Burundi"
304 msgstr "Burundi"
305
306 #: inc/class-fp-utils.php:331
307 msgid "Brunei"
308 msgstr "Brunei"
309
310 #: inc/class-fp-utils.php:301
311 msgid "Botswana"
312 msgstr "Botswana"
313
314 #: inc/class-fp-utils.php:311
315 msgid "Brazil"
316 msgstr "Brésil"
317
318 #: inc/class-fp-utils.php:281
319 msgid "Bhutan"
320 msgstr "Bhoutan"
321
322 #: inc/class-fp-utils.php:286
323 msgid "Bolivia"
324 msgstr "Bolivie"
325
326 #: inc/class-fp-utils.php:296
327 msgid "Bosnia and Herzegovina"
328 msgstr "Bosnie-Herzégovine"
329
330 #: inc/class-fp-utils.php:276
331 msgid "Bermuda"
332 msgstr "Bermudes"
333
334 #: inc/class-fp-utils.php:271
335 msgid "Benin"
336 msgstr "Bénin"
337
338 #: inc/class-fp-utils.php:266
339 msgid "Belize"
340 msgstr "Belize"
341
342 #: inc/class-fp-utils.php:261
343 msgid "Belgium"
344 msgstr "Belgique"
345
346 #: inc/class-fp-utils.php:251
347 msgid "Barbados"
348 msgstr "Barbade"
349
350 #: inc/class-fp-utils.php:256
351 msgid "Belarus"
352 msgstr "Bélarus"
353
354 #: inc/class-fp-utils.php:246
355 msgid "Bangladesh"
356 msgstr "Bangladesh"
357
358 #: inc/class-fp-utils.php:241
359 msgid "Bahrain"
360 msgstr "Bahreïn"
361
362 #: inc/class-fp-utils.php:231
363 msgid "Azerbaijan"
364 msgstr "Azerbaïdjan"
365
366 #: inc/class-fp-utils.php:226
367 msgid "Austria"
368 msgstr "Autriche"
369
370 #: inc/class-fp-utils.php:216
371 msgid "Aruba"
372 msgstr "Aruba"
373
374 #: inc/class-fp-utils.php:221
375 msgid "Australia"
376 msgstr "Australie"
377
378 #: inc/class-fp-utils.php:206
379 msgid "Argentina"
380 msgstr "Argentine"
381
382 #: inc/class-fp-utils.php:211
383 msgid "Armenia"
384 msgstr "Arménie"
385
386 #: inc/class-fp-utils.php:196
387 msgid "Anguilla"
388 msgstr "Anguilla"
389
390 #: inc/class-fp-utils.php:201
391 msgid "Antigua and Barbuda"
392 msgstr "Antigua-et-Barbuda"
393
394 #: inc/class-fp-utils.php:191
395 msgid "Angola"
396 msgstr "Angola"
397
398 #: inc/class-fp-utils.php:186
399 msgid "Andorra"
400 msgstr "Andorre"
401
402 #: inc/class-fp-utils.php:171
403 msgid "Albania"
404 msgstr "Albanie"
405
406 #: inc/class-fp-utils.php:176
407 msgid "Algeria"
408 msgstr "Algérie"
409
410 #: inc/class-fp-utils.php:161
411 msgid "Afghanistan"
412 msgstr "Afghanistan"
413
414 #: inc/class-fp-field.php:1594
415 msgid "Address"
416 msgstr "Adresse"
417
418 #: inc/class-fp-field.php:1716
419 msgid "Email"
420 msgstr "E-mail"
421
422 #: view/attachments.php:23 view/comments.php:88 view/posts.php:24
423 #: inc/class-fp-field.php:1680
424 msgid "Date"
425 msgstr "Date"
426
427 #: inc/class-fp-field.php:1562
428 msgid "Country"
429 msgstr "Pays"
430
431 #: inc/class-fp-field.php:1582
432 msgid "City"
433 msgstr "Ville"
434
435 #: inc/class-fp-field.php:1507
436 msgid "First Name"
437 msgstr "Prénom"
438
439 #: inc/class-fp-field.php:1511
440 msgid "Last Name"
441 msgstr "Nom"
442
443 #: inc/class-fp-field.php:1210
444 msgid "Weight"
445 msgstr "Poids"
446
447 #: inc/class-fp-field.php:1379
448 msgid "Text"
449 msgstr "Texte"
450
451 #: view/terms.php:8 view/users.php:8 view/attachments.php:11
452 #: view/comments.php:79 view/posts.php:12 inc/class-fp-field.php:999
453 #: inc/class-fp-field.php:1217
454 msgid "Quantity"
455 msgstr "Quantité"
456
457 #: inc/class-fp-field.php:1413
458 msgid "HTML"
459 msgstr "HTML"
460
461 #: inc/class-fp-field.php:1503
462 msgid "Title"
463 msgstr "Titre"
464
465 #: inc/class-fp-field.php:1138
466 msgid "Name"
467 msgstr "Nom"
468
469 #: inc/class-fp-admin.php:87 inc/class-fp-admin.php:276
470 msgid "Settings"
471 msgstr "Réglages"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Arpitan
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:49+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=2; plural=n > 1;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: frp_FR\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1156
15 msgid "Singapore"
16 msgstr "Singapóre"
17
18 #: inc/class-fp-utils.php:1121
19 msgid "San Marino"
20 msgstr "Sant Marin"
21
22 #: inc/class-fp-utils.php:1051
23 msgid "Qatar"
24 msgstr "Catare"
25
26 #: inc/class-fp-utils.php:896
27 msgid "Montserrat"
28 msgstr "Montserrat"
29
30 #: inc/class-fp-utils.php:881
31 msgid "Monaco"
32 msgstr "Monacô"
33
34 #: inc/class-fp-utils.php:846
35 msgid "Martinique"
36 msgstr "Martinica"
37
38 #: inc/class-fp-utils.php:836
39 msgid "Malta"
40 msgstr "Malta"
41
42 #: inc/class-fp-utils.php:801
43 msgid "Macau"
44 msgstr "Macaô"
45
46 #: inc/class-fp-utils.php:796
47 msgid "Luxembourg"
48 msgstr "Luxembôrg"
49
50 #: inc/class-fp-utils.php:746
51 msgid "Kuwait"
52 msgstr "Covête"
53
54 #: inc/class-fp-utils.php:721
55 msgid "Jersey"
56 msgstr "J·èrsê"
57
58 #: inc/class-fp-utils.php:711
59 msgid "Jamaica"
60 msgstr "Jamayica"
61
62 #: inc/class-fp-utils.php:696
63 msgid "Isle of Man"
64 msgstr "Ila de Man"
65
66 #: inc/class-fp-utils.php:651
67 msgid "Hong Kong"
68 msgstr "Honcongue"
69
70 #: inc/class-fp-utils.php:631
71 msgid "Guyana"
72 msgstr "Guyana"
73
74 #: inc/class-fp-utils.php:611
75 msgid "Guatemala"
76 msgstr "Goatèmala"
77
78 #: inc/class-fp-utils.php:616
79 msgid "Guernsey"
80 msgstr "Guèrnesê"
81
82 #: inc/class-fp-utils.php:581
83 msgid "Gibraltar"
84 msgstr "G·ibraltare"
85
86 #: inc/class-fp-utils.php:366
87 msgid "Cape Verde"
88 msgstr "Cape Vèrt"
89
90 #: inc/class-fp-utils.php:331
91 msgid "Brunei"
92 msgstr "Brunê"
93
94 #: inc/class-fp-utils.php:241
95 msgid "Bahrain"
96 msgstr "Barêne"
97
98 #: inc/class-fp-utils.php:221
99 msgid "Australia"
100 msgstr "Ôstrali"
101
102 #: inc/class-fp-utils.php:186
103 msgid "Andorra"
104 msgstr "Andorra"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Irish
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: ga_IE\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "Muir_Mhór/Seoirse_Theas(South_Georgia)"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Áise/Singapore"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Ciúnach/Samó"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "Eoraip/San_Marino"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Áise/Catar(Qatar)"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Meiriceá/Puerto_Rico"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "Meiriceá/Panama"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Ciúnach/Palau"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Ciúnach/Niubhae(Niuē)"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Ciúnach/Nárú"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Meiriceá/Montserrat"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Eoraip/Monaco"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Inniach/Mayotte"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "Inniach/Muirís"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Meiriceá/Martinique"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "Eoraip/Malta"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "Inniach/Maildíve"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Áise/Macau"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "Eoraip/Lucsamburg(Lëtzebuerg/Luxembourg)"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "Áise/Cuáit(Kuwait)"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Eoraip/Siorraí(Jèrri/Jersey)"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "Meiriceá/Iamáice"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Eoraip/Manainn(Isle_of_Man)"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "Áise/Hong_Cong"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Meiriceá/Guyana"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "Meiriceá/Guatemala"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Eoraip/Geansaí(Guernsey)"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Guam"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Meiriceá/Grenada"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Meiriceá/Guadeloupe"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Eoraip/Gibraltar"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "Ciúnach/Fídsí"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "El Salvador"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "Meiriceá/Dominica"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "Afraic/Djibouti"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "Costa Rica"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "Rinn Verde"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "Áise/Brúiné"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "Muir_Mhór/Beirmiúda(Bermuda)"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "Meiriceá/Beilís"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "Meiriceá/Barbados"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "Áise/Bathraein"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "Meiriceá/Aruba"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "Astráil"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "Meiriceá/Airgintín"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "Meiriceá/Anguilla"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "Eoraip/Andorra"
...\ No newline at end of file ...\ No newline at end of file
1 # Translation of Plugins - FakerPress - Development (trunk) in Scottish Gaelic
2 # This file is distributed under the same license as the Plugins - FakerPress - Development (trunk) package.
3 msgid ""
4 msgstr ""
5 "PO-Revision-Date: 2016-04-01 05:19:52+0000\n"
6 "MIME-Version: 1.0\n"
7 "Content-Type: text/plain; charset=UTF-8\n"
8 "Content-Transfer-Encoding: 8bit\n"
9 "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
10 "X-Generator: GlotPress/2.4.0-alpha\n"
11 "Language: gd_GB\n"
12 "Project-Id-Version: Plugins - FakerPress - Development (trunk)\n"
13
14 #: inc/class-fp-utils.php:1191
15 msgid "South Georgia"
16 msgstr "Seòirsea a Deas"
17
18 #: inc/class-fp-utils.php:1156
19 msgid "Singapore"
20 msgstr "Singeapòr"
21
22 #: inc/class-fp-utils.php:1116
23 msgid "Samoa"
24 msgstr "Samotha"
25
26 #: inc/class-fp-utils.php:1121
27 msgid "San Marino"
28 msgstr "San Marino"
29
30 #: inc/class-fp-utils.php:1051
31 msgid "Qatar"
32 msgstr "Catar"
33
34 #: inc/class-fp-utils.php:1046
35 msgid "Puerto Rico"
36 msgstr "Porto Rìceo"
37
38 #: inc/class-fp-utils.php:1006
39 msgid "Panama"
40 msgstr "Panama"
41
42 #: inc/class-fp-utils.php:996
43 msgid "Palau"
44 msgstr "Palabh"
45
46 #: inc/class-fp-utils.php:961
47 msgid "Niue"
48 msgstr "Niue"
49
50 #: inc/class-fp-utils.php:921
51 msgid "Nauru"
52 msgstr "Nauru"
53
54 #: inc/class-fp-utils.php:896
55 msgid "Montserrat"
56 msgstr "Montsarat"
57
58 #: inc/class-fp-utils.php:881
59 msgid "Monaco"
60 msgstr "Monaco"
61
62 #: inc/class-fp-utils.php:861
63 msgid "Mayotte"
64 msgstr "Mayotte/Maore"
65
66 #: inc/class-fp-utils.php:856
67 msgid "Mauritius"
68 msgstr "Na h-Eileanan Mhoiriseas"
69
70 #: inc/class-fp-utils.php:846
71 msgid "Martinique"
72 msgstr "Mairtinic"
73
74 #: inc/class-fp-utils.php:836
75 msgid "Malta"
76 msgstr "Malta"
77
78 #: inc/class-fp-utils.php:826
79 msgid "Maldives"
80 msgstr "Na h-Eileanan Mhaladaibh"
81
82 #: inc/class-fp-utils.php:801
83 msgid "Macau"
84 msgstr "Macàthu"
85
86 #: inc/class-fp-utils.php:796
87 msgid "Luxembourg"
88 msgstr "Lugsamburg"
89
90 #: inc/class-fp-utils.php:746
91 msgid "Kuwait"
92 msgstr "Cuibhèit"
93
94 #: inc/class-fp-utils.php:721
95 msgid "Jersey"
96 msgstr "Deàrsaidh"
97
98 #: inc/class-fp-utils.php:711
99 msgid "Jamaica"
100 msgstr "Diameuga"
101
102 #: inc/class-fp-utils.php:696
103 msgid "Isle of Man"
104 msgstr "Eilean Manainn"
105
106 #: inc/class-fp-utils.php:651
107 msgid "Hong Kong"
108 msgstr "Hong Kong"
109
110 #: inc/class-fp-utils.php:631
111 msgid "Guyana"
112 msgstr "Guidheàna"
113
114 #: inc/class-fp-utils.php:611
115 msgid "Guatemala"
116 msgstr "Guatamala"
117
118 #: inc/class-fp-utils.php:616
119 msgid "Guernsey"
120 msgstr "Geàrnsaidh"
121
122 #: inc/class-fp-utils.php:606
123 msgid "Guam"
124 msgstr "Guam"
125
126 #: inc/class-fp-utils.php:596
127 msgid "Grenada"
128 msgstr "Greanàda"
129
130 #: inc/class-fp-utils.php:601
131 msgid "Guadeloupe"
132 msgstr "Guadalup"
133
134 #: inc/class-fp-utils.php:581
135 msgid "Gibraltar"
136 msgstr "Diobraltar"
137
138 #: inc/class-fp-utils.php:526
139 msgid "Fiji"
140 msgstr "Fìdi"
141
142 #: inc/class-fp-utils.php:491
143 msgid "El Salvador"
144 msgstr "An Salbhador"
145
146 #: inc/class-fp-utils.php:471
147 msgid "Dominica"
148 msgstr "Doiminicea"
149
150 #: inc/class-fp-utils.php:466
151 msgid "Djibouti"
152 msgstr "Diobùtaidh"
153
154 #: inc/class-fp-utils.php:431
155 msgid "Costa Rica"
156 msgstr "Costa Rìcea"
157
158 #: inc/class-fp-utils.php:366
159 msgid "Cape Verde"
160 msgstr "An Ceap Uaine"
161
162 #: inc/class-fp-utils.php:331
163 msgid "Brunei"
164 msgstr "Brùnaigh"
165
166 #: inc/class-fp-utils.php:276
167 msgid "Bermuda"
168 msgstr "Bearmùda"
169
170 #: inc/class-fp-utils.php:266
171 msgid "Belize"
172 msgstr "Beilìs"
173
174 #: inc/class-fp-utils.php:251
175 msgid "Barbados"
176 msgstr "Barbados"
177
178 #: inc/class-fp-utils.php:241
179 msgid "Bahrain"
180 msgstr "Bachrain"
181
182 #: inc/class-fp-utils.php:216
183 msgid "Aruba"
184 msgstr "Arùba"
185
186 #: inc/class-fp-utils.php:221
187 msgid "Australia"
188 msgstr "Astràilia"
189
190 #: inc/class-fp-utils.php:206
191 msgid "Argentina"
192 msgstr "An Argantain"
193
194 #: inc/class-fp-utils.php:196
195 msgid "Anguilla"
196 msgstr "Anguilla"
197
198 #: inc/class-fp-utils.php:186
199 msgid "Andorra"
200 msgstr "Andorra"
...\ No newline at end of file ...\ No newline at end of file
This diff could not be displayed because it is too large.