Weglot Translate – Translate your WP website - Version 1.4.5

Version Description

  • Add more i18n luv. Now we speak WordPress
  • Add Dutch, English_UK, German, Italian, Portuguese_BR, Russian and Spanish languages
Download this release

Release Info

Developer remyb92
Plugin Icon 128x128 Weglot Translate – Translate your WP website
Version 1.4.5
Comparing to
See all releases

Code changes from version 1.4.4 to 1.4.5

WeglotPHPClient/src/Client.php CHANGED
@@ -121,11 +121,17 @@ class Client
121
  }
122
  foreach ($html->find('a') as $k => $row)
123
  {
124
- if($this->full_trim($row->href)!="" && substr($this->full_trim($row->href),-4)==".pdf" && !$this->hasAncestorAttribute($row,'data-wg-notranslate'))
125
  {
126
  array_push($words,array("t"=>"8","w"=>$row->href));
127
  array_push($nodes,array('node'=>$row,'type'=>'a_pdf'));
128
  }
 
 
 
 
 
 
129
  }
130
 
131
 
@@ -182,6 +188,9 @@ class Client
182
  if($nodes[$i]['type']=='a_pdf') {
183
  $nodes[$i]['node']->href = $translated_words[$i];
184
  }
 
 
 
185
  }
186
  //return $doc->saveHTML();
187
  return $html->save();
121
  }
122
  foreach ($html->find('a') as $k => $row)
123
  {
124
+ if($this->full_trim($row->href)!="" && strtolower(substr($this->full_trim($row->href),-4))==".pdf" && !$this->hasAncestorAttribute($row,'data-wg-notranslate'))
125
  {
126
  array_push($words,array("t"=>"8","w"=>$row->href));
127
  array_push($nodes,array('node'=>$row,'type'=>'a_pdf'));
128
  }
129
+ $dv = "data-value";
130
+ if($this->full_trim($row->$dv)!="" && !$this->hasAncestorAttribute($row,'data-wg-notranslate'))
131
+ {
132
+ array_push($words,array("t"=>"2","w"=>$row->$dv));
133
+ array_push($nodes,array('node'=>$row,'type'=>'dv'));
134
+ }
135
  }
136
 
137
 
188
  if($nodes[$i]['type']=='a_pdf') {
189
  $nodes[$i]['node']->href = $translated_words[$i];
190
  }
191
+ if($nodes[$i]['type']=='dv') {
192
+ $nodes[$i]['node']->$dv = $translated_words[$i];
193
+ }
194
  }
195
  //return $doc->saveHTML();
196
  return $html->save();
includes/wg-settings-page.php CHANGED
@@ -47,8 +47,8 @@ if ( WGUtils::isLanguageRTL( $this->original_l ) ) { // Right lo left language
47
  <th scope="row"><?php _e( 'Original Language', 'weglot' ); ?><p style="font-weight:normal;margin-top:2px;"><?php _e( 'What is the original (current) language of your website?', 'weglot' ); ?></p></th>
48
  <td>
49
  <select class="wg-input-select" name="original_l" style="width :200px;">
50
- <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'en' ) { echo 'selected'; } ?> value="en"><?php _e( 'English', 'weglot' ); ?></option>
51
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'fr' ) { echo 'selected'; } ?> value="fr"><?php _e( 'French', 'weglot' ); ?></option>
 
52
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'zh' ) { echo 'selected'; } ?> value="zh"><?php _e( 'Simplified Chinese', 'weglot' ); ?></option>
53
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'tw' ) { echo 'selected'; } ?> value="tw"><?php _e( 'Traditional Chinese', 'weglot' ); ?></option>
54
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'ru' ) { echo 'selected'; } ?> value="ru"><?php _e( 'Russian', 'weglot' ); ?></option>
@@ -113,7 +113,7 @@ if ( WGUtils::isLanguageRTL( $this->original_l ) ) { // Right lo left language
113
  </tr>
114
  <tr valign="top">
115
  <th scope="row"><?php _e( 'Destination Languages', 'weglot' ); ?><p style="font-weight:normal;margin-top:2px;"><?php echo sprintf(__( 'Write the two-letter codes, separated by a comma. Supported languages can be found %shere%s.', 'weglot' ), '<a target="_blank" href="https://weglot.com/translation-api#languages_code">', '</a>'); ?></p></th>
116
- <td><input type="text" class="wg-input-text" name="destination_l" value="<?php echo esc_attr( get_option( 'destination_l' ) ); ?>" placeholder="en,es" required /><?php if ( $this->userInfo['plan'] <= 0 ) { ?><p class="wg-fsubtext"><?php echo sprintf( __( 'On the free plan, you can only choose one language with a maximum of 2000 words. If you want to use more than 1 language and 2000 words, please %supgrade your plan%s.', 'weglot' ), '<a target="_blank" href="https://weglot.com/change-plan">', '</a>' ); ?></p><?php } ?><?php if ( $this->userInfo['plan'] >= 18 && $this->userInfo['plan'] <= 19 ) { ?><p class="wg-fsubtext"><?php echo sprintf( __( 'On the Starter plan, you can only choose one language. If you want to use more than 1 language, please %supgrade your plan%s.', 'weglot' ), '<a target="_blank" href="https://weglot.com/change-plan">', '</a>'); ?></p><?php } ?></td>
117
  </tr>
118
  </table>
119
  <h3 style="border-bottom:1px solid #c0c0c0;padding-bottom:10px;max-width:800px;margin-top:40px;"><?php echo __( 'Language button appearance', 'weglot' ) . ' ' . __( '(Optional)', 'weglot' ); ?></h3>
@@ -132,7 +132,7 @@ if ( WGUtils::isLanguageRTL( $this->original_l ) ) { // Right lo left language
132
  <td>
133
  <select class="wg-input-select" name="type_flags" style="width :200px;">
134
  <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '0' ) { echo 'selected'; } ?> value="0"><?php _e( 'Rectangle mat', 'weglot' ); ?></option>
135
- <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '1' ) { echo 'selected'; } ?> value="1"><?php _e( 'Rectangle bright', 'weglot' ); ?></option>
136
  <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '2' ) { echo 'selected'; } ?> value="2"><?php _e( 'Square', 'weglot' ); ?></option>
137
  <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '3' ) { echo 'selected'; } ?> value="3"><?php _e( 'Circle', 'weglot' ); ?></option>
138
  </select>
47
  <th scope="row"><?php _e( 'Original Language', 'weglot' ); ?><p style="font-weight:normal;margin-top:2px;"><?php _e( 'What is the original (current) language of your website?', 'weglot' ); ?></p></th>
48
  <td>
49
  <select class="wg-input-select" name="original_l" style="width :200px;">
 
50
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'fr' ) { echo 'selected'; } ?> value="fr"><?php _e( 'French', 'weglot' ); ?></option>
51
+ <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'en' ) { echo 'selected'; } ?> value="en"><?php _e( 'English', 'weglot' ); ?></option>
52
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'zh' ) { echo 'selected'; } ?> value="zh"><?php _e( 'Simplified Chinese', 'weglot' ); ?></option>
53
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'tw' ) { echo 'selected'; } ?> value="tw"><?php _e( 'Traditional Chinese', 'weglot' ); ?></option>
54
  <option <?php if ( esc_attr( get_option( 'original_l' ) ) == 'ru' ) { echo 'selected'; } ?> value="ru"><?php _e( 'Russian', 'weglot' ); ?></option>
113
  </tr>
114
  <tr valign="top">
115
  <th scope="row"><?php _e( 'Destination Languages', 'weglot' ); ?><p style="font-weight:normal;margin-top:2px;"><?php echo sprintf(__( 'Write the two-letter codes, separated by a comma. Supported languages can be found %shere%s.', 'weglot' ), '<a target="_blank" href="https://weglot.com/translation-api#languages_code">', '</a>'); ?></p></th>
116
+ <td><input type="text" class="wg-input-text" name="destination_l" value="<?php echo esc_attr( get_option( 'destination_l' ) ); ?>" placeholder="en,es" required /><?php if ( $this->userInfo['plan'] <= 0 ) { ?><p class="wg-fsubtext"><?php echo sprintf( __( 'On the free plan, you can only choose one language and a maximum of 2000 words. If you want to use more than 1 language and 2000 words, please %supgrade your plan%s.', 'weglot' ), '<a target="_blank" href="https://weglot.com/change-plan">', '</a>' ); ?></p><?php } ?><?php if ( $this->userInfo['plan'] >= 18 && $this->userInfo['plan'] <= 19 ) { ?><p class="wg-fsubtext"><?php echo sprintf( __( 'On the Starter plan, you can only choose one language. If you want to use more than 1 language, please %supgrade your plan%s.', 'weglot' ), '<a target="_blank" href="https://weglot.com/change-plan">', '</a>'); ?></p><?php } ?></td>
117
  </tr>
118
  </table>
119
  <h3 style="border-bottom:1px solid #c0c0c0;padding-bottom:10px;max-width:800px;margin-top:40px;"><?php echo __( 'Language button appearance', 'weglot' ) . ' ' . __( '(Optional)', 'weglot' ); ?></h3>
132
  <td>
133
  <select class="wg-input-select" name="type_flags" style="width :200px;">
134
  <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '0' ) { echo 'selected'; } ?> value="0"><?php _e( 'Rectangle mat', 'weglot' ); ?></option>
135
+ <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '1' ) { echo 'selected'; } ?> value="1"><?php _e( 'Rectangle shiny', 'weglot' ); ?></option>
136
  <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '2' ) { echo 'selected'; } ?> value="2"><?php _e( 'Square', 'weglot' ); ?></option>
137
  <option <?php if ( esc_attr( get_option( 'type_flags' ) ) == '3' ) { echo 'selected'; } ?> value="3"><?php _e( 'Circle', 'weglot' ); ?></option>
138
  </select>
languages/weglot-de_DE.mo ADDED
Binary file
languages/weglot-de_DE.po ADDED
@@ -0,0 +1,755 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # Benjamin Sponagel <roanoked@gmail.com>, 2017
5
+ # FX Bénard <fxb@wp-translations.org>, 2017
6
+ # Dirk Weise <code@dirk-weise.de>, 2017
7
+ # Derek Ashauer <derek@ashwebstudio.com>, 2017
8
+ # Gregory Karpinsky <gregory@tiv.net>, 2017
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
12
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
13
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
14
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
15
+ "Last-Translator: Gregory Karpinsky <gregory@tiv.net>, 2017\n"
16
+ "Language-Team: German (Germany) (https://www.transifex.com/wp-translations/"
17
+ "teams/64435/de_DE/)\n"
18
+ "Language: de_DE\n"
19
+ "MIME-Version: 1.0\n"
20
+ "Content-Type: text/plain; charset=UTF-8\n"
21
+ "Content-Transfer-Encoding: 8bit\n"
22
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
+ "X-Generator: grunt-wp-i18n1.0.0\n"
24
+ "X-Poedit-Basepath: ../\n"
25
+ "X-Poedit-Bookmarks: \n"
26
+ "X-Poedit-Country: United States\n"
27
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
28
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
29
+ "esc_html_x:1,2c;\n"
30
+ "X-Poedit-SearchPath-0: .\n"
31
+ "X-Poedit-SourceCharset: UTF-8\n"
32
+ "X-Textdomain-Support: yes\n"
33
+
34
+ #. Plugin Name of the plugin/theme
35
+ msgid "Weglot Translate"
36
+ msgstr ""
37
+
38
+ #: WeglotWidget.php:41
39
+ msgid "Title:"
40
+ msgstr "Titel:"
41
+
42
+ #: includes/wg-settings-page.php:17
43
+ msgid ""
44
+ "Weglot Translate service is not active because you have reached the end of "
45
+ "the trial period."
46
+ msgstr ""
47
+
48
+ #: includes/wg-settings-page.php:18
49
+ msgid "To reactivate the service, please %supgrade your plan%s."
50
+ msgstr ""
51
+
52
+ #: includes/wg-settings-page.php:25
53
+ msgid "Close"
54
+ msgstr "Schließen"
55
+
56
+ #: includes/wg-settings-page.php:26
57
+ msgid "Well done! Your website is now multilingual."
58
+ msgstr ""
59
+
60
+ #: includes/wg-settings-page.php:27
61
+ msgid "Go on your website, there is a language switcher. Try it :)"
62
+ msgstr ""
63
+
64
+ #: includes/wg-settings-page.php:28
65
+ msgid "Go on my front page."
66
+ msgstr ""
67
+
68
+ #: includes/wg-settings-page.php:29
69
+ msgid "Next step, edit your translations directly in your Weglot account."
70
+ msgstr ""
71
+
72
+ #: includes/wg-settings-page.php:40
73
+ msgid "Main configuration"
74
+ msgstr ""
75
+
76
+ #: includes/wg-settings-page.php:43
77
+ msgid "API Key"
78
+ msgstr "API-Schlüssel"
79
+
80
+ #: includes/wg-settings-page.php:43
81
+ msgid "Log in to %sWeglot%s to get your API key."
82
+ msgstr ""
83
+
84
+ #: includes/wg-settings-page.php:47
85
+ msgid "Original Language"
86
+ msgstr ""
87
+
88
+ #: includes/wg-settings-page.php:47
89
+ msgid "What is the original (current) language of your website?"
90
+ msgstr ""
91
+
92
+ #: includes/wg-settings-page.php:50
93
+ msgid "French"
94
+ msgstr "Französisch"
95
+
96
+ #: includes/wg-settings-page.php:51
97
+ msgid "English"
98
+ msgstr "Englisch"
99
+
100
+ #: includes/wg-settings-page.php:52
101
+ msgid "Simplified Chinese"
102
+ msgstr ""
103
+
104
+ #: includes/wg-settings-page.php:53
105
+ msgid "Traditional Chinese"
106
+ msgstr ""
107
+
108
+ #: includes/wg-settings-page.php:54
109
+ msgid "Russian"
110
+ msgstr "Russisch"
111
+
112
+ #: includes/wg-settings-page.php:55
113
+ msgid "German"
114
+ msgstr "Deutsch"
115
+
116
+ #: includes/wg-settings-page.php:56
117
+ msgid "Spanish"
118
+ msgstr "Spanisch"
119
+
120
+ #: includes/wg-settings-page.php:57
121
+ msgid "Albanian"
122
+ msgstr ""
123
+
124
+ #: includes/wg-settings-page.php:58
125
+ msgid "Arabic"
126
+ msgstr ""
127
+
128
+ #: includes/wg-settings-page.php:59
129
+ msgid "Armenian"
130
+ msgstr "Armenisch"
131
+
132
+ #: includes/wg-settings-page.php:60
133
+ msgid "Azerbaijani"
134
+ msgstr ""
135
+
136
+ #: includes/wg-settings-page.php:61
137
+ msgid "Afrikaans"
138
+ msgstr "Afrikaans"
139
+
140
+ #: includes/wg-settings-page.php:62
141
+ msgid "Basque"
142
+ msgstr ""
143
+
144
+ #: includes/wg-settings-page.php:63
145
+ msgid "Belarusian"
146
+ msgstr ""
147
+
148
+ #: includes/wg-settings-page.php:64
149
+ msgid "Bulgarian"
150
+ msgstr "Bulgarisch"
151
+
152
+ #: includes/wg-settings-page.php:65
153
+ msgid "Bosnian"
154
+ msgstr ""
155
+
156
+ #: includes/wg-settings-page.php:66
157
+ msgid "Vietnamese"
158
+ msgstr ""
159
+
160
+ #: includes/wg-settings-page.php:67
161
+ msgid "Hungarian"
162
+ msgstr "Ungarisch"
163
+
164
+ #: includes/wg-settings-page.php:68
165
+ msgid "Haitian"
166
+ msgstr ""
167
+
168
+ #: includes/wg-settings-page.php:69
169
+ msgid "Dutch"
170
+ msgstr "Niederländisch"
171
+
172
+ #: includes/wg-settings-page.php:70
173
+ msgid "Greek"
174
+ msgstr ""
175
+
176
+ #: includes/wg-settings-page.php:71
177
+ msgid "Georgian"
178
+ msgstr "Georgisch"
179
+
180
+ #: includes/wg-settings-page.php:72
181
+ msgid "Danish"
182
+ msgstr ""
183
+
184
+ #: includes/wg-settings-page.php:73
185
+ msgid "Hebrew"
186
+ msgstr "Hebräisch"
187
+
188
+ #: includes/wg-settings-page.php:74
189
+ msgid "Indonesian"
190
+ msgstr "Indonesisch"
191
+
192
+ #: includes/wg-settings-page.php:75
193
+ msgid "Irish"
194
+ msgstr "Irisch"
195
+
196
+ #: includes/wg-settings-page.php:76
197
+ msgid "Italian"
198
+ msgstr "Italienisch"
199
+
200
+ #: includes/wg-settings-page.php:77
201
+ msgid "Icelandic"
202
+ msgstr "Isländisch"
203
+
204
+ #: includes/wg-settings-page.php:78
205
+ msgid "Kazakh"
206
+ msgstr ""
207
+
208
+ #: includes/wg-settings-page.php:79
209
+ msgid "Catalan"
210
+ msgstr "Katalanisch"
211
+
212
+ #: includes/wg-settings-page.php:80
213
+ msgid "Kyrgyz"
214
+ msgstr ""
215
+
216
+ #: includes/wg-settings-page.php:81
217
+ msgid "Korean"
218
+ msgstr "Koreanisch"
219
+
220
+ #: includes/wg-settings-page.php:82
221
+ msgid "Latvian"
222
+ msgstr "Lettisch"
223
+
224
+ #: includes/wg-settings-page.php:83
225
+ msgid "Lithuanian"
226
+ msgstr "Litauisch"
227
+
228
+ #: includes/wg-settings-page.php:84
229
+ msgid "Malagasy"
230
+ msgstr ""
231
+
232
+ #: includes/wg-settings-page.php:85
233
+ msgid "Malay"
234
+ msgstr ""
235
+
236
+ #: includes/wg-settings-page.php:86
237
+ msgid "Maltese"
238
+ msgstr ""
239
+
240
+ #: includes/wg-settings-page.php:87
241
+ msgid "Macedonian"
242
+ msgstr ""
243
+
244
+ #: includes/wg-settings-page.php:88
245
+ msgid "Mongolian"
246
+ msgstr ""
247
+
248
+ #: includes/wg-settings-page.php:89
249
+ msgid "Norwegian"
250
+ msgstr ""
251
+
252
+ #: includes/wg-settings-page.php:90
253
+ msgid "Persian"
254
+ msgstr ""
255
+
256
+ #: includes/wg-settings-page.php:91
257
+ msgid "Polish"
258
+ msgstr "Polnisch"
259
+
260
+ #: includes/wg-settings-page.php:92
261
+ msgid "Portuguese"
262
+ msgstr ""
263
+
264
+ #: includes/wg-settings-page.php:93
265
+ msgid "Romanian"
266
+ msgstr "Rumänisch"
267
+
268
+ #: includes/wg-settings-page.php:94
269
+ msgid "Serbian"
270
+ msgstr "Serbisch"
271
+
272
+ #: includes/wg-settings-page.php:95
273
+ msgid "Slovak"
274
+ msgstr "Slowakisch"
275
+
276
+ #: includes/wg-settings-page.php:96
277
+ msgid "Slovenian"
278
+ msgstr "Slowenisch"
279
+
280
+ #: includes/wg-settings-page.php:97
281
+ msgid "Swahili"
282
+ msgstr ""
283
+
284
+ #: includes/wg-settings-page.php:98
285
+ msgid "Tajik"
286
+ msgstr ""
287
+
288
+ #: includes/wg-settings-page.php:99
289
+ msgid "Thai"
290
+ msgstr "Thai"
291
+
292
+ #: includes/wg-settings-page.php:100
293
+ msgid "Turkish"
294
+ msgstr "Türkisch"
295
+
296
+ #: includes/wg-settings-page.php:101
297
+ msgid "Uzbek"
298
+ msgstr ""
299
+
300
+ #: includes/wg-settings-page.php:102
301
+ msgid "Ukrainian"
302
+ msgstr "Ukrainisch"
303
+
304
+ #: includes/wg-settings-page.php:103
305
+ msgid "Finnish"
306
+ msgstr "Finnisch"
307
+
308
+ #: includes/wg-settings-page.php:104
309
+ msgid "Croatian"
310
+ msgstr "Kroatisch"
311
+
312
+ #: includes/wg-settings-page.php:105
313
+ msgid "Czech"
314
+ msgstr "Tschechisch"
315
+
316
+ #: includes/wg-settings-page.php:106
317
+ msgid "Swedish"
318
+ msgstr "Schwedisch"
319
+
320
+ #: includes/wg-settings-page.php:107
321
+ msgid "Estonian"
322
+ msgstr "Estnisch"
323
+
324
+ #: includes/wg-settings-page.php:108
325
+ msgid "Japanese"
326
+ msgstr "Japanisch"
327
+
328
+ #: includes/wg-settings-page.php:109
329
+ msgid "Hindi"
330
+ msgstr ""
331
+
332
+ #: includes/wg-settings-page.php:110
333
+ msgid "Urdu"
334
+ msgstr ""
335
+
336
+ #: includes/wg-settings-page.php:115
337
+ msgid "Destination Languages"
338
+ msgstr ""
339
+
340
+ #: includes/wg-settings-page.php:115
341
+ msgid ""
342
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
343
+ "found %shere%s."
344
+ msgstr ""
345
+
346
+ #: includes/wg-settings-page.php:116
347
+ msgid ""
348
+ "On the free plan, you can only choose one language with a maximum of 2000 "
349
+ "words. If you want to use more than 1 language and 2000 words, please "
350
+ "%supgrade your plan%s."
351
+ msgstr ""
352
+
353
+ #: includes/wg-settings-page.php:116
354
+ msgid ""
355
+ "On the Starter plan, you can only choose one language. If you want to use "
356
+ "more than 1 language, please %supgrade your plan%s."
357
+ msgstr ""
358
+
359
+ #: includes/wg-settings-page.php:119
360
+ msgid "Language button appearance"
361
+ msgstr ""
362
+
363
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
364
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
365
+ #: includes/wg-settings-page.php:248
366
+ msgid "(Optional)"
367
+ msgstr "(optional)"
368
+
369
+ #: includes/wg-settings-page.php:120
370
+ msgid "Preview:"
371
+ msgstr ""
372
+
373
+ #: includes/wg-settings-page.php:123
374
+ msgid "Dropdown?"
375
+ msgstr ""
376
+
377
+ #: includes/wg-settings-page.php:124
378
+ msgid "Check if you want the button to be a dropdown box."
379
+ msgstr ""
380
+
381
+ #: includes/wg-settings-page.php:127
382
+ msgid "With flags?"
383
+ msgstr ""
384
+
385
+ #: includes/wg-settings-page.php:128
386
+ msgid "Check if you want flags in the language button."
387
+ msgstr ""
388
+
389
+ #: includes/wg-settings-page.php:131
390
+ msgid "Type of flags"
391
+ msgstr ""
392
+
393
+ #: includes/wg-settings-page.php:134
394
+ msgid "Rectangle mat"
395
+ msgstr ""
396
+
397
+ #: includes/wg-settings-page.php:135
398
+ msgid "Rectangle bright"
399
+ msgstr ""
400
+
401
+ #: includes/wg-settings-page.php:136
402
+ msgid "Square"
403
+ msgstr "Quadrat"
404
+
405
+ #: includes/wg-settings-page.php:137
406
+ msgid "Circle"
407
+ msgstr "Kreis"
408
+
409
+ #: includes/wg-settings-page.php:139
410
+ msgid "Change country flags"
411
+ msgstr ""
412
+
413
+ #: includes/wg-settings-page.php:142
414
+ msgid "Choose English flag:"
415
+ msgstr ""
416
+
417
+ #: includes/wg-settings-page.php:143
418
+ msgid "United Kingdom (default)"
419
+ msgstr ""
420
+
421
+ #: includes/wg-settings-page.php:144
422
+ msgid "United States"
423
+ msgstr "Vereinigte Staaten von Amerika"
424
+
425
+ #: includes/wg-settings-page.php:145
426
+ msgid "Australia"
427
+ msgstr "Australien"
428
+
429
+ #: includes/wg-settings-page.php:146
430
+ msgid "Canada"
431
+ msgstr "Kanada"
432
+
433
+ #: includes/wg-settings-page.php:147
434
+ msgid "New Zealand"
435
+ msgstr "Neuseeland"
436
+
437
+ #: includes/wg-settings-page.php:148
438
+ msgid "Jamaica"
439
+ msgstr "Jamaika"
440
+
441
+ #: includes/wg-settings-page.php:149
442
+ msgid "Ireland"
443
+ msgstr "Irland"
444
+
445
+ #: includes/wg-settings-page.php:152
446
+ msgid "Choose Spanish flag:"
447
+ msgstr ""
448
+
449
+ #: includes/wg-settings-page.php:153
450
+ msgid "Spain (default)"
451
+ msgstr ""
452
+
453
+ #: includes/wg-settings-page.php:154
454
+ msgid "Mexico"
455
+ msgstr "Mexiko"
456
+
457
+ #: includes/wg-settings-page.php:155
458
+ msgid "Argentina"
459
+ msgstr "Agentinien"
460
+
461
+ #: includes/wg-settings-page.php:156
462
+ msgid "Colombia"
463
+ msgstr "Colombia"
464
+
465
+ #: includes/wg-settings-page.php:157
466
+ msgid "Peru"
467
+ msgstr "Peru"
468
+
469
+ #: includes/wg-settings-page.php:158
470
+ msgid "Bolivia"
471
+ msgstr "Bolivien"
472
+
473
+ #: includes/wg-settings-page.php:159
474
+ msgid "Uruguay"
475
+ msgstr "Uruguay"
476
+
477
+ #: includes/wg-settings-page.php:160
478
+ msgid "Venezuela"
479
+ msgstr "Venezuela"
480
+
481
+ #: includes/wg-settings-page.php:161
482
+ msgid "Chile"
483
+ msgstr "Chile"
484
+
485
+ #: includes/wg-settings-page.php:162
486
+ msgid "Ecuador"
487
+ msgstr "Ekuador"
488
+
489
+ #: includes/wg-settings-page.php:163
490
+ msgid "Guatemala"
491
+ msgstr "Guatemala"
492
+
493
+ #: includes/wg-settings-page.php:164
494
+ msgid "Cuba"
495
+ msgstr "Kuba"
496
+
497
+ #: includes/wg-settings-page.php:165
498
+ msgid "Dominican Republic"
499
+ msgstr "Dominikanische Republik"
500
+
501
+ #: includes/wg-settings-page.php:166
502
+ msgid "Honduras"
503
+ msgstr "Honduras"
504
+
505
+ #: includes/wg-settings-page.php:167
506
+ msgid "Paraguay"
507
+ msgstr "Paraguay"
508
+
509
+ #: includes/wg-settings-page.php:168
510
+ msgid "El Salvador"
511
+ msgstr "El Salvador"
512
+
513
+ #: includes/wg-settings-page.php:169
514
+ msgid "Nicaragua"
515
+ msgstr "Nicaragua"
516
+
517
+ #: includes/wg-settings-page.php:170
518
+ msgid "Costa Rica"
519
+ msgstr "Costa Rica"
520
+
521
+ #: includes/wg-settings-page.php:171
522
+ msgid "Puerto Rico"
523
+ msgstr "Puerto Rico"
524
+
525
+ #: includes/wg-settings-page.php:172
526
+ msgid "Panama"
527
+ msgstr "Panama"
528
+
529
+ #: includes/wg-settings-page.php:175
530
+ msgid "Choose Portuguese flag:"
531
+ msgstr ""
532
+
533
+ #: includes/wg-settings-page.php:176
534
+ msgid "Brazil (default)"
535
+ msgstr ""
536
+
537
+ #: includes/wg-settings-page.php:177
538
+ msgid "Portugal"
539
+ msgstr "Portugal"
540
+
541
+ #: includes/wg-settings-page.php:179
542
+ msgid "If you want to use a different flag, just ask us."
543
+ msgstr ""
544
+
545
+ #: includes/wg-settings-page.php:184
546
+ msgid "With name?"
547
+ msgstr ""
548
+
549
+ #: includes/wg-settings-page.php:185
550
+ msgid "Check if you want to display the name of languages."
551
+ msgstr ""
552
+
553
+ #: includes/wg-settings-page.php:188
554
+ msgid "Full name?"
555
+ msgstr ""
556
+
557
+ #: includes/wg-settings-page.php:189
558
+ msgid ""
559
+ "Check if you want the name of the languge. Don't check if you want the "
560
+ "language code."
561
+ msgstr ""
562
+
563
+ #: includes/wg-settings-page.php:192
564
+ msgid "Override CSS"
565
+ msgstr ""
566
+
567
+ #: includes/wg-settings-page.php:192
568
+ msgid "Don't change it unless you want a specific style for your button."
569
+ msgstr ""
570
+
571
+ #: includes/wg-settings-page.php:202
572
+ msgid "Language button position"
573
+ msgstr ""
574
+
575
+ #: includes/wg-settings-page.php:203
576
+ msgid ""
577
+ "Where will the language button be on my website? By default, bottom right."
578
+ msgstr ""
579
+
580
+ #: includes/wg-settings-page.php:206
581
+ msgid "In menu?"
582
+ msgstr ""
583
+
584
+ #: includes/wg-settings-page.php:207
585
+ msgid "Check if you want to display the button in the navigation menu."
586
+ msgstr ""
587
+
588
+ #: includes/wg-settings-page.php:210
589
+ msgid "As a widget?"
590
+ msgstr ""
591
+
592
+ #: includes/wg-settings-page.php:211
593
+ msgid ""
594
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
595
+ "drag and drop the Weglot Translate widget where you want."
596
+ msgstr ""
597
+
598
+ #: includes/wg-settings-page.php:214
599
+ msgid "With a shortcode?"
600
+ msgstr ""
601
+
602
+ #: includes/wg-settings-page.php:215
603
+ msgid ""
604
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
605
+ "place the button."
606
+ msgstr ""
607
+
608
+ #: includes/wg-settings-page.php:218
609
+ msgid "In the source code?"
610
+ msgstr ""
611
+
612
+ #: includes/wg-settings-page.php:219
613
+ msgid ""
614
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
615
+ "wherever you want in the source code of your HTML page. The button will "
616
+ "appear at this place."
617
+ msgstr ""
618
+
619
+ #: includes/wg-settings-page.php:222
620
+ msgid "Translation Exclusion"
621
+ msgstr ""
622
+
623
+ #: includes/wg-settings-page.php:224
624
+ msgid ""
625
+ "By default, every page is translated. You can exclude parts of a page or a "
626
+ "full page here."
627
+ msgstr ""
628
+
629
+ #: includes/wg-settings-page.php:227
630
+ msgid "Exclude URL here"
631
+ msgstr ""
632
+
633
+ #: includes/wg-settings-page.php:227
634
+ msgid "You can write regex."
635
+ msgstr ""
636
+
637
+ #: includes/wg-settings-page.php:231
638
+ msgid "Exclude blocks"
639
+ msgstr ""
640
+
641
+ #: includes/wg-settings-page.php:231
642
+ msgid "Enter CSS selectors, separated by commas."
643
+ msgstr ""
644
+
645
+ #: includes/wg-settings-page.php:236
646
+ msgid "Other options"
647
+ msgstr ""
648
+
649
+ #: includes/wg-settings-page.php:240
650
+ msgid "Auto redirect?"
651
+ msgstr ""
652
+
653
+ #: includes/wg-settings-page.php:241
654
+ msgid "Check if you want to redirect users based on their browser language."
655
+ msgstr ""
656
+
657
+ #: includes/wg-settings-page.php:246
658
+ msgid "Left to Right languages"
659
+ msgstr ""
660
+
661
+ #: includes/wg-settings-page.php:246
662
+ msgid "Right to Left languages"
663
+ msgstr ""
664
+
665
+ #: includes/wg-settings-page.php:248
666
+ msgid "Customize style for "
667
+ msgstr ""
668
+
669
+ #: includes/wg-settings-page.php:252
670
+ msgid "Write CSS rules to apply on %s page."
671
+ msgstr ""
672
+
673
+ #: includes/wg-settings-page.php:261
674
+ msgid "Where are my translations?"
675
+ msgstr ""
676
+
677
+ #: includes/wg-settings-page.php:263
678
+ msgid "You can find all your translations in your Weglot account:"
679
+ msgstr ""
680
+
681
+ #: includes/wg-settings-page.php:264
682
+ msgid "https://weglot.com/dashboard"
683
+ msgstr ""
684
+
685
+ #: includes/wg-settings-page.php:264
686
+ msgid "Edit my translations"
687
+ msgstr ""
688
+
689
+ #: includes/wg-settings-page.php:269
690
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
691
+ msgstr ""
692
+
693
+ #: includes/wg-settings-page.php:272
694
+ msgid ""
695
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
696
+ "or email us at support@weglot.com."
697
+ msgstr ""
698
+
699
+ #: weglot.php:181
700
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
701
+ msgstr ""
702
+
703
+ #: weglot.php:181
704
+ msgid ""
705
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
706
+ "greater. Your current version of PHP is %s."
707
+ msgstr ""
708
+
709
+ #: weglot.php:181
710
+ msgid ""
711
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
712
+ "sending it an email."
713
+ msgstr ""
714
+
715
+ #: weglot.php:182
716
+ msgid "Plugin Activation Error"
717
+ msgstr ""
718
+
719
+ #: weglot.php:221
720
+ msgid "Settings"
721
+ msgstr "Einstellungen"
722
+
723
+ #: weglot.php:228
724
+ msgid ""
725
+ "Weglot Translate is not active because you have exceeded the free limit. "
726
+ "Please %supgrade your plan%s if you want to keep the service running."
727
+ msgstr ""
728
+
729
+ #: weglot.php:236
730
+ msgid ""
731
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
732
+ "Please upgrade your PHP version (you can contact your host and they will do "
733
+ "it for you)."
734
+ msgstr ""
735
+
736
+ #: weglot.php:244
737
+ msgid ""
738
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
739
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
740
+ "us directly %2$shere%3$s."
741
+ msgstr ""
742
+
743
+ #. Plugin URI of the plugin/theme
744
+ msgid "http://wordpress.org/plugins/Weglot/"
745
+ msgstr ""
746
+
747
+ #. Description of the plugin/theme
748
+ msgid ""
749
+ "Translate your website into multiple languages in minutes without doing any "
750
+ "coding. Fully SEO compatible."
751
+ msgstr ""
752
+
753
+ #. Author of the plugin/theme
754
+ msgid "Remy B"
755
+ msgstr ""
languages/weglot-en_GB.mo ADDED
Binary file
languages/weglot-en_GB.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # Damian Barnett <barnez@gmx.com>, 2017
5
+ # FX Bénard <fxb@wp-translations.org>, 2017
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
9
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
10
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
11
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FX Bénard <fxb@wp-translations.org>, 2017\n"
13
+ "Language-Team: English (United Kingdom) (https://www.transifex.com/wp-"
14
+ "translations/teams/64435/en_GB/)\n"
15
+ "Language: en_GB\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Generator: grunt-wp-i18n1.0.0\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Poedit-Bookmarks: \n"
23
+ "X-Poedit-Country: United States\n"
24
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
25
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
26
+ "esc_html_x:1,2c;\n"
27
+ "X-Poedit-SearchPath-0: .\n"
28
+ "X-Poedit-SourceCharset: UTF-8\n"
29
+ "X-Textdomain-Support: yes\n"
30
+
31
+ #. Plugin Name of the plugin/theme
32
+ msgid "Weglot Translate"
33
+ msgstr "Weglot Translate"
34
+
35
+ #: WeglotWidget.php:41
36
+ msgid "Title:"
37
+ msgstr "Title:"
38
+
39
+ #: includes/wg-settings-page.php:17
40
+ msgid ""
41
+ "Weglot Translate service is not active because you have reached the end of "
42
+ "the trial period."
43
+ msgstr ""
44
+ "Weglot Translate service is not active because you have reached the end of "
45
+ "the trial period."
46
+
47
+ #: includes/wg-settings-page.php:18
48
+ msgid "To reactivate the service, please %supgrade your plan%s."
49
+ msgstr "To reactivate the service, please %supgrade your plan%s."
50
+
51
+ #: includes/wg-settings-page.php:25
52
+ msgid "Close"
53
+ msgstr "Close"
54
+
55
+ #: includes/wg-settings-page.php:26
56
+ msgid "Well done! Your website is now multilingual."
57
+ msgstr "Well done! Your website is now multilingual."
58
+
59
+ #: includes/wg-settings-page.php:27
60
+ msgid "Go on your website, there is a language switcher. Try it :)"
61
+ msgstr "Go on your website, there is a language switcher. Try it :)"
62
+
63
+ #: includes/wg-settings-page.php:28
64
+ msgid "Go on my front page."
65
+ msgstr "Go on my front page."
66
+
67
+ #: includes/wg-settings-page.php:29
68
+ msgid "Next step, edit your translations directly in your Weglot account."
69
+ msgstr "Next step, edit your translations directly in your Weglot account."
70
+
71
+ #: includes/wg-settings-page.php:40
72
+ msgid "Main configuration"
73
+ msgstr "Main configuration"
74
+
75
+ #: includes/wg-settings-page.php:43
76
+ msgid "API Key"
77
+ msgstr "API Key"
78
+
79
+ #: includes/wg-settings-page.php:43
80
+ msgid "Log in to %sWeglot%s to get your API key."
81
+ msgstr "Log in to %sWeglot%s to get your API key."
82
+
83
+ #: includes/wg-settings-page.php:47
84
+ msgid "Original Language"
85
+ msgstr "Original Language"
86
+
87
+ #: includes/wg-settings-page.php:47
88
+ msgid "What is the original (current) language of your website?"
89
+ msgstr "What is the original (current) language of your website?"
90
+
91
+ #: includes/wg-settings-page.php:50
92
+ msgid "French"
93
+ msgstr "French"
94
+
95
+ #: includes/wg-settings-page.php:51
96
+ msgid "English"
97
+ msgstr "English"
98
+
99
+ #: includes/wg-settings-page.php:52
100
+ msgid "Simplified Chinese"
101
+ msgstr "Simplified Chinese"
102
+
103
+ #: includes/wg-settings-page.php:53
104
+ msgid "Traditional Chinese"
105
+ msgstr "Traditional Chinese"
106
+
107
+ #: includes/wg-settings-page.php:54
108
+ msgid "Russian"
109
+ msgstr "Russian"
110
+
111
+ #: includes/wg-settings-page.php:55
112
+ msgid "German"
113
+ msgstr "German"
114
+
115
+ #: includes/wg-settings-page.php:56
116
+ msgid "Spanish"
117
+ msgstr "Spanish"
118
+
119
+ #: includes/wg-settings-page.php:57
120
+ msgid "Albanian"
121
+ msgstr "Albanian"
122
+
123
+ #: includes/wg-settings-page.php:58
124
+ msgid "Arabic"
125
+ msgstr "Arabic"
126
+
127
+ #: includes/wg-settings-page.php:59
128
+ msgid "Armenian"
129
+ msgstr "Armenian"
130
+
131
+ #: includes/wg-settings-page.php:60
132
+ msgid "Azerbaijani"
133
+ msgstr "Azerbaijani"
134
+
135
+ #: includes/wg-settings-page.php:61
136
+ msgid "Afrikaans"
137
+ msgstr "Afrikaans"
138
+
139
+ #: includes/wg-settings-page.php:62
140
+ msgid "Basque"
141
+ msgstr "Basque"
142
+
143
+ #: includes/wg-settings-page.php:63
144
+ msgid "Belarusian"
145
+ msgstr "Belarusian"
146
+
147
+ #: includes/wg-settings-page.php:64
148
+ msgid "Bulgarian"
149
+ msgstr "Bulgarian"
150
+
151
+ #: includes/wg-settings-page.php:65
152
+ msgid "Bosnian"
153
+ msgstr "Bosnian"
154
+
155
+ #: includes/wg-settings-page.php:66
156
+ msgid "Vietnamese"
157
+ msgstr "Vietnamese"
158
+
159
+ #: includes/wg-settings-page.php:67
160
+ msgid "Hungarian"
161
+ msgstr "Hungarian"
162
+
163
+ #: includes/wg-settings-page.php:68
164
+ msgid "Haitian"
165
+ msgstr "Haitian"
166
+
167
+ #: includes/wg-settings-page.php:69
168
+ msgid "Dutch"
169
+ msgstr "Dutch"
170
+
171
+ #: includes/wg-settings-page.php:70
172
+ msgid "Greek"
173
+ msgstr "Greek"
174
+
175
+ #: includes/wg-settings-page.php:71
176
+ msgid "Georgian"
177
+ msgstr "Georgian"
178
+
179
+ #: includes/wg-settings-page.php:72
180
+ msgid "Danish"
181
+ msgstr "Danish"
182
+
183
+ #: includes/wg-settings-page.php:73
184
+ msgid "Hebrew"
185
+ msgstr "Hebrew"
186
+
187
+ #: includes/wg-settings-page.php:74
188
+ msgid "Indonesian"
189
+ msgstr "Indonesian"
190
+
191
+ #: includes/wg-settings-page.php:75
192
+ msgid "Irish"
193
+ msgstr "Irish"
194
+
195
+ #: includes/wg-settings-page.php:76
196
+ msgid "Italian"
197
+ msgstr "Italian"
198
+
199
+ #: includes/wg-settings-page.php:77
200
+ msgid "Icelandic"
201
+ msgstr "Icelandic"
202
+
203
+ #: includes/wg-settings-page.php:78
204
+ msgid "Kazakh"
205
+ msgstr "Kazakh"
206
+
207
+ #: includes/wg-settings-page.php:79
208
+ msgid "Catalan"
209
+ msgstr "Catalan"
210
+
211
+ #: includes/wg-settings-page.php:80
212
+ msgid "Kyrgyz"
213
+ msgstr "Kyrgyz"
214
+
215
+ #: includes/wg-settings-page.php:81
216
+ msgid "Korean"
217
+ msgstr "Korean"
218
+
219
+ #: includes/wg-settings-page.php:82
220
+ msgid "Latvian"
221
+ msgstr "Latvian"
222
+
223
+ #: includes/wg-settings-page.php:83
224
+ msgid "Lithuanian"
225
+ msgstr "Lithuanian"
226
+
227
+ #: includes/wg-settings-page.php:84
228
+ msgid "Malagasy"
229
+ msgstr "Malagasy"
230
+
231
+ #: includes/wg-settings-page.php:85
232
+ msgid "Malay"
233
+ msgstr "Malay"
234
+
235
+ #: includes/wg-settings-page.php:86
236
+ msgid "Maltese"
237
+ msgstr "Maltese"
238
+
239
+ #: includes/wg-settings-page.php:87
240
+ msgid "Macedonian"
241
+ msgstr "Macedonian"
242
+
243
+ #: includes/wg-settings-page.php:88
244
+ msgid "Mongolian"
245
+ msgstr "Mongolian"
246
+
247
+ #: includes/wg-settings-page.php:89
248
+ msgid "Norwegian"
249
+ msgstr "Norwegian"
250
+
251
+ #: includes/wg-settings-page.php:90
252
+ msgid "Persian"
253
+ msgstr "Persian"
254
+
255
+ #: includes/wg-settings-page.php:91
256
+ msgid "Polish"
257
+ msgstr "Polish"
258
+
259
+ #: includes/wg-settings-page.php:92
260
+ msgid "Portuguese"
261
+ msgstr "Portuguese"
262
+
263
+ #: includes/wg-settings-page.php:93
264
+ msgid "Romanian"
265
+ msgstr "Romanian"
266
+
267
+ #: includes/wg-settings-page.php:94
268
+ msgid "Serbian"
269
+ msgstr "Serbian"
270
+
271
+ #: includes/wg-settings-page.php:95
272
+ msgid "Slovak"
273
+ msgstr "Slovak"
274
+
275
+ #: includes/wg-settings-page.php:96
276
+ msgid "Slovenian"
277
+ msgstr "Slovenian"
278
+
279
+ #: includes/wg-settings-page.php:97
280
+ msgid "Swahili"
281
+ msgstr "Swahili"
282
+
283
+ #: includes/wg-settings-page.php:98
284
+ msgid "Tajik"
285
+ msgstr "Tajik"
286
+
287
+ #: includes/wg-settings-page.php:99
288
+ msgid "Thai"
289
+ msgstr "Thai"
290
+
291
+ #: includes/wg-settings-page.php:100
292
+ msgid "Turkish"
293
+ msgstr "Turkish"
294
+
295
+ #: includes/wg-settings-page.php:101
296
+ msgid "Uzbek"
297
+ msgstr "Uzbek"
298
+
299
+ #: includes/wg-settings-page.php:102
300
+ msgid "Ukrainian"
301
+ msgstr "Ukrainian"
302
+
303
+ #: includes/wg-settings-page.php:103
304
+ msgid "Finnish"
305
+ msgstr "Finnish"
306
+
307
+ #: includes/wg-settings-page.php:104
308
+ msgid "Croatian"
309
+ msgstr "Croatian"
310
+
311
+ #: includes/wg-settings-page.php:105
312
+ msgid "Czech"
313
+ msgstr "Czech"
314
+
315
+ #: includes/wg-settings-page.php:106
316
+ msgid "Swedish"
317
+ msgstr "Swedish"
318
+
319
+ #: includes/wg-settings-page.php:107
320
+ msgid "Estonian"
321
+ msgstr "Estonian"
322
+
323
+ #: includes/wg-settings-page.php:108
324
+ msgid "Japanese"
325
+ msgstr "Japanese"
326
+
327
+ #: includes/wg-settings-page.php:109
328
+ msgid "Hindi"
329
+ msgstr "Hindi"
330
+
331
+ #: includes/wg-settings-page.php:110
332
+ msgid "Urdu"
333
+ msgstr "Urdu"
334
+
335
+ #: includes/wg-settings-page.php:115
336
+ msgid "Destination Languages"
337
+ msgstr "Destination Languages"
338
+
339
+ #: includes/wg-settings-page.php:115
340
+ msgid ""
341
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
342
+ "found %shere%s."
343
+ msgstr ""
344
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
345
+ "found %shere%s."
346
+
347
+ #: includes/wg-settings-page.php:116
348
+ msgid ""
349
+ "On the free plan, you can only choose one language with a maximum of 2000 "
350
+ "words. If you want to use more than 1 language and 2000 words, please "
351
+ "%supgrade your plan%s."
352
+ msgstr ""
353
+
354
+ #: includes/wg-settings-page.php:116
355
+ msgid ""
356
+ "On the Starter plan, you can only choose one language. If you want to use "
357
+ "more than 1 language, please %supgrade your plan%s."
358
+ msgstr ""
359
+ "On the Starter plan, you can only choose one language. If you want to use "
360
+ "more than 1 language, please %supgrade your plan%s."
361
+
362
+ #: includes/wg-settings-page.php:119
363
+ msgid "Language button appearance"
364
+ msgstr "Language button appearance"
365
+
366
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
367
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
368
+ #: includes/wg-settings-page.php:248
369
+ msgid "(Optional)"
370
+ msgstr "(Optional)"
371
+
372
+ #: includes/wg-settings-page.php:120
373
+ msgid "Preview:"
374
+ msgstr "Preview:"
375
+
376
+ #: includes/wg-settings-page.php:123
377
+ msgid "Dropdown?"
378
+ msgstr "Dropdown?"
379
+
380
+ #: includes/wg-settings-page.php:124
381
+ msgid "Check if you want the button to be a dropdown box."
382
+ msgstr "Check if you want the button to be a dropdown box."
383
+
384
+ #: includes/wg-settings-page.php:127
385
+ msgid "With flags?"
386
+ msgstr "With flags?"
387
+
388
+ #: includes/wg-settings-page.php:128
389
+ msgid "Check if you want flags in the language button."
390
+ msgstr "Check if you want flags in the language button."
391
+
392
+ #: includes/wg-settings-page.php:131
393
+ msgid "Type of flags"
394
+ msgstr "Type of flags"
395
+
396
+ #: includes/wg-settings-page.php:134
397
+ msgid "Rectangle mat"
398
+ msgstr "Rectangle mat"
399
+
400
+ #: includes/wg-settings-page.php:135
401
+ msgid "Rectangle bright"
402
+ msgstr "Rectangle bright"
403
+
404
+ #: includes/wg-settings-page.php:136
405
+ msgid "Square"
406
+ msgstr "Square"
407
+
408
+ #: includes/wg-settings-page.php:137
409
+ msgid "Circle"
410
+ msgstr "Circle"
411
+
412
+ #: includes/wg-settings-page.php:139
413
+ msgid "Change country flags"
414
+ msgstr "Change country flags"
415
+
416
+ #: includes/wg-settings-page.php:142
417
+ msgid "Choose English flag:"
418
+ msgstr "Choose English flag:"
419
+
420
+ #: includes/wg-settings-page.php:143
421
+ msgid "United Kingdom (default)"
422
+ msgstr "United Kingdom (default)"
423
+
424
+ #: includes/wg-settings-page.php:144
425
+ msgid "United States"
426
+ msgstr "United States"
427
+
428
+ #: includes/wg-settings-page.php:145
429
+ msgid "Australia"
430
+ msgstr "Australia"
431
+
432
+ #: includes/wg-settings-page.php:146
433
+ msgid "Canada"
434
+ msgstr "Canada"
435
+
436
+ #: includes/wg-settings-page.php:147
437
+ msgid "New Zealand"
438
+ msgstr "New Zealand"
439
+
440
+ #: includes/wg-settings-page.php:148
441
+ msgid "Jamaica"
442
+ msgstr "Jamaica"
443
+
444
+ #: includes/wg-settings-page.php:149
445
+ msgid "Ireland"
446
+ msgstr "Ireland"
447
+
448
+ #: includes/wg-settings-page.php:152
449
+ msgid "Choose Spanish flag:"
450
+ msgstr "Choose Spanish flag:"
451
+
452
+ #: includes/wg-settings-page.php:153
453
+ msgid "Spain (default)"
454
+ msgstr "Spain (default)"
455
+
456
+ #: includes/wg-settings-page.php:154
457
+ msgid "Mexico"
458
+ msgstr "Mexico"
459
+
460
+ #: includes/wg-settings-page.php:155
461
+ msgid "Argentina"
462
+ msgstr "Argentina"
463
+
464
+ #: includes/wg-settings-page.php:156
465
+ msgid "Colombia"
466
+ msgstr "Colombia"
467
+
468
+ #: includes/wg-settings-page.php:157
469
+ msgid "Peru"
470
+ msgstr "Peru"
471
+
472
+ #: includes/wg-settings-page.php:158
473
+ msgid "Bolivia"
474
+ msgstr "Bolivia"
475
+
476
+ #: includes/wg-settings-page.php:159
477
+ msgid "Uruguay"
478
+ msgstr "Uruguay"
479
+
480
+ #: includes/wg-settings-page.php:160
481
+ msgid "Venezuela"
482
+ msgstr "Venezuela"
483
+
484
+ #: includes/wg-settings-page.php:161
485
+ msgid "Chile"
486
+ msgstr "Chile"
487
+
488
+ #: includes/wg-settings-page.php:162
489
+ msgid "Ecuador"
490
+ msgstr "Ecuador"
491
+
492
+ #: includes/wg-settings-page.php:163
493
+ msgid "Guatemala"
494
+ msgstr "Guatemala"
495
+
496
+ #: includes/wg-settings-page.php:164
497
+ msgid "Cuba"
498
+ msgstr "Cuba"
499
+
500
+ #: includes/wg-settings-page.php:165
501
+ msgid "Dominican Republic"
502
+ msgstr "Dominican Republic"
503
+
504
+ #: includes/wg-settings-page.php:166
505
+ msgid "Honduras"
506
+ msgstr "Honduras"
507
+
508
+ #: includes/wg-settings-page.php:167
509
+ msgid "Paraguay"
510
+ msgstr "Paraguay"
511
+
512
+ #: includes/wg-settings-page.php:168
513
+ msgid "El Salvador"
514
+ msgstr "El Salvador"
515
+
516
+ #: includes/wg-settings-page.php:169
517
+ msgid "Nicaragua"
518
+ msgstr "Nicaragua"
519
+
520
+ #: includes/wg-settings-page.php:170
521
+ msgid "Costa Rica"
522
+ msgstr "Costa Rica"
523
+
524
+ #: includes/wg-settings-page.php:171
525
+ msgid "Puerto Rico"
526
+ msgstr "Puerto Rico"
527
+
528
+ #: includes/wg-settings-page.php:172
529
+ msgid "Panama"
530
+ msgstr "Panama"
531
+
532
+ #: includes/wg-settings-page.php:175
533
+ msgid "Choose Portuguese flag:"
534
+ msgstr ""
535
+
536
+ #: includes/wg-settings-page.php:176
537
+ msgid "Brazil (default)"
538
+ msgstr "Brazil (default)"
539
+
540
+ #: includes/wg-settings-page.php:177
541
+ msgid "Portugal"
542
+ msgstr "Portugal"
543
+
544
+ #: includes/wg-settings-page.php:179
545
+ msgid "If you want to use a different flag, just ask us."
546
+ msgstr "If you want to use a different flag, just ask us."
547
+
548
+ #: includes/wg-settings-page.php:184
549
+ msgid "With name?"
550
+ msgstr "With name?"
551
+
552
+ #: includes/wg-settings-page.php:185
553
+ msgid "Check if you want to display the name of languages."
554
+ msgstr "Check if you want to display the name of languages."
555
+
556
+ #: includes/wg-settings-page.php:188
557
+ msgid "Full name?"
558
+ msgstr "Full name?"
559
+
560
+ #: includes/wg-settings-page.php:189
561
+ msgid ""
562
+ "Check if you want the name of the languge. Don't check if you want the "
563
+ "language code."
564
+ msgstr ""
565
+ "Check if you want the name of the languge. Don't check if you want the "
566
+ "language code."
567
+
568
+ #: includes/wg-settings-page.php:192
569
+ msgid "Override CSS"
570
+ msgstr "Override CSS"
571
+
572
+ #: includes/wg-settings-page.php:192
573
+ msgid "Don't change it unless you want a specific style for your button."
574
+ msgstr "Don't change it unless you want a specific style for your button."
575
+
576
+ #: includes/wg-settings-page.php:202
577
+ msgid "Language button position"
578
+ msgstr "Language button position"
579
+
580
+ #: includes/wg-settings-page.php:203
581
+ msgid ""
582
+ "Where will the language button be on my website? By default, bottom right."
583
+ msgstr ""
584
+ "Where will the language button be on my website? By default, bottom right."
585
+
586
+ #: includes/wg-settings-page.php:206
587
+ msgid "In menu?"
588
+ msgstr "In menu?"
589
+
590
+ #: includes/wg-settings-page.php:207
591
+ msgid "Check if you want to display the button in the navigation menu."
592
+ msgstr "Check if you want to display the button in the navigation menu."
593
+
594
+ #: includes/wg-settings-page.php:210
595
+ msgid "As a widget?"
596
+ msgstr "As a widget?"
597
+
598
+ #: includes/wg-settings-page.php:211
599
+ msgid ""
600
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
601
+ "drag and drop the Weglot Translate widget where you want."
602
+ msgstr ""
603
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
604
+ "drag and drop the Weglot Translate widget where you want."
605
+
606
+ #: includes/wg-settings-page.php:214
607
+ msgid "With a shortcode?"
608
+ msgstr "With a shortcode?"
609
+
610
+ #: includes/wg-settings-page.php:215
611
+ msgid ""
612
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
613
+ "place the button."
614
+ msgstr ""
615
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
616
+ "place the button."
617
+
618
+ #: includes/wg-settings-page.php:218
619
+ msgid "In the source code?"
620
+ msgstr "In the source code?"
621
+
622
+ #: includes/wg-settings-page.php:219
623
+ msgid ""
624
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
625
+ "wherever you want in the source code of your HTML page. The button will "
626
+ "appear at this place."
627
+ msgstr ""
628
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
629
+ "wherever you want in the source code of your HTML page. The button will "
630
+ "appear at this place."
631
+
632
+ #: includes/wg-settings-page.php:222
633
+ msgid "Translation Exclusion"
634
+ msgstr "Translation Exclusion"
635
+
636
+ #: includes/wg-settings-page.php:224
637
+ msgid ""
638
+ "By default, every page is translated. You can exclude parts of a page or a "
639
+ "full page here."
640
+ msgstr ""
641
+ "By default, every page is translated. You can exclude parts of a page or a "
642
+ "full page here."
643
+
644
+ #: includes/wg-settings-page.php:227
645
+ msgid "Exclude URL here"
646
+ msgstr "Exclude URL here"
647
+
648
+ #: includes/wg-settings-page.php:227
649
+ msgid "You can write regex."
650
+ msgstr "You can write regex."
651
+
652
+ #: includes/wg-settings-page.php:231
653
+ msgid "Exclude blocks"
654
+ msgstr "Exclude blocks"
655
+
656
+ #: includes/wg-settings-page.php:231
657
+ msgid "Enter CSS selectors, separated by commas."
658
+ msgstr "Enter CSS selectors, separated by commas."
659
+
660
+ #: includes/wg-settings-page.php:236
661
+ msgid "Other options"
662
+ msgstr "Other options"
663
+
664
+ #: includes/wg-settings-page.php:240
665
+ msgid "Auto redirect?"
666
+ msgstr "Auto redirect?"
667
+
668
+ #: includes/wg-settings-page.php:241
669
+ msgid "Check if you want to redirect users based on their browser language."
670
+ msgstr "Check if you want to redirect users based on their browser language."
671
+
672
+ #: includes/wg-settings-page.php:246
673
+ msgid "Left to Right languages"
674
+ msgstr "Left to Right languages"
675
+
676
+ #: includes/wg-settings-page.php:246
677
+ msgid "Right to Left languages"
678
+ msgstr "Right to Left languages"
679
+
680
+ #: includes/wg-settings-page.php:248
681
+ msgid "Customize style for "
682
+ msgstr "Customise style for "
683
+
684
+ #: includes/wg-settings-page.php:252
685
+ msgid "Write CSS rules to apply on %s page."
686
+ msgstr "Write CSS rules to apply on %s page."
687
+
688
+ #: includes/wg-settings-page.php:261
689
+ msgid "Where are my translations?"
690
+ msgstr "Where are my translations?"
691
+
692
+ #: includes/wg-settings-page.php:263
693
+ msgid "You can find all your translations in your Weglot account:"
694
+ msgstr "You can find all your translations in your Weglot account:"
695
+
696
+ #: includes/wg-settings-page.php:264
697
+ msgid "https://weglot.com/dashboard"
698
+ msgstr "https://weglot.com/dashboard"
699
+
700
+ #: includes/wg-settings-page.php:264
701
+ msgid "Edit my translations"
702
+ msgstr "Edit my translations"
703
+
704
+ #: includes/wg-settings-page.php:269
705
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
706
+ msgstr "Love Weglot? Give us 5 stars on WordPress.org :)"
707
+
708
+ #: includes/wg-settings-page.php:272
709
+ msgid ""
710
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
711
+ "or email us at support@weglot.com."
712
+ msgstr ""
713
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
714
+ "or email us at support@weglot.com."
715
+
716
+ #: weglot.php:181
717
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
718
+ msgstr ""
719
+
720
+ #: weglot.php:181
721
+ msgid ""
722
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
723
+ "greater. Your current version of PHP is %s."
724
+ msgstr ""
725
+
726
+ #: weglot.php:181
727
+ msgid ""
728
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
729
+ "sending it an email."
730
+ msgstr ""
731
+
732
+ #: weglot.php:182
733
+ msgid "Plugin Activation Error"
734
+ msgstr ""
735
+
736
+ #: weglot.php:221
737
+ msgid "Settings"
738
+ msgstr "Settings"
739
+
740
+ #: weglot.php:228
741
+ msgid ""
742
+ "Weglot Translate is not active because you have exceeded the free limit. "
743
+ "Please %supgrade your plan%s if you want to keep the service running."
744
+ msgstr ""
745
+ "Weglot Translate is not active because you have exceeded the free limit. "
746
+ "Please %supgrade your plan%s if you want to keep the service running."
747
+
748
+ #: weglot.php:236
749
+ msgid ""
750
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
751
+ "Please upgrade your PHP version (you can contact your host and they will do "
752
+ "it for you)."
753
+ msgstr ""
754
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
755
+ "Please upgrade your PHP version (you can contact your host and they will do "
756
+ "it for you)."
757
+
758
+ #: weglot.php:244
759
+ msgid ""
760
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
761
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
762
+ "us directly %2$shere%3$s."
763
+ msgstr ""
764
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
765
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
766
+ "us directly %2$shere%3$s."
767
+
768
+ #. Plugin URI of the plugin/theme
769
+ msgid "http://wordpress.org/plugins/Weglot/"
770
+ msgstr "http://wordpress.org/plugins/Weglot/"
771
+
772
+ #. Description of the plugin/theme
773
+ msgid ""
774
+ "Translate your website into multiple languages in minutes without doing any "
775
+ "coding. Fully SEO compatible."
776
+ msgstr ""
777
+ "Translate your website into multiple languages in minutes without doing any "
778
+ "coding. Fully SEO compatible."
779
+
780
+ #. Author of the plugin/theme
781
+ msgid "Remy B"
782
+ msgstr "Remy B"
languages/weglot-es_ES.mo ADDED
Binary file
languages/weglot-es_ES.po ADDED
@@ -0,0 +1,753 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # FX Bénard <fxb@wp-translations.org>, 2017
5
+ # Derek Ashauer <derek@ashwebstudio.com>, 2017
6
+ # Robert Bruun <robert@cacplus.com>, 2017
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
10
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
11
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
12
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: Robert Bruun <robert@cacplus.com>, 2017\n"
14
+ "Language-Team: Spanish (Spain) (https://www.transifex.com/wp-translations/"
15
+ "teams/64435/es_ES/)\n"
16
+ "Language: es_ES\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+ "X-Generator: grunt-wp-i18n1.0.0\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Poedit-Bookmarks: \n"
24
+ "X-Poedit-Country: United States\n"
25
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
26
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
27
+ "esc_html_x:1,2c;\n"
28
+ "X-Poedit-SearchPath-0: .\n"
29
+ "X-Poedit-SourceCharset: UTF-8\n"
30
+ "X-Textdomain-Support: yes\n"
31
+
32
+ #. Plugin Name of the plugin/theme
33
+ msgid "Weglot Translate"
34
+ msgstr ""
35
+
36
+ #: WeglotWidget.php:41
37
+ msgid "Title:"
38
+ msgstr "Titulo:"
39
+
40
+ #: includes/wg-settings-page.php:17
41
+ msgid ""
42
+ "Weglot Translate service is not active because you have reached the end of "
43
+ "the trial period."
44
+ msgstr ""
45
+
46
+ #: includes/wg-settings-page.php:18
47
+ msgid "To reactivate the service, please %supgrade your plan%s."
48
+ msgstr ""
49
+
50
+ #: includes/wg-settings-page.php:25
51
+ msgid "Close"
52
+ msgstr "Cerrado"
53
+
54
+ #: includes/wg-settings-page.php:26
55
+ msgid "Well done! Your website is now multilingual."
56
+ msgstr ""
57
+
58
+ #: includes/wg-settings-page.php:27
59
+ msgid "Go on your website, there is a language switcher. Try it :)"
60
+ msgstr ""
61
+
62
+ #: includes/wg-settings-page.php:28
63
+ msgid "Go on my front page."
64
+ msgstr ""
65
+
66
+ #: includes/wg-settings-page.php:29
67
+ msgid "Next step, edit your translations directly in your Weglot account."
68
+ msgstr ""
69
+
70
+ #: includes/wg-settings-page.php:40
71
+ msgid "Main configuration"
72
+ msgstr ""
73
+
74
+ #: includes/wg-settings-page.php:43
75
+ msgid "API Key"
76
+ msgstr "Clave de la API"
77
+
78
+ #: includes/wg-settings-page.php:43
79
+ msgid "Log in to %sWeglot%s to get your API key."
80
+ msgstr ""
81
+
82
+ #: includes/wg-settings-page.php:47
83
+ msgid "Original Language"
84
+ msgstr ""
85
+
86
+ #: includes/wg-settings-page.php:47
87
+ msgid "What is the original (current) language of your website?"
88
+ msgstr ""
89
+
90
+ #: includes/wg-settings-page.php:50
91
+ msgid "French"
92
+ msgstr "Francés"
93
+
94
+ #: includes/wg-settings-page.php:51
95
+ msgid "English"
96
+ msgstr "Inglés"
97
+
98
+ #: includes/wg-settings-page.php:52
99
+ msgid "Simplified Chinese"
100
+ msgstr ""
101
+
102
+ #: includes/wg-settings-page.php:53
103
+ msgid "Traditional Chinese"
104
+ msgstr ""
105
+
106
+ #: includes/wg-settings-page.php:54
107
+ msgid "Russian"
108
+ msgstr "Ruso"
109
+
110
+ #: includes/wg-settings-page.php:55
111
+ msgid "German"
112
+ msgstr "Alemán"
113
+
114
+ #: includes/wg-settings-page.php:56
115
+ msgid "Spanish"
116
+ msgstr "Castellano"
117
+
118
+ #: includes/wg-settings-page.php:57
119
+ msgid "Albanian"
120
+ msgstr "Albanés"
121
+
122
+ #: includes/wg-settings-page.php:58
123
+ msgid "Arabic"
124
+ msgstr "Arabe"
125
+
126
+ #: includes/wg-settings-page.php:59
127
+ msgid "Armenian"
128
+ msgstr "Armenio"
129
+
130
+ #: includes/wg-settings-page.php:60
131
+ msgid "Azerbaijani"
132
+ msgstr "Azerbaiyán"
133
+
134
+ #: includes/wg-settings-page.php:61
135
+ msgid "Afrikaans"
136
+ msgstr "Africano"
137
+
138
+ #: includes/wg-settings-page.php:62
139
+ msgid "Basque"
140
+ msgstr "Vasco"
141
+
142
+ #: includes/wg-settings-page.php:63
143
+ msgid "Belarusian"
144
+ msgstr "Bieloruso"
145
+
146
+ #: includes/wg-settings-page.php:64
147
+ msgid "Bulgarian"
148
+ msgstr "Búlgaro"
149
+
150
+ #: includes/wg-settings-page.php:65
151
+ msgid "Bosnian"
152
+ msgstr "Bosnio"
153
+
154
+ #: includes/wg-settings-page.php:66
155
+ msgid "Vietnamese"
156
+ msgstr "Vietnamita"
157
+
158
+ #: includes/wg-settings-page.php:67
159
+ msgid "Hungarian"
160
+ msgstr "Húngaro"
161
+
162
+ #: includes/wg-settings-page.php:68
163
+ msgid "Haitian"
164
+ msgstr "Haitiano"
165
+
166
+ #: includes/wg-settings-page.php:69
167
+ msgid "Dutch"
168
+ msgstr "Holandés"
169
+
170
+ #: includes/wg-settings-page.php:70
171
+ msgid "Greek"
172
+ msgstr "Griego"
173
+
174
+ #: includes/wg-settings-page.php:71
175
+ msgid "Georgian"
176
+ msgstr "Georgiano"
177
+
178
+ #: includes/wg-settings-page.php:72
179
+ msgid "Danish"
180
+ msgstr "Danes"
181
+
182
+ #: includes/wg-settings-page.php:73
183
+ msgid "Hebrew"
184
+ msgstr "Hebreo"
185
+
186
+ #: includes/wg-settings-page.php:74
187
+ msgid "Indonesian"
188
+ msgstr "Indonesio"
189
+
190
+ #: includes/wg-settings-page.php:75
191
+ msgid "Irish"
192
+ msgstr "Irlandés"
193
+
194
+ #: includes/wg-settings-page.php:76
195
+ msgid "Italian"
196
+ msgstr "Italiano"
197
+
198
+ #: includes/wg-settings-page.php:77
199
+ msgid "Icelandic"
200
+ msgstr "Islandés"
201
+
202
+ #: includes/wg-settings-page.php:78
203
+ msgid "Kazakh"
204
+ msgstr "Kazajo"
205
+
206
+ #: includes/wg-settings-page.php:79
207
+ msgid "Catalan"
208
+ msgstr "Catalán"
209
+
210
+ #: includes/wg-settings-page.php:80
211
+ msgid "Kyrgyz"
212
+ msgstr "Kyrgyz"
213
+
214
+ #: includes/wg-settings-page.php:81
215
+ msgid "Korean"
216
+ msgstr "Coreano"
217
+
218
+ #: includes/wg-settings-page.php:82
219
+ msgid "Latvian"
220
+ msgstr "Lituano"
221
+
222
+ #: includes/wg-settings-page.php:83
223
+ msgid "Lithuanian"
224
+ msgstr "Lituano"
225
+
226
+ #: includes/wg-settings-page.php:84
227
+ msgid "Malagasy"
228
+ msgstr ""
229
+
230
+ #: includes/wg-settings-page.php:85
231
+ msgid "Malay"
232
+ msgstr "Malayo"
233
+
234
+ #: includes/wg-settings-page.php:86
235
+ msgid "Maltese"
236
+ msgstr "Maltés"
237
+
238
+ #: includes/wg-settings-page.php:87
239
+ msgid "Macedonian"
240
+ msgstr "Macedonio"
241
+
242
+ #: includes/wg-settings-page.php:88
243
+ msgid "Mongolian"
244
+ msgstr "Mongol"
245
+
246
+ #: includes/wg-settings-page.php:89
247
+ msgid "Norwegian"
248
+ msgstr "Noruego"
249
+
250
+ #: includes/wg-settings-page.php:90
251
+ msgid "Persian"
252
+ msgstr "Persa"
253
+
254
+ #: includes/wg-settings-page.php:91
255
+ msgid "Polish"
256
+ msgstr "Polaco"
257
+
258
+ #: includes/wg-settings-page.php:92
259
+ msgid "Portuguese"
260
+ msgstr "Portugués"
261
+
262
+ #: includes/wg-settings-page.php:93
263
+ msgid "Romanian"
264
+ msgstr "Rumano"
265
+
266
+ #: includes/wg-settings-page.php:94
267
+ msgid "Serbian"
268
+ msgstr "Serbio"
269
+
270
+ #: includes/wg-settings-page.php:95
271
+ msgid "Slovak"
272
+ msgstr "Eslovaco"
273
+
274
+ #: includes/wg-settings-page.php:96
275
+ msgid "Slovenian"
276
+ msgstr "Esloveno"
277
+
278
+ #: includes/wg-settings-page.php:97
279
+ msgid "Swahili"
280
+ msgstr "Swahili"
281
+
282
+ #: includes/wg-settings-page.php:98
283
+ msgid "Tajik"
284
+ msgstr ""
285
+
286
+ #: includes/wg-settings-page.php:99
287
+ msgid "Thai"
288
+ msgstr "Tailandes"
289
+
290
+ #: includes/wg-settings-page.php:100
291
+ msgid "Turkish"
292
+ msgstr "Turco"
293
+
294
+ #: includes/wg-settings-page.php:101
295
+ msgid "Uzbek"
296
+ msgstr ""
297
+
298
+ #: includes/wg-settings-page.php:102
299
+ msgid "Ukrainian"
300
+ msgstr "Ucranio"
301
+
302
+ #: includes/wg-settings-page.php:103
303
+ msgid "Finnish"
304
+ msgstr "Finlandes"
305
+
306
+ #: includes/wg-settings-page.php:104
307
+ msgid "Croatian"
308
+ msgstr "Croata"
309
+
310
+ #: includes/wg-settings-page.php:105
311
+ msgid "Czech"
312
+ msgstr "Checo"
313
+
314
+ #: includes/wg-settings-page.php:106
315
+ msgid "Swedish"
316
+ msgstr "Sueco"
317
+
318
+ #: includes/wg-settings-page.php:107
319
+ msgid "Estonian"
320
+ msgstr "Estonio"
321
+
322
+ #: includes/wg-settings-page.php:108
323
+ msgid "Japanese"
324
+ msgstr "Japonés"
325
+
326
+ #: includes/wg-settings-page.php:109
327
+ msgid "Hindi"
328
+ msgstr ""
329
+
330
+ #: includes/wg-settings-page.php:110
331
+ msgid "Urdu"
332
+ msgstr ""
333
+
334
+ #: includes/wg-settings-page.php:115
335
+ msgid "Destination Languages"
336
+ msgstr ""
337
+
338
+ #: includes/wg-settings-page.php:115
339
+ msgid ""
340
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
341
+ "found %shere%s."
342
+ msgstr ""
343
+
344
+ #: includes/wg-settings-page.php:116
345
+ msgid ""
346
+ "On the free plan, you can only choose one language with a maximum of 2000 "
347
+ "words. If you want to use more than 1 language and 2000 words, please "
348
+ "%supgrade your plan%s."
349
+ msgstr ""
350
+
351
+ #: includes/wg-settings-page.php:116
352
+ msgid ""
353
+ "On the Starter plan, you can only choose one language. If you want to use "
354
+ "more than 1 language, please %supgrade your plan%s."
355
+ msgstr ""
356
+
357
+ #: includes/wg-settings-page.php:119
358
+ msgid "Language button appearance"
359
+ msgstr ""
360
+
361
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
362
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
363
+ #: includes/wg-settings-page.php:248
364
+ msgid "(Optional)"
365
+ msgstr "(Opcional)"
366
+
367
+ #: includes/wg-settings-page.php:120
368
+ msgid "Preview:"
369
+ msgstr "Previsualización:"
370
+
371
+ #: includes/wg-settings-page.php:123
372
+ msgid "Dropdown?"
373
+ msgstr ""
374
+
375
+ #: includes/wg-settings-page.php:124
376
+ msgid "Check if you want the button to be a dropdown box."
377
+ msgstr ""
378
+
379
+ #: includes/wg-settings-page.php:127
380
+ msgid "With flags?"
381
+ msgstr ""
382
+
383
+ #: includes/wg-settings-page.php:128
384
+ msgid "Check if you want flags in the language button."
385
+ msgstr ""
386
+
387
+ #: includes/wg-settings-page.php:131
388
+ msgid "Type of flags"
389
+ msgstr ""
390
+
391
+ #: includes/wg-settings-page.php:134
392
+ msgid "Rectangle mat"
393
+ msgstr ""
394
+
395
+ #: includes/wg-settings-page.php:135
396
+ msgid "Rectangle bright"
397
+ msgstr ""
398
+
399
+ #: includes/wg-settings-page.php:136
400
+ msgid "Square"
401
+ msgstr "Square"
402
+
403
+ #: includes/wg-settings-page.php:137
404
+ msgid "Circle"
405
+ msgstr "Ciclo"
406
+
407
+ #: includes/wg-settings-page.php:139
408
+ msgid "Change country flags"
409
+ msgstr ""
410
+
411
+ #: includes/wg-settings-page.php:142
412
+ msgid "Choose English flag:"
413
+ msgstr ""
414
+
415
+ #: includes/wg-settings-page.php:143
416
+ msgid "United Kingdom (default)"
417
+ msgstr ""
418
+
419
+ #: includes/wg-settings-page.php:144
420
+ msgid "United States"
421
+ msgstr "Estados Unidos"
422
+
423
+ #: includes/wg-settings-page.php:145
424
+ msgid "Australia"
425
+ msgstr "Australia"
426
+
427
+ #: includes/wg-settings-page.php:146
428
+ msgid "Canada"
429
+ msgstr "Canadá"
430
+
431
+ #: includes/wg-settings-page.php:147
432
+ msgid "New Zealand"
433
+ msgstr ""
434
+
435
+ #: includes/wg-settings-page.php:148
436
+ msgid "Jamaica"
437
+ msgstr "Jamaica"
438
+
439
+ #: includes/wg-settings-page.php:149
440
+ msgid "Ireland"
441
+ msgstr "Irlanda"
442
+
443
+ #: includes/wg-settings-page.php:152
444
+ msgid "Choose Spanish flag:"
445
+ msgstr ""
446
+
447
+ #: includes/wg-settings-page.php:153
448
+ msgid "Spain (default)"
449
+ msgstr ""
450
+
451
+ #: includes/wg-settings-page.php:154
452
+ msgid "Mexico"
453
+ msgstr "México"
454
+
455
+ #: includes/wg-settings-page.php:155
456
+ msgid "Argentina"
457
+ msgstr "Argentina"
458
+
459
+ #: includes/wg-settings-page.php:156
460
+ msgid "Colombia"
461
+ msgstr "Colombia"
462
+
463
+ #: includes/wg-settings-page.php:157
464
+ msgid "Peru"
465
+ msgstr "Perú"
466
+
467
+ #: includes/wg-settings-page.php:158
468
+ msgid "Bolivia"
469
+ msgstr "Bolivia"
470
+
471
+ #: includes/wg-settings-page.php:159
472
+ msgid "Uruguay"
473
+ msgstr "Uruguay"
474
+
475
+ #: includes/wg-settings-page.php:160
476
+ msgid "Venezuela"
477
+ msgstr "Venezuela"
478
+
479
+ #: includes/wg-settings-page.php:161
480
+ msgid "Chile"
481
+ msgstr "Chile"
482
+
483
+ #: includes/wg-settings-page.php:162
484
+ msgid "Ecuador"
485
+ msgstr "Ecuador"
486
+
487
+ #: includes/wg-settings-page.php:163
488
+ msgid "Guatemala"
489
+ msgstr "Guatemala"
490
+
491
+ #: includes/wg-settings-page.php:164
492
+ msgid "Cuba"
493
+ msgstr "Cuba"
494
+
495
+ #: includes/wg-settings-page.php:165
496
+ msgid "Dominican Republic"
497
+ msgstr "República Dominicana"
498
+
499
+ #: includes/wg-settings-page.php:166
500
+ msgid "Honduras"
501
+ msgstr " Honduras"
502
+
503
+ #: includes/wg-settings-page.php:167
504
+ msgid "Paraguay"
505
+ msgstr "Paraguay"
506
+
507
+ #: includes/wg-settings-page.php:168
508
+ msgid "El Salvador"
509
+ msgstr "El-Salvador"
510
+
511
+ #: includes/wg-settings-page.php:169
512
+ msgid "Nicaragua"
513
+ msgstr "Nicaragua"
514
+
515
+ #: includes/wg-settings-page.php:170
516
+ msgid "Costa Rica"
517
+ msgstr "Costa Rica"
518
+
519
+ #: includes/wg-settings-page.php:171
520
+ msgid "Puerto Rico"
521
+ msgstr "Puerto Rico"
522
+
523
+ #: includes/wg-settings-page.php:172
524
+ msgid "Panama"
525
+ msgstr "Panamá"
526
+
527
+ #: includes/wg-settings-page.php:175
528
+ msgid "Choose Portuguese flag:"
529
+ msgstr ""
530
+
531
+ #: includes/wg-settings-page.php:176
532
+ msgid "Brazil (default)"
533
+ msgstr ""
534
+
535
+ #: includes/wg-settings-page.php:177
536
+ msgid "Portugal"
537
+ msgstr "Portugal"
538
+
539
+ #: includes/wg-settings-page.php:179
540
+ msgid "If you want to use a different flag, just ask us."
541
+ msgstr ""
542
+
543
+ #: includes/wg-settings-page.php:184
544
+ msgid "With name?"
545
+ msgstr ""
546
+
547
+ #: includes/wg-settings-page.php:185
548
+ msgid "Check if you want to display the name of languages."
549
+ msgstr ""
550
+
551
+ #: includes/wg-settings-page.php:188
552
+ msgid "Full name?"
553
+ msgstr ""
554
+
555
+ #: includes/wg-settings-page.php:189
556
+ msgid ""
557
+ "Check if you want the name of the languge. Don't check if you want the "
558
+ "language code."
559
+ msgstr ""
560
+
561
+ #: includes/wg-settings-page.php:192
562
+ msgid "Override CSS"
563
+ msgstr ""
564
+
565
+ #: includes/wg-settings-page.php:192
566
+ msgid "Don't change it unless you want a specific style for your button."
567
+ msgstr ""
568
+
569
+ #: includes/wg-settings-page.php:202
570
+ msgid "Language button position"
571
+ msgstr ""
572
+
573
+ #: includes/wg-settings-page.php:203
574
+ msgid ""
575
+ "Where will the language button be on my website? By default, bottom right."
576
+ msgstr ""
577
+
578
+ #: includes/wg-settings-page.php:206
579
+ msgid "In menu?"
580
+ msgstr ""
581
+
582
+ #: includes/wg-settings-page.php:207
583
+ msgid "Check if you want to display the button in the navigation menu."
584
+ msgstr ""
585
+
586
+ #: includes/wg-settings-page.php:210
587
+ msgid "As a widget?"
588
+ msgstr ""
589
+
590
+ #: includes/wg-settings-page.php:211
591
+ msgid ""
592
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
593
+ "drag and drop the Weglot Translate widget where you want."
594
+ msgstr ""
595
+
596
+ #: includes/wg-settings-page.php:214
597
+ msgid "With a shortcode?"
598
+ msgstr ""
599
+
600
+ #: includes/wg-settings-page.php:215
601
+ msgid ""
602
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
603
+ "place the button."
604
+ msgstr ""
605
+
606
+ #: includes/wg-settings-page.php:218
607
+ msgid "In the source code?"
608
+ msgstr ""
609
+
610
+ #: includes/wg-settings-page.php:219
611
+ msgid ""
612
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
613
+ "wherever you want in the source code of your HTML page. The button will "
614
+ "appear at this place."
615
+ msgstr ""
616
+
617
+ #: includes/wg-settings-page.php:222
618
+ msgid "Translation Exclusion"
619
+ msgstr ""
620
+
621
+ #: includes/wg-settings-page.php:224
622
+ msgid ""
623
+ "By default, every page is translated. You can exclude parts of a page or a "
624
+ "full page here."
625
+ msgstr ""
626
+
627
+ #: includes/wg-settings-page.php:227
628
+ msgid "Exclude URL here"
629
+ msgstr ""
630
+
631
+ #: includes/wg-settings-page.php:227
632
+ msgid "You can write regex."
633
+ msgstr ""
634
+
635
+ #: includes/wg-settings-page.php:231
636
+ msgid "Exclude blocks"
637
+ msgstr ""
638
+
639
+ #: includes/wg-settings-page.php:231
640
+ msgid "Enter CSS selectors, separated by commas."
641
+ msgstr ""
642
+
643
+ #: includes/wg-settings-page.php:236
644
+ msgid "Other options"
645
+ msgstr ""
646
+
647
+ #: includes/wg-settings-page.php:240
648
+ msgid "Auto redirect?"
649
+ msgstr ""
650
+
651
+ #: includes/wg-settings-page.php:241
652
+ msgid "Check if you want to redirect users based on their browser language."
653
+ msgstr ""
654
+
655
+ #: includes/wg-settings-page.php:246
656
+ msgid "Left to Right languages"
657
+ msgstr ""
658
+
659
+ #: includes/wg-settings-page.php:246
660
+ msgid "Right to Left languages"
661
+ msgstr ""
662
+
663
+ #: includes/wg-settings-page.php:248
664
+ msgid "Customize style for "
665
+ msgstr ""
666
+
667
+ #: includes/wg-settings-page.php:252
668
+ msgid "Write CSS rules to apply on %s page."
669
+ msgstr ""
670
+
671
+ #: includes/wg-settings-page.php:261
672
+ msgid "Where are my translations?"
673
+ msgstr ""
674
+
675
+ #: includes/wg-settings-page.php:263
676
+ msgid "You can find all your translations in your Weglot account:"
677
+ msgstr ""
678
+
679
+ #: includes/wg-settings-page.php:264
680
+ msgid "https://weglot.com/dashboard"
681
+ msgstr ""
682
+
683
+ #: includes/wg-settings-page.php:264
684
+ msgid "Edit my translations"
685
+ msgstr ""
686
+
687
+ #: includes/wg-settings-page.php:269
688
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
689
+ msgstr ""
690
+
691
+ #: includes/wg-settings-page.php:272
692
+ msgid ""
693
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
694
+ "or email us at support@weglot.com."
695
+ msgstr ""
696
+
697
+ #: weglot.php:181
698
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
699
+ msgstr ""
700
+
701
+ #: weglot.php:181
702
+ msgid ""
703
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
704
+ "greater. Your current version of PHP is %s."
705
+ msgstr ""
706
+
707
+ #: weglot.php:181
708
+ msgid ""
709
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
710
+ "sending it an email."
711
+ msgstr ""
712
+
713
+ #: weglot.php:182
714
+ msgid "Plugin Activation Error"
715
+ msgstr ""
716
+
717
+ #: weglot.php:221
718
+ msgid "Settings"
719
+ msgstr "Configurar"
720
+
721
+ #: weglot.php:228
722
+ msgid ""
723
+ "Weglot Translate is not active because you have exceeded the free limit. "
724
+ "Please %supgrade your plan%s if you want to keep the service running."
725
+ msgstr ""
726
+
727
+ #: weglot.php:236
728
+ msgid ""
729
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
730
+ "Please upgrade your PHP version (you can contact your host and they will do "
731
+ "it for you)."
732
+ msgstr ""
733
+
734
+ #: weglot.php:244
735
+ msgid ""
736
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
737
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
738
+ "us directly %2$shere%3$s."
739
+ msgstr ""
740
+
741
+ #. Plugin URI of the plugin/theme
742
+ msgid "http://wordpress.org/plugins/Weglot/"
743
+ msgstr ""
744
+
745
+ #. Description of the plugin/theme
746
+ msgid ""
747
+ "Translate your website into multiple languages in minutes without doing any "
748
+ "coding. Fully SEO compatible."
749
+ msgstr ""
750
+
751
+ #. Author of the plugin/theme
752
+ msgid "Remy B"
753
+ msgstr ""
languages/weglot-fr_FR.mo ADDED
Binary file
languages/weglot-fr_FR.po ADDED
@@ -0,0 +1,760 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # FX Bénard <fxb@wp-translations.org>, 2017
5
+ # Franck <franckgervais@hotmail.com>, 2017
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
9
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
10
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
11
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: Franck <franckgervais@hotmail.com>, 2017\n"
13
+ "Language-Team: French (France) (https://www.transifex.com/wp-translations/"
14
+ "teams/64435/fr_FR/)\n"
15
+ "Language: fr_FR\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
+ "X-Generator: grunt-wp-i18n1.0.0\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Poedit-Bookmarks: \n"
23
+ "X-Poedit-Country: United States\n"
24
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
25
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
26
+ "esc_html_x:1,2c;\n"
27
+ "X-Poedit-SearchPath-0: .\n"
28
+ "X-Poedit-SourceCharset: UTF-8\n"
29
+ "X-Textdomain-Support: yes\n"
30
+
31
+ #. Plugin Name of the plugin/theme
32
+ msgid "Weglot Translate"
33
+ msgstr "Weglot Translate"
34
+
35
+ #: WeglotWidget.php:41
36
+ msgid "Title:"
37
+ msgstr "Titre :"
38
+
39
+ #: includes/wg-settings-page.php:17
40
+ msgid ""
41
+ "Weglot Translate service is not active because you have reached the end of "
42
+ "the trial period."
43
+ msgstr ""
44
+
45
+ #: includes/wg-settings-page.php:18
46
+ msgid "To reactivate the service, please %supgrade your plan%s."
47
+ msgstr ""
48
+
49
+ #: includes/wg-settings-page.php:25
50
+ msgid "Close"
51
+ msgstr "Fermer"
52
+
53
+ #: includes/wg-settings-page.php:26
54
+ msgid "Well done! Your website is now multilingual."
55
+ msgstr ""
56
+
57
+ #: includes/wg-settings-page.php:27
58
+ msgid "Go on your website, there is a language switcher. Try it :)"
59
+ msgstr ""
60
+
61
+ #: includes/wg-settings-page.php:28
62
+ msgid "Go on my front page."
63
+ msgstr ""
64
+
65
+ #: includes/wg-settings-page.php:29
66
+ msgid "Next step, edit your translations directly in your Weglot account."
67
+ msgstr ""
68
+ "Prochaine étape, modifiez vos traductions directement dans votre compte "
69
+ "Weglot."
70
+
71
+ #: includes/wg-settings-page.php:40
72
+ msgid "Main configuration"
73
+ msgstr "Configuration principale"
74
+
75
+ #: includes/wg-settings-page.php:43
76
+ msgid "API Key"
77
+ msgstr "Clé API"
78
+
79
+ #: includes/wg-settings-page.php:43
80
+ msgid "Log in to %sWeglot%s to get your API key."
81
+ msgstr ""
82
+
83
+ #: includes/wg-settings-page.php:47
84
+ msgid "Original Language"
85
+ msgstr "Langue d’origine"
86
+
87
+ #: includes/wg-settings-page.php:47
88
+ msgid "What is the original (current) language of your website?"
89
+ msgstr "Quel est le langue d’origine de votre site ?"
90
+
91
+ #: includes/wg-settings-page.php:50
92
+ msgid "French"
93
+ msgstr "Français"
94
+
95
+ #: includes/wg-settings-page.php:51
96
+ msgid "English"
97
+ msgstr "Anglais"
98
+
99
+ #: includes/wg-settings-page.php:52
100
+ msgid "Simplified Chinese"
101
+ msgstr ""
102
+
103
+ #: includes/wg-settings-page.php:53
104
+ msgid "Traditional Chinese"
105
+ msgstr ""
106
+
107
+ #: includes/wg-settings-page.php:54
108
+ msgid "Russian"
109
+ msgstr "Russe"
110
+
111
+ #: includes/wg-settings-page.php:55
112
+ msgid "German"
113
+ msgstr "Allemand"
114
+
115
+ #: includes/wg-settings-page.php:56
116
+ msgid "Spanish"
117
+ msgstr "Espagnol"
118
+
119
+ #: includes/wg-settings-page.php:57
120
+ msgid "Albanian"
121
+ msgstr "Albanais"
122
+
123
+ #: includes/wg-settings-page.php:58
124
+ msgid "Arabic"
125
+ msgstr "Arabe"
126
+
127
+ #: includes/wg-settings-page.php:59
128
+ msgid "Armenian"
129
+ msgstr "Arménien"
130
+
131
+ #: includes/wg-settings-page.php:60
132
+ msgid "Azerbaijani"
133
+ msgstr "Azéri"
134
+
135
+ #: includes/wg-settings-page.php:61
136
+ msgid "Afrikaans"
137
+ msgstr "Afrikans"
138
+
139
+ #: includes/wg-settings-page.php:62
140
+ msgid "Basque"
141
+ msgstr "Basque"
142
+
143
+ #: includes/wg-settings-page.php:63
144
+ msgid "Belarusian"
145
+ msgstr "Biélorusse"
146
+
147
+ #: includes/wg-settings-page.php:64
148
+ msgid "Bulgarian"
149
+ msgstr "Bulgare"
150
+
151
+ #: includes/wg-settings-page.php:65
152
+ msgid "Bosnian"
153
+ msgstr "Bosniaque"
154
+
155
+ #: includes/wg-settings-page.php:66
156
+ msgid "Vietnamese"
157
+ msgstr "Vietnamien"
158
+
159
+ #: includes/wg-settings-page.php:67
160
+ msgid "Hungarian"
161
+ msgstr "Hongrois"
162
+
163
+ #: includes/wg-settings-page.php:68
164
+ msgid "Haitian"
165
+ msgstr "Haïtien"
166
+
167
+ #: includes/wg-settings-page.php:69
168
+ msgid "Dutch"
169
+ msgstr "Néerlandais"
170
+
171
+ #: includes/wg-settings-page.php:70
172
+ msgid "Greek"
173
+ msgstr "Grec"
174
+
175
+ #: includes/wg-settings-page.php:71
176
+ msgid "Georgian"
177
+ msgstr "Georgien"
178
+
179
+ #: includes/wg-settings-page.php:72
180
+ msgid "Danish"
181
+ msgstr "Danois"
182
+
183
+ #: includes/wg-settings-page.php:73
184
+ msgid "Hebrew"
185
+ msgstr "Hébreu"
186
+
187
+ #: includes/wg-settings-page.php:74
188
+ msgid "Indonesian"
189
+ msgstr "Indonésien"
190
+
191
+ #: includes/wg-settings-page.php:75
192
+ msgid "Irish"
193
+ msgstr "Irlandais"
194
+
195
+ #: includes/wg-settings-page.php:76
196
+ msgid "Italian"
197
+ msgstr "Italien"
198
+
199
+ #: includes/wg-settings-page.php:77
200
+ msgid "Icelandic"
201
+ msgstr "Islandais"
202
+
203
+ #: includes/wg-settings-page.php:78
204
+ msgid "Kazakh"
205
+ msgstr "Kazakh"
206
+
207
+ #: includes/wg-settings-page.php:79
208
+ msgid "Catalan"
209
+ msgstr "Catalan"
210
+
211
+ #: includes/wg-settings-page.php:80
212
+ msgid "Kyrgyz"
213
+ msgstr "Kirghize"
214
+
215
+ #: includes/wg-settings-page.php:81
216
+ msgid "Korean"
217
+ msgstr "Coréen"
218
+
219
+ #: includes/wg-settings-page.php:82
220
+ msgid "Latvian"
221
+ msgstr "Latvian"
222
+
223
+ #: includes/wg-settings-page.php:83
224
+ msgid "Lithuanian"
225
+ msgstr "Lithuanien"
226
+
227
+ #: includes/wg-settings-page.php:84
228
+ msgid "Malagasy"
229
+ msgstr "Malgache"
230
+
231
+ #: includes/wg-settings-page.php:85
232
+ msgid "Malay"
233
+ msgstr "Malais"
234
+
235
+ #: includes/wg-settings-page.php:86
236
+ msgid "Maltese"
237
+ msgstr "Maltais"
238
+
239
+ #: includes/wg-settings-page.php:87
240
+ msgid "Macedonian"
241
+ msgstr "Macédonien"
242
+
243
+ #: includes/wg-settings-page.php:88
244
+ msgid "Mongolian"
245
+ msgstr "Mongol"
246
+
247
+ #: includes/wg-settings-page.php:89
248
+ msgid "Norwegian"
249
+ msgstr "Norvégien"
250
+
251
+ #: includes/wg-settings-page.php:90
252
+ msgid "Persian"
253
+ msgstr "Perse"
254
+
255
+ #: includes/wg-settings-page.php:91
256
+ msgid "Polish"
257
+ msgstr "Polonnais"
258
+
259
+ #: includes/wg-settings-page.php:92
260
+ msgid "Portuguese"
261
+ msgstr "Portugais"
262
+
263
+ #: includes/wg-settings-page.php:93
264
+ msgid "Romanian"
265
+ msgstr "Roumain"
266
+
267
+ #: includes/wg-settings-page.php:94
268
+ msgid "Serbian"
269
+ msgstr "Serbe"
270
+
271
+ #: includes/wg-settings-page.php:95
272
+ msgid "Slovak"
273
+ msgstr "Slovaque"
274
+
275
+ #: includes/wg-settings-page.php:96
276
+ msgid "Slovenian"
277
+ msgstr "Slovenien"
278
+
279
+ #: includes/wg-settings-page.php:97
280
+ msgid "Swahili"
281
+ msgstr "Swahili"
282
+
283
+ #: includes/wg-settings-page.php:98
284
+ msgid "Tajik"
285
+ msgstr "Tadjik"
286
+
287
+ #: includes/wg-settings-page.php:99
288
+ msgid "Thai"
289
+ msgstr "Thaï"
290
+
291
+ #: includes/wg-settings-page.php:100
292
+ msgid "Turkish"
293
+ msgstr "Turc"
294
+
295
+ #: includes/wg-settings-page.php:101
296
+ msgid "Uzbek"
297
+ msgstr "Ouzbek"
298
+
299
+ #: includes/wg-settings-page.php:102
300
+ msgid "Ukrainian"
301
+ msgstr "Ukrainien"
302
+
303
+ #: includes/wg-settings-page.php:103
304
+ msgid "Finnish"
305
+ msgstr "Finnois"
306
+
307
+ #: includes/wg-settings-page.php:104
308
+ msgid "Croatian"
309
+ msgstr "Croate"
310
+
311
+ #: includes/wg-settings-page.php:105
312
+ msgid "Czech"
313
+ msgstr "Czech"
314
+
315
+ #: includes/wg-settings-page.php:106
316
+ msgid "Swedish"
317
+ msgstr "Suédois"
318
+
319
+ #: includes/wg-settings-page.php:107
320
+ msgid "Estonian"
321
+ msgstr "Estonien"
322
+
323
+ #: includes/wg-settings-page.php:108
324
+ msgid "Japanese"
325
+ msgstr "Japonais"
326
+
327
+ #: includes/wg-settings-page.php:109
328
+ msgid "Hindi"
329
+ msgstr "Hindi"
330
+
331
+ #: includes/wg-settings-page.php:110
332
+ msgid "Urdu"
333
+ msgstr "Urdu"
334
+
335
+ #: includes/wg-settings-page.php:115
336
+ msgid "Destination Languages"
337
+ msgstr "Langues souhaités"
338
+
339
+ #: includes/wg-settings-page.php:115
340
+ msgid ""
341
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
342
+ "found %shere%s."
343
+ msgstr ""
344
+
345
+ #: includes/wg-settings-page.php:116
346
+ msgid ""
347
+ "On the free plan, you can only choose one language with a maximum of 2000 "
348
+ "words. If you want to use more than 1 language and 2000 words, please "
349
+ "%supgrade your plan%s."
350
+ msgstr ""
351
+
352
+ #: includes/wg-settings-page.php:116
353
+ msgid ""
354
+ "On the Starter plan, you can only choose one language. If you want to use "
355
+ "more than 1 language, please %supgrade your plan%s."
356
+ msgstr ""
357
+
358
+ #: includes/wg-settings-page.php:119
359
+ msgid "Language button appearance"
360
+ msgstr "Apparence du bouton de choix de langue"
361
+
362
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
363
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
364
+ #: includes/wg-settings-page.php:248
365
+ msgid "(Optional)"
366
+ msgstr "(facultatif)"
367
+
368
+ #: includes/wg-settings-page.php:120
369
+ msgid "Preview:"
370
+ msgstr "Prévisualisation:"
371
+
372
+ #: includes/wg-settings-page.php:123
373
+ msgid "Dropdown?"
374
+ msgstr "Liste déroulante ?"
375
+
376
+ #: includes/wg-settings-page.php:124
377
+ msgid "Check if you want the button to be a dropdown box."
378
+ msgstr "Cochez si vous voulez que le bouton soit une liste déroulante."
379
+
380
+ #: includes/wg-settings-page.php:127
381
+ msgid "With flags?"
382
+ msgstr "Avec les drapeaux ?"
383
+
384
+ #: includes/wg-settings-page.php:128
385
+ msgid "Check if you want flags in the language button."
386
+ msgstr ""
387
+ "Cochez si vous souhaitez avoir des drapeaux dans votre bouton de choix de "
388
+ "langue"
389
+
390
+ #: includes/wg-settings-page.php:131
391
+ msgid "Type of flags"
392
+ msgstr "Type de drapeaux"
393
+
394
+ #: includes/wg-settings-page.php:134
395
+ msgid "Rectangle mat"
396
+ msgstr "Rectangle mat"
397
+
398
+ #: includes/wg-settings-page.php:135
399
+ msgid "Rectangle bright"
400
+ msgstr "Rectangle vif"
401
+
402
+ #: includes/wg-settings-page.php:136
403
+ msgid "Square"
404
+ msgstr "Carré"
405
+
406
+ #: includes/wg-settings-page.php:137
407
+ msgid "Circle"
408
+ msgstr "Cercle"
409
+
410
+ #: includes/wg-settings-page.php:139
411
+ msgid "Change country flags"
412
+ msgstr ""
413
+
414
+ #: includes/wg-settings-page.php:142
415
+ msgid "Choose English flag:"
416
+ msgstr ""
417
+
418
+ #: includes/wg-settings-page.php:143
419
+ msgid "United Kingdom (default)"
420
+ msgstr ""
421
+
422
+ #: includes/wg-settings-page.php:144
423
+ msgid "United States"
424
+ msgstr "Etats-Unis"
425
+
426
+ #: includes/wg-settings-page.php:145
427
+ msgid "Australia"
428
+ msgstr "Australie"
429
+
430
+ #: includes/wg-settings-page.php:146
431
+ msgid "Canada"
432
+ msgstr "Canada"
433
+
434
+ #: includes/wg-settings-page.php:147
435
+ msgid "New Zealand"
436
+ msgstr "Nouvelle-Zélande"
437
+
438
+ #: includes/wg-settings-page.php:148
439
+ msgid "Jamaica"
440
+ msgstr "Jamaïque"
441
+
442
+ #: includes/wg-settings-page.php:149
443
+ msgid "Ireland"
444
+ msgstr "Irlande"
445
+
446
+ #: includes/wg-settings-page.php:152
447
+ msgid "Choose Spanish flag:"
448
+ msgstr ""
449
+
450
+ #: includes/wg-settings-page.php:153
451
+ msgid "Spain (default)"
452
+ msgstr ""
453
+
454
+ #: includes/wg-settings-page.php:154
455
+ msgid "Mexico"
456
+ msgstr "Mexique"
457
+
458
+ #: includes/wg-settings-page.php:155
459
+ msgid "Argentina"
460
+ msgstr "Argentine"
461
+
462
+ #: includes/wg-settings-page.php:156
463
+ msgid "Colombia"
464
+ msgstr "Colombie"
465
+
466
+ #: includes/wg-settings-page.php:157
467
+ msgid "Peru"
468
+ msgstr "Pérou"
469
+
470
+ #: includes/wg-settings-page.php:158
471
+ msgid "Bolivia"
472
+ msgstr "Bolivie"
473
+
474
+ #: includes/wg-settings-page.php:159
475
+ msgid "Uruguay"
476
+ msgstr "Uruguay"
477
+
478
+ #: includes/wg-settings-page.php:160
479
+ msgid "Venezuela"
480
+ msgstr "Venezuela"
481
+
482
+ #: includes/wg-settings-page.php:161
483
+ msgid "Chile"
484
+ msgstr "Chili"
485
+
486
+ #: includes/wg-settings-page.php:162
487
+ msgid "Ecuador"
488
+ msgstr "Équateur"
489
+
490
+ #: includes/wg-settings-page.php:163
491
+ msgid "Guatemala"
492
+ msgstr "Guatemala"
493
+
494
+ #: includes/wg-settings-page.php:164
495
+ msgid "Cuba"
496
+ msgstr "Cuba"
497
+
498
+ #: includes/wg-settings-page.php:165
499
+ msgid "Dominican Republic"
500
+ msgstr "République Dominicaine"
501
+
502
+ #: includes/wg-settings-page.php:166
503
+ msgid "Honduras"
504
+ msgstr "Honduras"
505
+
506
+ #: includes/wg-settings-page.php:167
507
+ msgid "Paraguay"
508
+ msgstr "Paraguay"
509
+
510
+ #: includes/wg-settings-page.php:168
511
+ msgid "El Salvador"
512
+ msgstr "Salvador"
513
+
514
+ #: includes/wg-settings-page.php:169
515
+ msgid "Nicaragua"
516
+ msgstr "Nicaragua"
517
+
518
+ #: includes/wg-settings-page.php:170
519
+ msgid "Costa Rica"
520
+ msgstr "Costa Rica"
521
+
522
+ #: includes/wg-settings-page.php:171
523
+ msgid "Puerto Rico"
524
+ msgstr "Puerto Rico"
525
+
526
+ #: includes/wg-settings-page.php:172
527
+ msgid "Panama"
528
+ msgstr "Panama"
529
+
530
+ #: includes/wg-settings-page.php:175
531
+ msgid "Choose Portuguese flag:"
532
+ msgstr ""
533
+
534
+ #: includes/wg-settings-page.php:176
535
+ msgid "Brazil (default)"
536
+ msgstr ""
537
+
538
+ #: includes/wg-settings-page.php:177
539
+ msgid "Portugal"
540
+ msgstr "Portugal"
541
+
542
+ #: includes/wg-settings-page.php:179
543
+ msgid "If you want to use a different flag, just ask us."
544
+ msgstr ""
545
+
546
+ #: includes/wg-settings-page.php:184
547
+ msgid "With name?"
548
+ msgstr "Afficher le nom ?"
549
+
550
+ #: includes/wg-settings-page.php:185
551
+ msgid "Check if you want to display the name of languages."
552
+ msgstr "Cochez si vous souhaitez afficher le nom des langues."
553
+
554
+ #: includes/wg-settings-page.php:188
555
+ msgid "Full name?"
556
+ msgstr "Nom entier ?"
557
+
558
+ #: includes/wg-settings-page.php:189
559
+ msgid ""
560
+ "Check if you want the name of the languge. Don't check if you want the "
561
+ "language code."
562
+ msgstr ""
563
+ "Cochez si vous voulez le nom du language. Sinon ce sera le code du language."
564
+
565
+ #: includes/wg-settings-page.php:192
566
+ msgid "Override CSS"
567
+ msgstr "Remplacer le CSS"
568
+
569
+ #: includes/wg-settings-page.php:192
570
+ msgid "Don't change it unless you want a specific style for your button."
571
+ msgstr "Ne changez rien sauf si vous voulez un style de bouton spécifique."
572
+
573
+ #: includes/wg-settings-page.php:202
574
+ msgid "Language button position"
575
+ msgstr "Position du bouton de langue"
576
+
577
+ #: includes/wg-settings-page.php:203
578
+ msgid ""
579
+ "Where will the language button be on my website? By default, bottom right."
580
+ msgstr ""
581
+
582
+ #: includes/wg-settings-page.php:206
583
+ msgid "In menu?"
584
+ msgstr "Dans le menu ?"
585
+
586
+ #: includes/wg-settings-page.php:207
587
+ msgid "Check if you want to display the button in the navigation menu."
588
+ msgstr ""
589
+
590
+ #: includes/wg-settings-page.php:210
591
+ msgid "As a widget?"
592
+ msgstr "Comme Widget ?"
593
+
594
+ #: includes/wg-settings-page.php:211
595
+ msgid ""
596
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
597
+ "drag and drop the Weglot Translate widget where you want."
598
+ msgstr ""
599
+
600
+ #: includes/wg-settings-page.php:214
601
+ msgid "With a shortcode?"
602
+ msgstr "Avec un code court ?"
603
+
604
+ #: includes/wg-settings-page.php:215
605
+ msgid ""
606
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
607
+ "place the button."
608
+ msgstr ""
609
+
610
+ #: includes/wg-settings-page.php:218
611
+ msgid "In the source code?"
612
+ msgstr ""
613
+
614
+ #: includes/wg-settings-page.php:219
615
+ msgid ""
616
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
617
+ "wherever you want in the source code of your HTML page. The button will "
618
+ "appear at this place."
619
+ msgstr ""
620
+ "Vous pouvez ajouter le code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/"
621
+ "div&gt; là où vous voulez dans le code source de votre page HTML. Le bouton "
622
+ "apparaîtra à cet endroit."
623
+
624
+ #: includes/wg-settings-page.php:222
625
+ msgid "Translation Exclusion"
626
+ msgstr ""
627
+
628
+ #: includes/wg-settings-page.php:224
629
+ msgid ""
630
+ "By default, every page is translated. You can exclude parts of a page or a "
631
+ "full page here."
632
+ msgstr ""
633
+
634
+ #: includes/wg-settings-page.php:227
635
+ msgid "Exclude URL here"
636
+ msgstr ""
637
+
638
+ #: includes/wg-settings-page.php:227
639
+ msgid "You can write regex."
640
+ msgstr "Vous pouvez utiliser des regex (expressions régulières)"
641
+
642
+ #: includes/wg-settings-page.php:231
643
+ msgid "Exclude blocks"
644
+ msgstr ""
645
+
646
+ #: includes/wg-settings-page.php:231
647
+ msgid "Enter CSS selectors, separated by commas."
648
+ msgstr ""
649
+
650
+ #: includes/wg-settings-page.php:236
651
+ msgid "Other options"
652
+ msgstr ""
653
+
654
+ #: includes/wg-settings-page.php:240
655
+ msgid "Auto redirect?"
656
+ msgstr ""
657
+
658
+ #: includes/wg-settings-page.php:241
659
+ msgid "Check if you want to redirect users based on their browser language."
660
+ msgstr ""
661
+
662
+ #: includes/wg-settings-page.php:246
663
+ msgid "Left to Right languages"
664
+ msgstr "Langues de droite à gauche"
665
+
666
+ #: includes/wg-settings-page.php:246
667
+ msgid "Right to Left languages"
668
+ msgstr "Langues de gauche à droite"
669
+
670
+ #: includes/wg-settings-page.php:248
671
+ msgid "Customize style for "
672
+ msgstr "Personnaliser le style pour les "
673
+
674
+ #: includes/wg-settings-page.php:252
675
+ msgid "Write CSS rules to apply on %s page."
676
+ msgstr ""
677
+
678
+ #: includes/wg-settings-page.php:261
679
+ msgid "Where are my translations?"
680
+ msgstr "Où trouver mes traductions ?"
681
+
682
+ #: includes/wg-settings-page.php:263
683
+ msgid "You can find all your translations in your Weglot account:"
684
+ msgstr "Vous pouvez trouver toutes vos traductions dans votre compte Weglot :"
685
+
686
+ #: includes/wg-settings-page.php:264
687
+ msgid "https://weglot.com/dashboard"
688
+ msgstr "https://weglot.com/fr/dashboard"
689
+
690
+ #: includes/wg-settings-page.php:264
691
+ msgid "Edit my translations"
692
+ msgstr "Modifier mes traductions"
693
+
694
+ #: includes/wg-settings-page.php:269
695
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
696
+ msgstr "Vous aimez Weglot ? Donnez-nous 5 étoiles sur WordPress.org :)"
697
+
698
+ #: includes/wg-settings-page.php:272
699
+ msgid ""
700
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
701
+ "or email us at support@weglot.com."
702
+ msgstr ""
703
+
704
+ #: weglot.php:181
705
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
706
+ msgstr ""
707
+
708
+ #: weglot.php:181
709
+ msgid ""
710
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
711
+ "greater. Your current version of PHP is %s."
712
+ msgstr ""
713
+
714
+ #: weglot.php:181
715
+ msgid ""
716
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
717
+ "sending it an email."
718
+ msgstr ""
719
+
720
+ #: weglot.php:182
721
+ msgid "Plugin Activation Error"
722
+ msgstr ""
723
+
724
+ #: weglot.php:221
725
+ msgid "Settings"
726
+ msgstr "Réglages"
727
+
728
+ #: weglot.php:228
729
+ msgid ""
730
+ "Weglot Translate is not active because you have exceeded the free limit. "
731
+ "Please %supgrade your plan%s if you want to keep the service running."
732
+ msgstr ""
733
+
734
+ #: weglot.php:236
735
+ msgid ""
736
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
737
+ "Please upgrade your PHP version (you can contact your host and they will do "
738
+ "it for you)."
739
+ msgstr ""
740
+
741
+ #: weglot.php:244
742
+ msgid ""
743
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
744
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
745
+ "us directly %2$shere%3$s."
746
+ msgstr ""
747
+
748
+ #. Plugin URI of the plugin/theme
749
+ msgid "http://wordpress.org/plugins/Weglot/"
750
+ msgstr "http://wordpress.org/plugins/Weglot/"
751
+
752
+ #. Description of the plugin/theme
753
+ msgid ""
754
+ "Translate your website into multiple languages in minutes without doing any "
755
+ "coding. Fully SEO compatible."
756
+ msgstr ""
757
+
758
+ #. Author of the plugin/theme
759
+ msgid "Remy B"
760
+ msgstr "Rémy B"
languages/weglot-it_IT.mo ADDED
Binary file
languages/weglot-it_IT.po ADDED
@@ -0,0 +1,754 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # FX Bénard <fxb@wp-translations.org>, 2017
5
+ # Derek Ashauer <derek@ashwebstudio.com>, 2017
6
+ # Alessandro Curci <hantarex@gmail.com>, 2017
7
+ # marco salvadori <marcosalvadori1965@gmail.com>, 2017
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
11
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
12
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
13
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
14
+ "Last-Translator: marco salvadori <marcosalvadori1965@gmail.com>, 2017\n"
15
+ "Language-Team: Italian (Italy) (https://www.transifex.com/wp-translations/"
16
+ "teams/64435/it_IT/)\n"
17
+ "Language: it_IT\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+ "X-Generator: grunt-wp-i18n1.0.0\n"
23
+ "X-Poedit-Basepath: ../\n"
24
+ "X-Poedit-Bookmarks: \n"
25
+ "X-Poedit-Country: United States\n"
26
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
27
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
28
+ "esc_html_x:1,2c;\n"
29
+ "X-Poedit-SearchPath-0: .\n"
30
+ "X-Poedit-SourceCharset: UTF-8\n"
31
+ "X-Textdomain-Support: yes\n"
32
+
33
+ #. Plugin Name of the plugin/theme
34
+ msgid "Weglot Translate"
35
+ msgstr ""
36
+
37
+ #: WeglotWidget.php:41
38
+ msgid "Title:"
39
+ msgstr "Titolo:"
40
+
41
+ #: includes/wg-settings-page.php:17
42
+ msgid ""
43
+ "Weglot Translate service is not active because you have reached the end of "
44
+ "the trial period."
45
+ msgstr ""
46
+
47
+ #: includes/wg-settings-page.php:18
48
+ msgid "To reactivate the service, please %supgrade your plan%s."
49
+ msgstr ""
50
+
51
+ #: includes/wg-settings-page.php:25
52
+ msgid "Close"
53
+ msgstr "Chiuso"
54
+
55
+ #: includes/wg-settings-page.php:26
56
+ msgid "Well done! Your website is now multilingual."
57
+ msgstr ""
58
+
59
+ #: includes/wg-settings-page.php:27
60
+ msgid "Go on your website, there is a language switcher. Try it :)"
61
+ msgstr ""
62
+
63
+ #: includes/wg-settings-page.php:28
64
+ msgid "Go on my front page."
65
+ msgstr ""
66
+
67
+ #: includes/wg-settings-page.php:29
68
+ msgid "Next step, edit your translations directly in your Weglot account."
69
+ msgstr ""
70
+
71
+ #: includes/wg-settings-page.php:40
72
+ msgid "Main configuration"
73
+ msgstr ""
74
+
75
+ #: includes/wg-settings-page.php:43
76
+ msgid "API Key"
77
+ msgstr "API Key"
78
+
79
+ #: includes/wg-settings-page.php:43
80
+ msgid "Log in to %sWeglot%s to get your API key."
81
+ msgstr ""
82
+
83
+ #: includes/wg-settings-page.php:47
84
+ msgid "Original Language"
85
+ msgstr ""
86
+
87
+ #: includes/wg-settings-page.php:47
88
+ msgid "What is the original (current) language of your website?"
89
+ msgstr ""
90
+
91
+ #: includes/wg-settings-page.php:50
92
+ msgid "French"
93
+ msgstr "Francese"
94
+
95
+ #: includes/wg-settings-page.php:51
96
+ msgid "English"
97
+ msgstr "Inglese"
98
+
99
+ #: includes/wg-settings-page.php:52
100
+ msgid "Simplified Chinese"
101
+ msgstr ""
102
+
103
+ #: includes/wg-settings-page.php:53
104
+ msgid "Traditional Chinese"
105
+ msgstr ""
106
+
107
+ #: includes/wg-settings-page.php:54
108
+ msgid "Russian"
109
+ msgstr "Russo"
110
+
111
+ #: includes/wg-settings-page.php:55
112
+ msgid "German"
113
+ msgstr "Tedesco"
114
+
115
+ #: includes/wg-settings-page.php:56
116
+ msgid "Spanish"
117
+ msgstr "Spagnolo"
118
+
119
+ #: includes/wg-settings-page.php:57
120
+ msgid "Albanian"
121
+ msgstr "Albanese"
122
+
123
+ #: includes/wg-settings-page.php:58
124
+ msgid "Arabic"
125
+ msgstr "Arabo"
126
+
127
+ #: includes/wg-settings-page.php:59
128
+ msgid "Armenian"
129
+ msgstr "Armeno"
130
+
131
+ #: includes/wg-settings-page.php:60
132
+ msgid "Azerbaijani"
133
+ msgstr "Azerbaiggiano"
134
+
135
+ #: includes/wg-settings-page.php:61
136
+ msgid "Afrikaans"
137
+ msgstr "Afrikaans"
138
+
139
+ #: includes/wg-settings-page.php:62
140
+ msgid "Basque"
141
+ msgstr "Basco"
142
+
143
+ #: includes/wg-settings-page.php:63
144
+ msgid "Belarusian"
145
+ msgstr "Bielorusso"
146
+
147
+ #: includes/wg-settings-page.php:64
148
+ msgid "Bulgarian"
149
+ msgstr "Bulgaro"
150
+
151
+ #: includes/wg-settings-page.php:65
152
+ msgid "Bosnian"
153
+ msgstr "Borsniaco"
154
+
155
+ #: includes/wg-settings-page.php:66
156
+ msgid "Vietnamese"
157
+ msgstr "Vietnamese"
158
+
159
+ #: includes/wg-settings-page.php:67
160
+ msgid "Hungarian"
161
+ msgstr "Ungherese"
162
+
163
+ #: includes/wg-settings-page.php:68
164
+ msgid "Haitian"
165
+ msgstr "Haitiano"
166
+
167
+ #: includes/wg-settings-page.php:69
168
+ msgid "Dutch"
169
+ msgstr "Olandese"
170
+
171
+ #: includes/wg-settings-page.php:70
172
+ msgid "Greek"
173
+ msgstr "Greco"
174
+
175
+ #: includes/wg-settings-page.php:71
176
+ msgid "Georgian"
177
+ msgstr "Georgiano"
178
+
179
+ #: includes/wg-settings-page.php:72
180
+ msgid "Danish"
181
+ msgstr "Danese"
182
+
183
+ #: includes/wg-settings-page.php:73
184
+ msgid "Hebrew"
185
+ msgstr "Ebraico"
186
+
187
+ #: includes/wg-settings-page.php:74
188
+ msgid "Indonesian"
189
+ msgstr "Indonesiano"
190
+
191
+ #: includes/wg-settings-page.php:75
192
+ msgid "Irish"
193
+ msgstr "Gaelico"
194
+
195
+ #: includes/wg-settings-page.php:76
196
+ msgid "Italian"
197
+ msgstr "Italiano"
198
+
199
+ #: includes/wg-settings-page.php:77
200
+ msgid "Icelandic"
201
+ msgstr "Islandese"
202
+
203
+ #: includes/wg-settings-page.php:78
204
+ msgid "Kazakh"
205
+ msgstr "Kazako"
206
+
207
+ #: includes/wg-settings-page.php:79
208
+ msgid "Catalan"
209
+ msgstr "Catalano"
210
+
211
+ #: includes/wg-settings-page.php:80
212
+ msgid "Kyrgyz"
213
+ msgstr "Kirghiso"
214
+
215
+ #: includes/wg-settings-page.php:81
216
+ msgid "Korean"
217
+ msgstr "Coreano"
218
+
219
+ #: includes/wg-settings-page.php:82
220
+ msgid "Latvian"
221
+ msgstr "Lettone"
222
+
223
+ #: includes/wg-settings-page.php:83
224
+ msgid "Lithuanian"
225
+ msgstr "Lituano"
226
+
227
+ #: includes/wg-settings-page.php:84
228
+ msgid "Malagasy"
229
+ msgstr ""
230
+
231
+ #: includes/wg-settings-page.php:85
232
+ msgid "Malay"
233
+ msgstr "Malese"
234
+
235
+ #: includes/wg-settings-page.php:86
236
+ msgid "Maltese"
237
+ msgstr "Maltese"
238
+
239
+ #: includes/wg-settings-page.php:87
240
+ msgid "Macedonian"
241
+ msgstr "Macedone"
242
+
243
+ #: includes/wg-settings-page.php:88
244
+ msgid "Mongolian"
245
+ msgstr "Mongolo"
246
+
247
+ #: includes/wg-settings-page.php:89
248
+ msgid "Norwegian"
249
+ msgstr "Norvegese"
250
+
251
+ #: includes/wg-settings-page.php:90
252
+ msgid "Persian"
253
+ msgstr "Persiano"
254
+
255
+ #: includes/wg-settings-page.php:91
256
+ msgid "Polish"
257
+ msgstr "Polacco"
258
+
259
+ #: includes/wg-settings-page.php:92
260
+ msgid "Portuguese"
261
+ msgstr "Portoghese"
262
+
263
+ #: includes/wg-settings-page.php:93
264
+ msgid "Romanian"
265
+ msgstr "Romeno"
266
+
267
+ #: includes/wg-settings-page.php:94
268
+ msgid "Serbian"
269
+ msgstr "Serbo"
270
+
271
+ #: includes/wg-settings-page.php:95
272
+ msgid "Slovak"
273
+ msgstr "Slovaco"
274
+
275
+ #: includes/wg-settings-page.php:96
276
+ msgid "Slovenian"
277
+ msgstr "Sloveno"
278
+
279
+ #: includes/wg-settings-page.php:97
280
+ msgid "Swahili"
281
+ msgstr "Swahili"
282
+
283
+ #: includes/wg-settings-page.php:98
284
+ msgid "Tajik"
285
+ msgstr ""
286
+
287
+ #: includes/wg-settings-page.php:99
288
+ msgid "Thai"
289
+ msgstr "Thailandese"
290
+
291
+ #: includes/wg-settings-page.php:100
292
+ msgid "Turkish"
293
+ msgstr "Turco"
294
+
295
+ #: includes/wg-settings-page.php:101
296
+ msgid "Uzbek"
297
+ msgstr "Uzbeko"
298
+
299
+ #: includes/wg-settings-page.php:102
300
+ msgid "Ukrainian"
301
+ msgstr "Ucrainiano"
302
+
303
+ #: includes/wg-settings-page.php:103
304
+ msgid "Finnish"
305
+ msgstr "Finlandese"
306
+
307
+ #: includes/wg-settings-page.php:104
308
+ msgid "Croatian"
309
+ msgstr "Croato"
310
+
311
+ #: includes/wg-settings-page.php:105
312
+ msgid "Czech"
313
+ msgstr "cecoslovacco"
314
+
315
+ #: includes/wg-settings-page.php:106
316
+ msgid "Swedish"
317
+ msgstr "Svedese"
318
+
319
+ #: includes/wg-settings-page.php:107
320
+ msgid "Estonian"
321
+ msgstr "Estone"
322
+
323
+ #: includes/wg-settings-page.php:108
324
+ msgid "Japanese"
325
+ msgstr "Giapponese"
326
+
327
+ #: includes/wg-settings-page.php:109
328
+ msgid "Hindi"
329
+ msgstr ""
330
+
331
+ #: includes/wg-settings-page.php:110
332
+ msgid "Urdu"
333
+ msgstr ""
334
+
335
+ #: includes/wg-settings-page.php:115
336
+ msgid "Destination Languages"
337
+ msgstr ""
338
+
339
+ #: includes/wg-settings-page.php:115
340
+ msgid ""
341
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
342
+ "found %shere%s."
343
+ msgstr ""
344
+
345
+ #: includes/wg-settings-page.php:116
346
+ msgid ""
347
+ "On the free plan, you can only choose one language with a maximum of 2000 "
348
+ "words. If you want to use more than 1 language and 2000 words, please "
349
+ "%supgrade your plan%s."
350
+ msgstr ""
351
+
352
+ #: includes/wg-settings-page.php:116
353
+ msgid ""
354
+ "On the Starter plan, you can only choose one language. If you want to use "
355
+ "more than 1 language, please %supgrade your plan%s."
356
+ msgstr ""
357
+
358
+ #: includes/wg-settings-page.php:119
359
+ msgid "Language button appearance"
360
+ msgstr ""
361
+
362
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
363
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
364
+ #: includes/wg-settings-page.php:248
365
+ msgid "(Optional)"
366
+ msgstr "(Opzionale)"
367
+
368
+ #: includes/wg-settings-page.php:120
369
+ msgid "Preview:"
370
+ msgstr "Anteprimaç"
371
+
372
+ #: includes/wg-settings-page.php:123
373
+ msgid "Dropdown?"
374
+ msgstr ""
375
+
376
+ #: includes/wg-settings-page.php:124
377
+ msgid "Check if you want the button to be a dropdown box."
378
+ msgstr ""
379
+
380
+ #: includes/wg-settings-page.php:127
381
+ msgid "With flags?"
382
+ msgstr ""
383
+
384
+ #: includes/wg-settings-page.php:128
385
+ msgid "Check if you want flags in the language button."
386
+ msgstr ""
387
+
388
+ #: includes/wg-settings-page.php:131
389
+ msgid "Type of flags"
390
+ msgstr ""
391
+
392
+ #: includes/wg-settings-page.php:134
393
+ msgid "Rectangle mat"
394
+ msgstr ""
395
+
396
+ #: includes/wg-settings-page.php:135
397
+ msgid "Rectangle bright"
398
+ msgstr ""
399
+
400
+ #: includes/wg-settings-page.php:136
401
+ msgid "Square"
402
+ msgstr "Quadrata"
403
+
404
+ #: includes/wg-settings-page.php:137
405
+ msgid "Circle"
406
+ msgstr "Cerchio"
407
+
408
+ #: includes/wg-settings-page.php:139
409
+ msgid "Change country flags"
410
+ msgstr ""
411
+
412
+ #: includes/wg-settings-page.php:142
413
+ msgid "Choose English flag:"
414
+ msgstr ""
415
+
416
+ #: includes/wg-settings-page.php:143
417
+ msgid "United Kingdom (default)"
418
+ msgstr ""
419
+
420
+ #: includes/wg-settings-page.php:144
421
+ msgid "United States"
422
+ msgstr "United States"
423
+
424
+ #: includes/wg-settings-page.php:145
425
+ msgid "Australia"
426
+ msgstr "Australia"
427
+
428
+ #: includes/wg-settings-page.php:146
429
+ msgid "Canada"
430
+ msgstr "Canada"
431
+
432
+ #: includes/wg-settings-page.php:147
433
+ msgid "New Zealand"
434
+ msgstr "New Zealand"
435
+
436
+ #: includes/wg-settings-page.php:148
437
+ msgid "Jamaica"
438
+ msgstr "Jamaica"
439
+
440
+ #: includes/wg-settings-page.php:149
441
+ msgid "Ireland"
442
+ msgstr "Irlanda"
443
+
444
+ #: includes/wg-settings-page.php:152
445
+ msgid "Choose Spanish flag:"
446
+ msgstr ""
447
+
448
+ #: includes/wg-settings-page.php:153
449
+ msgid "Spain (default)"
450
+ msgstr ""
451
+
452
+ #: includes/wg-settings-page.php:154
453
+ msgid "Mexico"
454
+ msgstr "Mexico"
455
+
456
+ #: includes/wg-settings-page.php:155
457
+ msgid "Argentina"
458
+ msgstr "Argentina"
459
+
460
+ #: includes/wg-settings-page.php:156
461
+ msgid "Colombia"
462
+ msgstr "Colombia"
463
+
464
+ #: includes/wg-settings-page.php:157
465
+ msgid "Peru"
466
+ msgstr "Peru"
467
+
468
+ #: includes/wg-settings-page.php:158
469
+ msgid "Bolivia"
470
+ msgstr "Bolivia"
471
+
472
+ #: includes/wg-settings-page.php:159
473
+ msgid "Uruguay"
474
+ msgstr "Uruguay"
475
+
476
+ #: includes/wg-settings-page.php:160
477
+ msgid "Venezuela"
478
+ msgstr "Venezuela"
479
+
480
+ #: includes/wg-settings-page.php:161
481
+ msgid "Chile"
482
+ msgstr "Chile"
483
+
484
+ #: includes/wg-settings-page.php:162
485
+ msgid "Ecuador"
486
+ msgstr "Ecuador"
487
+
488
+ #: includes/wg-settings-page.php:163
489
+ msgid "Guatemala"
490
+ msgstr "Guatemala"
491
+
492
+ #: includes/wg-settings-page.php:164
493
+ msgid "Cuba"
494
+ msgstr "Cuba"
495
+
496
+ #: includes/wg-settings-page.php:165
497
+ msgid "Dominican Republic"
498
+ msgstr "Dominican Republic"
499
+
500
+ #: includes/wg-settings-page.php:166
501
+ msgid "Honduras"
502
+ msgstr "Honduras"
503
+
504
+ #: includes/wg-settings-page.php:167
505
+ msgid "Paraguay"
506
+ msgstr "Paraguay"
507
+
508
+ #: includes/wg-settings-page.php:168
509
+ msgid "El Salvador"
510
+ msgstr "El Salvador"
511
+
512
+ #: includes/wg-settings-page.php:169
513
+ msgid "Nicaragua"
514
+ msgstr "Nicaragua"
515
+
516
+ #: includes/wg-settings-page.php:170
517
+ msgid "Costa Rica"
518
+ msgstr "Costa Rica"
519
+
520
+ #: includes/wg-settings-page.php:171
521
+ msgid "Puerto Rico"
522
+ msgstr "Puerto Rico"
523
+
524
+ #: includes/wg-settings-page.php:172
525
+ msgid "Panama"
526
+ msgstr "Panama"
527
+
528
+ #: includes/wg-settings-page.php:175
529
+ msgid "Choose Portuguese flag:"
530
+ msgstr ""
531
+
532
+ #: includes/wg-settings-page.php:176
533
+ msgid "Brazil (default)"
534
+ msgstr ""
535
+
536
+ #: includes/wg-settings-page.php:177
537
+ msgid "Portugal"
538
+ msgstr "Portugal"
539
+
540
+ #: includes/wg-settings-page.php:179
541
+ msgid "If you want to use a different flag, just ask us."
542
+ msgstr ""
543
+
544
+ #: includes/wg-settings-page.php:184
545
+ msgid "With name?"
546
+ msgstr ""
547
+
548
+ #: includes/wg-settings-page.php:185
549
+ msgid "Check if you want to display the name of languages."
550
+ msgstr ""
551
+
552
+ #: includes/wg-settings-page.php:188
553
+ msgid "Full name?"
554
+ msgstr ""
555
+
556
+ #: includes/wg-settings-page.php:189
557
+ msgid ""
558
+ "Check if you want the name of the languge. Don't check if you want the "
559
+ "language code."
560
+ msgstr ""
561
+
562
+ #: includes/wg-settings-page.php:192
563
+ msgid "Override CSS"
564
+ msgstr ""
565
+
566
+ #: includes/wg-settings-page.php:192
567
+ msgid "Don't change it unless you want a specific style for your button."
568
+ msgstr ""
569
+
570
+ #: includes/wg-settings-page.php:202
571
+ msgid "Language button position"
572
+ msgstr ""
573
+
574
+ #: includes/wg-settings-page.php:203
575
+ msgid ""
576
+ "Where will the language button be on my website? By default, bottom right."
577
+ msgstr ""
578
+
579
+ #: includes/wg-settings-page.php:206
580
+ msgid "In menu?"
581
+ msgstr ""
582
+
583
+ #: includes/wg-settings-page.php:207
584
+ msgid "Check if you want to display the button in the navigation menu."
585
+ msgstr ""
586
+
587
+ #: includes/wg-settings-page.php:210
588
+ msgid "As a widget?"
589
+ msgstr ""
590
+
591
+ #: includes/wg-settings-page.php:211
592
+ msgid ""
593
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
594
+ "drag and drop the Weglot Translate widget where you want."
595
+ msgstr ""
596
+
597
+ #: includes/wg-settings-page.php:214
598
+ msgid "With a shortcode?"
599
+ msgstr ""
600
+
601
+ #: includes/wg-settings-page.php:215
602
+ msgid ""
603
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
604
+ "place the button."
605
+ msgstr ""
606
+
607
+ #: includes/wg-settings-page.php:218
608
+ msgid "In the source code?"
609
+ msgstr ""
610
+
611
+ #: includes/wg-settings-page.php:219
612
+ msgid ""
613
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
614
+ "wherever you want in the source code of your HTML page. The button will "
615
+ "appear at this place."
616
+ msgstr ""
617
+
618
+ #: includes/wg-settings-page.php:222
619
+ msgid "Translation Exclusion"
620
+ msgstr ""
621
+
622
+ #: includes/wg-settings-page.php:224
623
+ msgid ""
624
+ "By default, every page is translated. You can exclude parts of a page or a "
625
+ "full page here."
626
+ msgstr ""
627
+
628
+ #: includes/wg-settings-page.php:227
629
+ msgid "Exclude URL here"
630
+ msgstr ""
631
+
632
+ #: includes/wg-settings-page.php:227
633
+ msgid "You can write regex."
634
+ msgstr ""
635
+
636
+ #: includes/wg-settings-page.php:231
637
+ msgid "Exclude blocks"
638
+ msgstr ""
639
+
640
+ #: includes/wg-settings-page.php:231
641
+ msgid "Enter CSS selectors, separated by commas."
642
+ msgstr ""
643
+
644
+ #: includes/wg-settings-page.php:236
645
+ msgid "Other options"
646
+ msgstr ""
647
+
648
+ #: includes/wg-settings-page.php:240
649
+ msgid "Auto redirect?"
650
+ msgstr ""
651
+
652
+ #: includes/wg-settings-page.php:241
653
+ msgid "Check if you want to redirect users based on their browser language."
654
+ msgstr ""
655
+
656
+ #: includes/wg-settings-page.php:246
657
+ msgid "Left to Right languages"
658
+ msgstr ""
659
+
660
+ #: includes/wg-settings-page.php:246
661
+ msgid "Right to Left languages"
662
+ msgstr ""
663
+
664
+ #: includes/wg-settings-page.php:248
665
+ msgid "Customize style for "
666
+ msgstr ""
667
+
668
+ #: includes/wg-settings-page.php:252
669
+ msgid "Write CSS rules to apply on %s page."
670
+ msgstr ""
671
+
672
+ #: includes/wg-settings-page.php:261
673
+ msgid "Where are my translations?"
674
+ msgstr ""
675
+
676
+ #: includes/wg-settings-page.php:263
677
+ msgid "You can find all your translations in your Weglot account:"
678
+ msgstr ""
679
+
680
+ #: includes/wg-settings-page.php:264
681
+ msgid "https://weglot.com/dashboard"
682
+ msgstr ""
683
+
684
+ #: includes/wg-settings-page.php:264
685
+ msgid "Edit my translations"
686
+ msgstr ""
687
+
688
+ #: includes/wg-settings-page.php:269
689
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
690
+ msgstr ""
691
+
692
+ #: includes/wg-settings-page.php:272
693
+ msgid ""
694
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
695
+ "or email us at support@weglot.com."
696
+ msgstr ""
697
+
698
+ #: weglot.php:181
699
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
700
+ msgstr ""
701
+
702
+ #: weglot.php:181
703
+ msgid ""
704
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
705
+ "greater. Your current version of PHP is %s."
706
+ msgstr ""
707
+
708
+ #: weglot.php:181
709
+ msgid ""
710
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
711
+ "sending it an email."
712
+ msgstr ""
713
+
714
+ #: weglot.php:182
715
+ msgid "Plugin Activation Error"
716
+ msgstr ""
717
+
718
+ #: weglot.php:221
719
+ msgid "Settings"
720
+ msgstr "Proprietà"
721
+
722
+ #: weglot.php:228
723
+ msgid ""
724
+ "Weglot Translate is not active because you have exceeded the free limit. "
725
+ "Please %supgrade your plan%s if you want to keep the service running."
726
+ msgstr ""
727
+
728
+ #: weglot.php:236
729
+ msgid ""
730
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
731
+ "Please upgrade your PHP version (you can contact your host and they will do "
732
+ "it for you)."
733
+ msgstr ""
734
+
735
+ #: weglot.php:244
736
+ msgid ""
737
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
738
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
739
+ "us directly %2$shere%3$s."
740
+ msgstr ""
741
+
742
+ #. Plugin URI of the plugin/theme
743
+ msgid "http://wordpress.org/plugins/Weglot/"
744
+ msgstr ""
745
+
746
+ #. Description of the plugin/theme
747
+ msgid ""
748
+ "Translate your website into multiple languages in minutes without doing any "
749
+ "coding. Fully SEO compatible."
750
+ msgstr ""
751
+
752
+ #. Author of the plugin/theme
753
+ msgid "Remy B"
754
+ msgstr ""
languages/weglot-nl_NL.mo ADDED
Binary file
languages/weglot-nl_NL.po ADDED
@@ -0,0 +1,770 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # FX Bénard <fxb@wp-translations.org>, 2017
5
+ # Thom <thom.pp9@gmail.com>, 2017
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
9
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
10
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
11
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: Thom <thom.pp9@gmail.com>, 2017\n"
13
+ "Language-Team: Dutch (Netherlands) (https://www.transifex.com/wp-"
14
+ "translations/teams/64435/nl_NL/)\n"
15
+ "Language: nl_NL\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "X-Generator: grunt-wp-i18n1.0.0\n"
21
+ "X-Poedit-Basepath: ../\n"
22
+ "X-Poedit-Bookmarks: \n"
23
+ "X-Poedit-Country: United States\n"
24
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
25
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
26
+ "esc_html_x:1,2c;\n"
27
+ "X-Poedit-SearchPath-0: .\n"
28
+ "X-Poedit-SourceCharset: UTF-8\n"
29
+ "X-Textdomain-Support: yes\n"
30
+
31
+ #. Plugin Name of the plugin/theme
32
+ msgid "Weglot Translate"
33
+ msgstr "Weglot Translate"
34
+
35
+ #: WeglotWidget.php:41
36
+ msgid "Title:"
37
+ msgstr "Titel:"
38
+
39
+ #: includes/wg-settings-page.php:17
40
+ msgid ""
41
+ "Weglot Translate service is not active because you have reached the end of "
42
+ "the trial period."
43
+ msgstr ""
44
+ "Weglot Translate-service is niet actief, omdat je het einde van je "
45
+ "proefperiode hebt bereikt."
46
+
47
+ #: includes/wg-settings-page.php:18
48
+ msgid "To reactivate the service, please %supgrade your plan%s."
49
+ msgstr "Om de service te heractiveren, %supgrade je plan%s."
50
+
51
+ #: includes/wg-settings-page.php:25
52
+ msgid "Close"
53
+ msgstr "Sluit"
54
+
55
+ #: includes/wg-settings-page.php:26
56
+ msgid "Well done! Your website is now multilingual."
57
+ msgstr "Goed gedaan! Je website is nu meertalig."
58
+
59
+ #: includes/wg-settings-page.php:27
60
+ msgid "Go on your website, there is a language switcher. Try it :)"
61
+ msgstr ""
62
+
63
+ #: includes/wg-settings-page.php:28
64
+ msgid "Go on my front page."
65
+ msgstr ""
66
+
67
+ #: includes/wg-settings-page.php:29
68
+ msgid "Next step, edit your translations directly in your Weglot account."
69
+ msgstr "Volgende stap, bewerk je vertalingen direct in je Weglot-account."
70
+
71
+ #: includes/wg-settings-page.php:40
72
+ msgid "Main configuration"
73
+ msgstr "Hoofdconfiguratie"
74
+
75
+ #: includes/wg-settings-page.php:43
76
+ msgid "API Key"
77
+ msgstr "API-key"
78
+
79
+ #: includes/wg-settings-page.php:43
80
+ msgid "Log in to %sWeglot%s to get your API key."
81
+ msgstr "Log in op %sWeglot%s om je API-sleutel te verkrijgen."
82
+
83
+ #: includes/wg-settings-page.php:47
84
+ msgid "Original Language"
85
+ msgstr "Originele taal"
86
+
87
+ #: includes/wg-settings-page.php:47
88
+ msgid "What is the original (current) language of your website?"
89
+ msgstr "Wat is de originele (huidige) taal van je website?"
90
+
91
+ #: includes/wg-settings-page.php:50
92
+ msgid "French"
93
+ msgstr "Frans"
94
+
95
+ #: includes/wg-settings-page.php:51
96
+ msgid "English"
97
+ msgstr "Engels"
98
+
99
+ #: includes/wg-settings-page.php:52
100
+ msgid "Simplified Chinese"
101
+ msgstr "Vereenvoudigd Chinees"
102
+
103
+ #: includes/wg-settings-page.php:53
104
+ msgid "Traditional Chinese"
105
+ msgstr "Traditioneel Chinees"
106
+
107
+ #: includes/wg-settings-page.php:54
108
+ msgid "Russian"
109
+ msgstr "Russisch "
110
+
111
+ #: includes/wg-settings-page.php:55
112
+ msgid "German"
113
+ msgstr "Duits"
114
+
115
+ #: includes/wg-settings-page.php:56
116
+ msgid "Spanish"
117
+ msgstr "Spaans"
118
+
119
+ #: includes/wg-settings-page.php:57
120
+ msgid "Albanian"
121
+ msgstr "Albanees"
122
+
123
+ #: includes/wg-settings-page.php:58
124
+ msgid "Arabic"
125
+ msgstr "Arabisch"
126
+
127
+ #: includes/wg-settings-page.php:59
128
+ msgid "Armenian"
129
+ msgstr "Armeens"
130
+
131
+ #: includes/wg-settings-page.php:60
132
+ msgid "Azerbaijani"
133
+ msgstr "Azerbeidjaans"
134
+
135
+ #: includes/wg-settings-page.php:61
136
+ msgid "Afrikaans"
137
+ msgstr "Afrikaans"
138
+
139
+ #: includes/wg-settings-page.php:62
140
+ msgid "Basque"
141
+ msgstr "Baskisch"
142
+
143
+ #: includes/wg-settings-page.php:63
144
+ msgid "Belarusian"
145
+ msgstr "Wit-Russisch"
146
+
147
+ #: includes/wg-settings-page.php:64
148
+ msgid "Bulgarian"
149
+ msgstr "Bulgaars"
150
+
151
+ #: includes/wg-settings-page.php:65
152
+ msgid "Bosnian"
153
+ msgstr "Bosnisch"
154
+
155
+ #: includes/wg-settings-page.php:66
156
+ msgid "Vietnamese"
157
+ msgstr "Vietnamees"
158
+
159
+ #: includes/wg-settings-page.php:67
160
+ msgid "Hungarian"
161
+ msgstr "Hongaars"
162
+
163
+ #: includes/wg-settings-page.php:68
164
+ msgid "Haitian"
165
+ msgstr "Haïtiaans"
166
+
167
+ #: includes/wg-settings-page.php:69
168
+ msgid "Dutch"
169
+ msgstr "Nederlands"
170
+
171
+ #: includes/wg-settings-page.php:70
172
+ msgid "Greek"
173
+ msgstr "Grieks"
174
+
175
+ #: includes/wg-settings-page.php:71
176
+ msgid "Georgian"
177
+ msgstr "Georgisch"
178
+
179
+ #: includes/wg-settings-page.php:72
180
+ msgid "Danish"
181
+ msgstr "Deens"
182
+
183
+ #: includes/wg-settings-page.php:73
184
+ msgid "Hebrew"
185
+ msgstr "Hebreeuws"
186
+
187
+ #: includes/wg-settings-page.php:74
188
+ msgid "Indonesian"
189
+ msgstr "Indonesisch"
190
+
191
+ #: includes/wg-settings-page.php:75
192
+ msgid "Irish"
193
+ msgstr "Iers"
194
+
195
+ #: includes/wg-settings-page.php:76
196
+ msgid "Italian"
197
+ msgstr "Italiaans"
198
+
199
+ #: includes/wg-settings-page.php:77
200
+ msgid "Icelandic"
201
+ msgstr "IJslands"
202
+
203
+ #: includes/wg-settings-page.php:78
204
+ msgid "Kazakh"
205
+ msgstr "Kazachs"
206
+
207
+ #: includes/wg-settings-page.php:79
208
+ msgid "Catalan"
209
+ msgstr "Catelaans"
210
+
211
+ #: includes/wg-settings-page.php:80
212
+ msgid "Kyrgyz"
213
+ msgstr "Kirgizisch"
214
+
215
+ #: includes/wg-settings-page.php:81
216
+ msgid "Korean"
217
+ msgstr "Koreaans"
218
+
219
+ #: includes/wg-settings-page.php:82
220
+ msgid "Latvian"
221
+ msgstr "Lets"
222
+
223
+ #: includes/wg-settings-page.php:83
224
+ msgid "Lithuanian"
225
+ msgstr "Litouws"
226
+
227
+ #: includes/wg-settings-page.php:84
228
+ msgid "Malagasy"
229
+ msgstr "Malagasi"
230
+
231
+ #: includes/wg-settings-page.php:85
232
+ msgid "Malay"
233
+ msgstr "Maleis"
234
+
235
+ #: includes/wg-settings-page.php:86
236
+ msgid "Maltese"
237
+ msgstr "Maltees "
238
+
239
+ #: includes/wg-settings-page.php:87
240
+ msgid "Macedonian"
241
+ msgstr "Macedonisch"
242
+
243
+ #: includes/wg-settings-page.php:88
244
+ msgid "Mongolian"
245
+ msgstr "Mongools"
246
+
247
+ #: includes/wg-settings-page.php:89
248
+ msgid "Norwegian"
249
+ msgstr "Noors"
250
+
251
+ #: includes/wg-settings-page.php:90
252
+ msgid "Persian"
253
+ msgstr "Perzisch"
254
+
255
+ #: includes/wg-settings-page.php:91
256
+ msgid "Polish"
257
+ msgstr "Pools"
258
+
259
+ #: includes/wg-settings-page.php:92
260
+ msgid "Portuguese"
261
+ msgstr "Portugees"
262
+
263
+ #: includes/wg-settings-page.php:93
264
+ msgid "Romanian"
265
+ msgstr "Roemeens"
266
+
267
+ #: includes/wg-settings-page.php:94
268
+ msgid "Serbian"
269
+ msgstr "Servisch"
270
+
271
+ #: includes/wg-settings-page.php:95
272
+ msgid "Slovak"
273
+ msgstr "Slowaaks"
274
+
275
+ #: includes/wg-settings-page.php:96
276
+ msgid "Slovenian"
277
+ msgstr "Sloveens"
278
+
279
+ #: includes/wg-settings-page.php:97
280
+ msgid "Swahili"
281
+ msgstr "Swahili"
282
+
283
+ #: includes/wg-settings-page.php:98
284
+ msgid "Tajik"
285
+ msgstr "Tadzjieks"
286
+
287
+ #: includes/wg-settings-page.php:99
288
+ msgid "Thai"
289
+ msgstr "Thais"
290
+
291
+ #: includes/wg-settings-page.php:100
292
+ msgid "Turkish"
293
+ msgstr "Turks"
294
+
295
+ #: includes/wg-settings-page.php:101
296
+ msgid "Uzbek"
297
+ msgstr "Oezbeeks"
298
+
299
+ #: includes/wg-settings-page.php:102
300
+ msgid "Ukrainian"
301
+ msgstr "Oekraïens"
302
+
303
+ #: includes/wg-settings-page.php:103
304
+ msgid "Finnish"
305
+ msgstr "Fins"
306
+
307
+ #: includes/wg-settings-page.php:104
308
+ msgid "Croatian"
309
+ msgstr "Kroaats"
310
+
311
+ #: includes/wg-settings-page.php:105
312
+ msgid "Czech"
313
+ msgstr "Tjechisch"
314
+
315
+ #: includes/wg-settings-page.php:106
316
+ msgid "Swedish"
317
+ msgstr "Zweeds"
318
+
319
+ #: includes/wg-settings-page.php:107
320
+ msgid "Estonian"
321
+ msgstr "Estlands"
322
+
323
+ #: includes/wg-settings-page.php:108
324
+ msgid "Japanese"
325
+ msgstr "Japans"
326
+
327
+ #: includes/wg-settings-page.php:109
328
+ msgid "Hindi"
329
+ msgstr "Hindi"
330
+
331
+ #: includes/wg-settings-page.php:110
332
+ msgid "Urdu"
333
+ msgstr "Urdu"
334
+
335
+ #: includes/wg-settings-page.php:115
336
+ msgid "Destination Languages"
337
+ msgstr "Bestemmingstalen"
338
+
339
+ #: includes/wg-settings-page.php:115
340
+ msgid ""
341
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
342
+ "found %shere%s."
343
+ msgstr ""
344
+ "Schrijf de twee-letterige codes, gescheiden door een komma. Ondersteunde "
345
+ "talen kunnen %shier%s worden gevonden."
346
+
347
+ #: includes/wg-settings-page.php:116
348
+ msgid ""
349
+ "On the free plan, you can only choose one language with a maximum of 2000 "
350
+ "words. If you want to use more than 1 language and 2000 words, please "
351
+ "%supgrade your plan%s."
352
+ msgstr ""
353
+
354
+ #: includes/wg-settings-page.php:116
355
+ msgid ""
356
+ "On the Starter plan, you can only choose one language. If you want to use "
357
+ "more than 1 language, please %supgrade your plan%s."
358
+ msgstr ""
359
+
360
+ #: includes/wg-settings-page.php:119
361
+ msgid "Language button appearance"
362
+ msgstr "Weergave taalknop"
363
+
364
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
365
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
366
+ #: includes/wg-settings-page.php:248
367
+ msgid "(Optional)"
368
+ msgstr "(Optioneel)"
369
+
370
+ #: includes/wg-settings-page.php:120
371
+ msgid "Preview:"
372
+ msgstr "Voorbeeld:"
373
+
374
+ #: includes/wg-settings-page.php:123
375
+ msgid "Dropdown?"
376
+ msgstr ""
377
+
378
+ #: includes/wg-settings-page.php:124
379
+ msgid "Check if you want the button to be a dropdown box."
380
+ msgstr ""
381
+
382
+ #: includes/wg-settings-page.php:127
383
+ msgid "With flags?"
384
+ msgstr "Met vlaggen?"
385
+
386
+ #: includes/wg-settings-page.php:128
387
+ msgid "Check if you want flags in the language button."
388
+ msgstr "Vink aan als je vlaggen in de taalknop wilt."
389
+
390
+ #: includes/wg-settings-page.php:131
391
+ msgid "Type of flags"
392
+ msgstr "Soorten vlaggen"
393
+
394
+ #: includes/wg-settings-page.php:134
395
+ msgid "Rectangle mat"
396
+ msgstr "Vierkant mat"
397
+
398
+ #: includes/wg-settings-page.php:135
399
+ msgid "Rectangle bright"
400
+ msgstr "Vierkant helder"
401
+
402
+ #: includes/wg-settings-page.php:136
403
+ msgid "Square"
404
+ msgstr "Vierkant"
405
+
406
+ #: includes/wg-settings-page.php:137
407
+ msgid "Circle"
408
+ msgstr "Cirkel"
409
+
410
+ #: includes/wg-settings-page.php:139
411
+ msgid "Change country flags"
412
+ msgstr "Wijzig landenvlaggen"
413
+
414
+ #: includes/wg-settings-page.php:142
415
+ msgid "Choose English flag:"
416
+ msgstr "Kies Engelse vlag:"
417
+
418
+ #: includes/wg-settings-page.php:143
419
+ msgid "United Kingdom (default)"
420
+ msgstr "Verenigd Koninkrijk (standaard)"
421
+
422
+ #: includes/wg-settings-page.php:144
423
+ msgid "United States"
424
+ msgstr "Verenigde Staten"
425
+
426
+ #: includes/wg-settings-page.php:145
427
+ msgid "Australia"
428
+ msgstr "Australië"
429
+
430
+ #: includes/wg-settings-page.php:146
431
+ msgid "Canada"
432
+ msgstr "Canada"
433
+
434
+ #: includes/wg-settings-page.php:147
435
+ msgid "New Zealand"
436
+ msgstr "Nieuw Zeeland"
437
+
438
+ #: includes/wg-settings-page.php:148
439
+ msgid "Jamaica"
440
+ msgstr "Jamaica"
441
+
442
+ #: includes/wg-settings-page.php:149
443
+ msgid "Ireland"
444
+ msgstr "Ierland"
445
+
446
+ #: includes/wg-settings-page.php:152
447
+ msgid "Choose Spanish flag:"
448
+ msgstr "Kies Spaanse vlag:"
449
+
450
+ #: includes/wg-settings-page.php:153
451
+ msgid "Spain (default)"
452
+ msgstr "Spanje (standaard)"
453
+
454
+ #: includes/wg-settings-page.php:154
455
+ msgid "Mexico"
456
+ msgstr "Mexico"
457
+
458
+ #: includes/wg-settings-page.php:155
459
+ msgid "Argentina"
460
+ msgstr "Argentinië"
461
+
462
+ #: includes/wg-settings-page.php:156
463
+ msgid "Colombia"
464
+ msgstr "Colombia"
465
+
466
+ #: includes/wg-settings-page.php:157
467
+ msgid "Peru"
468
+ msgstr "Peru"
469
+
470
+ #: includes/wg-settings-page.php:158
471
+ msgid "Bolivia"
472
+ msgstr "Bolivia"
473
+
474
+ #: includes/wg-settings-page.php:159
475
+ msgid "Uruguay"
476
+ msgstr "Uruguay"
477
+
478
+ #: includes/wg-settings-page.php:160
479
+ msgid "Venezuela"
480
+ msgstr "Venezuela"
481
+
482
+ #: includes/wg-settings-page.php:161
483
+ msgid "Chile"
484
+ msgstr "Chili"
485
+
486
+ #: includes/wg-settings-page.php:162
487
+ msgid "Ecuador"
488
+ msgstr "Ecuador"
489
+
490
+ #: includes/wg-settings-page.php:163
491
+ msgid "Guatemala"
492
+ msgstr "Guatemala"
493
+
494
+ #: includes/wg-settings-page.php:164
495
+ msgid "Cuba"
496
+ msgstr "Cuba"
497
+
498
+ #: includes/wg-settings-page.php:165
499
+ msgid "Dominican Republic"
500
+ msgstr "Dominicaanse Republiek"
501
+
502
+ #: includes/wg-settings-page.php:166
503
+ msgid "Honduras"
504
+ msgstr "Honduras"
505
+
506
+ #: includes/wg-settings-page.php:167
507
+ msgid "Paraguay"
508
+ msgstr "Paraguay"
509
+
510
+ #: includes/wg-settings-page.php:168
511
+ msgid "El Salvador"
512
+ msgstr "El Salvador"
513
+
514
+ #: includes/wg-settings-page.php:169
515
+ msgid "Nicaragua"
516
+ msgstr "Nicaragua"
517
+
518
+ #: includes/wg-settings-page.php:170
519
+ msgid "Costa Rica"
520
+ msgstr "Costa Rica"
521
+
522
+ #: includes/wg-settings-page.php:171
523
+ msgid "Puerto Rico"
524
+ msgstr "Puerto Rico"
525
+
526
+ #: includes/wg-settings-page.php:172
527
+ msgid "Panama"
528
+ msgstr "Panama"
529
+
530
+ #: includes/wg-settings-page.php:175
531
+ msgid "Choose Portuguese flag:"
532
+ msgstr ""
533
+
534
+ #: includes/wg-settings-page.php:176
535
+ msgid "Brazil (default)"
536
+ msgstr "Brazilië (standaard)"
537
+
538
+ #: includes/wg-settings-page.php:177
539
+ msgid "Portugal"
540
+ msgstr "Portugal"
541
+
542
+ #: includes/wg-settings-page.php:179
543
+ msgid "If you want to use a different flag, just ask us."
544
+ msgstr "Als je een andere vlag wilt gebruiken, vraag het ons."
545
+
546
+ #: includes/wg-settings-page.php:184
547
+ msgid "With name?"
548
+ msgstr "Met naam?"
549
+
550
+ #: includes/wg-settings-page.php:185
551
+ msgid "Check if you want to display the name of languages."
552
+ msgstr "Vink aan als je de namen van de talen wilt tonen."
553
+
554
+ #: includes/wg-settings-page.php:188
555
+ msgid "Full name?"
556
+ msgstr "Volledige naam?"
557
+
558
+ #: includes/wg-settings-page.php:189
559
+ msgid ""
560
+ "Check if you want the name of the languge. Don't check if you want the "
561
+ "language code."
562
+ msgstr ""
563
+ "Vink aan als je de naam van de taal wilt. Vink niet aan als je de taalcode "
564
+ "wilt."
565
+
566
+ #: includes/wg-settings-page.php:192
567
+ msgid "Override CSS"
568
+ msgstr ""
569
+
570
+ #: includes/wg-settings-page.php:192
571
+ msgid "Don't change it unless you want a specific style for your button."
572
+ msgstr "Wijzig dit niet, tenzij je een specifieke stijl voor je knop wilt."
573
+
574
+ #: includes/wg-settings-page.php:202
575
+ msgid "Language button position"
576
+ msgstr "Positie taalknop"
577
+
578
+ #: includes/wg-settings-page.php:203
579
+ msgid ""
580
+ "Where will the language button be on my website? By default, bottom right."
581
+ msgstr "Waar moet de taalknop op je website komen? Standaard, rechtsonder."
582
+
583
+ #: includes/wg-settings-page.php:206
584
+ msgid "In menu?"
585
+ msgstr "In menu?"
586
+
587
+ #: includes/wg-settings-page.php:207
588
+ msgid "Check if you want to display the button in the navigation menu."
589
+ msgstr "Vink aan als je de knop in het navigatiemenu wilt tonen."
590
+
591
+ #: includes/wg-settings-page.php:210
592
+ msgid "As a widget?"
593
+ msgstr "Als een widget?"
594
+
595
+ #: includes/wg-settings-page.php:211
596
+ msgid ""
597
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
598
+ "drag and drop the Weglot Translate widget where you want."
599
+ msgstr ""
600
+
601
+ #: includes/wg-settings-page.php:214
602
+ msgid "With a shortcode?"
603
+ msgstr "Met een shortcode?"
604
+
605
+ #: includes/wg-settings-page.php:215
606
+ msgid ""
607
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
608
+ "place the button."
609
+ msgstr ""
610
+
611
+ #: includes/wg-settings-page.php:218
612
+ msgid "In the source code?"
613
+ msgstr "In de broncode?"
614
+
615
+ #: includes/wg-settings-page.php:219
616
+ msgid ""
617
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
618
+ "wherever you want in the source code of your HTML page. The button will "
619
+ "appear at this place."
620
+ msgstr ""
621
+
622
+ #: includes/wg-settings-page.php:222
623
+ msgid "Translation Exclusion"
624
+ msgstr ""
625
+
626
+ #: includes/wg-settings-page.php:224
627
+ msgid ""
628
+ "By default, every page is translated. You can exclude parts of a page or a "
629
+ "full page here."
630
+ msgstr ""
631
+ "Standaard, wordt elke pagina vertaald. Je kunt delen van een pagina of een "
632
+ "volledige pagina hier uitsluiten."
633
+
634
+ #: includes/wg-settings-page.php:227
635
+ msgid "Exclude URL here"
636
+ msgstr ""
637
+
638
+ #: includes/wg-settings-page.php:227
639
+ msgid "You can write regex."
640
+ msgstr ""
641
+
642
+ #: includes/wg-settings-page.php:231
643
+ msgid "Exclude blocks"
644
+ msgstr ""
645
+
646
+ #: includes/wg-settings-page.php:231
647
+ msgid "Enter CSS selectors, separated by commas."
648
+ msgstr "Vul CSS-selectors in, gescheiden door komma's."
649
+
650
+ #: includes/wg-settings-page.php:236
651
+ msgid "Other options"
652
+ msgstr "Andere opties"
653
+
654
+ #: includes/wg-settings-page.php:240
655
+ msgid "Auto redirect?"
656
+ msgstr "Automatisch doorverwijzen?"
657
+
658
+ #: includes/wg-settings-page.php:241
659
+ msgid "Check if you want to redirect users based on their browser language."
660
+ msgstr ""
661
+ "Vink aan als je gebruikers op basis van hun browsertaal wilt doorverwijzen."
662
+
663
+ #: includes/wg-settings-page.php:246
664
+ msgid "Left to Right languages"
665
+ msgstr "Link naar rechts-talen"
666
+
667
+ #: includes/wg-settings-page.php:246
668
+ msgid "Right to Left languages"
669
+ msgstr "Rechts naar links-talen"
670
+
671
+ #: includes/wg-settings-page.php:248
672
+ msgid "Customize style for "
673
+ msgstr "Stijl aanpassen voor"
674
+
675
+ #: includes/wg-settings-page.php:252
676
+ msgid "Write CSS rules to apply on %s page."
677
+ msgstr ""
678
+
679
+ #: includes/wg-settings-page.php:261
680
+ msgid "Where are my translations?"
681
+ msgstr "Waar zijn mijn vertalingen?"
682
+
683
+ #: includes/wg-settings-page.php:263
684
+ msgid "You can find all your translations in your Weglot account:"
685
+ msgstr "Je kunt al je vertalingen in je Weglot-account vinden:"
686
+
687
+ #: includes/wg-settings-page.php:264
688
+ msgid "https://weglot.com/dashboard"
689
+ msgstr "https://weglot.com/dashboard"
690
+
691
+ #: includes/wg-settings-page.php:264
692
+ msgid "Edit my translations"
693
+ msgstr "Bewerk mijn vertalingen"
694
+
695
+ #: includes/wg-settings-page.php:269
696
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
697
+ msgstr "Dol op Weglot? Geef ons 5 sterren op WordPress.org :)"
698
+
699
+ #: includes/wg-settings-page.php:272
700
+ msgid ""
701
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
702
+ "or email us at support@weglot.com."
703
+ msgstr ""
704
+ "Als je hulp nodig hebt, kun je contact met ons opnemen via onze live chat op "
705
+ "%sweglot.com%s of ons mailen via support@weglot.com."
706
+
707
+ #: weglot.php:181
708
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
709
+ msgstr ""
710
+
711
+ #: weglot.php:181
712
+ msgid ""
713
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
714
+ "greater. Your current version of PHP is %s."
715
+ msgstr ""
716
+
717
+ #: weglot.php:181
718
+ msgid ""
719
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
720
+ "sending it an email."
721
+ msgstr ""
722
+
723
+ #: weglot.php:182
724
+ msgid "Plugin Activation Error"
725
+ msgstr ""
726
+
727
+ #: weglot.php:221
728
+ msgid "Settings"
729
+ msgstr "Instellingen"
730
+
731
+ #: weglot.php:228
732
+ msgid ""
733
+ "Weglot Translate is not active because you have exceeded the free limit. "
734
+ "Please %supgrade your plan%s if you want to keep the service running."
735
+ msgstr ""
736
+ "Weglot Translate is niet actief, omdat je de gratis limiet hebt "
737
+ "overschreden. %sUpgrade je plan%s als je de service wilt blijven gebruiken."
738
+
739
+ #: weglot.php:236
740
+ msgid ""
741
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
742
+ "Please upgrade your PHP version (you can contact your host and they will do "
743
+ "it for you)."
744
+ msgstr ""
745
+ "Weglot Translate-plugin vereist minstens PHP 5.3 en je hebt PHP %s. Werk je "
746
+ "PHP-versie bij (je kunt contact opnemen met je host en zij zullen dit voor "
747
+ "je doen)."
748
+
749
+ #: weglot.php:244
750
+ msgid ""
751
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
752
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
753
+ "us directly %2$shere%3$s."
754
+ msgstr ""
755
+
756
+ #. Plugin URI of the plugin/theme
757
+ msgid "http://wordpress.org/plugins/Weglot/"
758
+ msgstr "http://wordpress.org/plugins/Weglot/"
759
+
760
+ #. Description of the plugin/theme
761
+ msgid ""
762
+ "Translate your website into multiple languages in minutes without doing any "
763
+ "coding. Fully SEO compatible."
764
+ msgstr ""
765
+ "Vertaal je website in meerdere talen in enkele minuten, zonder te coderen. "
766
+ "Volledig SEO-compatibel."
767
+
768
+ #. Author of the plugin/theme
769
+ msgid "Remy B"
770
+ msgstr "Remy B"
languages/weglot-pt_BR.mo ADDED
Binary file
languages/weglot-pt_BR.po ADDED
@@ -0,0 +1,753 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # FX Bénard <fxb@wp-translations.org>, 2017
5
+ # Raphael Mendonça <raphael.mendonca@hotmail.com>, 2017
6
+ # Dionizio Bonfim Bach <translations@djio.com.br>, 2017
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
10
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
11
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
12
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: Dionizio Bonfim Bach <translations@djio.com.br>, 2017\n"
14
+ "Language-Team: Portuguese (Brazil) (https://www.transifex.com/wp-"
15
+ "translations/teams/64435/pt_BR/)\n"
16
+ "Language: pt_BR\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
+ "X-Generator: grunt-wp-i18n1.0.0\n"
22
+ "X-Poedit-Basepath: ../\n"
23
+ "X-Poedit-Bookmarks: \n"
24
+ "X-Poedit-Country: United States\n"
25
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
26
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
27
+ "esc_html_x:1,2c;\n"
28
+ "X-Poedit-SearchPath-0: .\n"
29
+ "X-Poedit-SourceCharset: UTF-8\n"
30
+ "X-Textdomain-Support: yes\n"
31
+
32
+ #. Plugin Name of the plugin/theme
33
+ msgid "Weglot Translate"
34
+ msgstr ""
35
+
36
+ #: WeglotWidget.php:41
37
+ msgid "Title:"
38
+ msgstr "Titulo:"
39
+
40
+ #: includes/wg-settings-page.php:17
41
+ msgid ""
42
+ "Weglot Translate service is not active because you have reached the end of "
43
+ "the trial period."
44
+ msgstr ""
45
+
46
+ #: includes/wg-settings-page.php:18
47
+ msgid "To reactivate the service, please %supgrade your plan%s."
48
+ msgstr ""
49
+
50
+ #: includes/wg-settings-page.php:25
51
+ msgid "Close"
52
+ msgstr "fechado"
53
+
54
+ #: includes/wg-settings-page.php:26
55
+ msgid "Well done! Your website is now multilingual."
56
+ msgstr ""
57
+
58
+ #: includes/wg-settings-page.php:27
59
+ msgid "Go on your website, there is a language switcher. Try it :)"
60
+ msgstr ""
61
+
62
+ #: includes/wg-settings-page.php:28
63
+ msgid "Go on my front page."
64
+ msgstr ""
65
+
66
+ #: includes/wg-settings-page.php:29
67
+ msgid "Next step, edit your translations directly in your Weglot account."
68
+ msgstr ""
69
+
70
+ #: includes/wg-settings-page.php:40
71
+ msgid "Main configuration"
72
+ msgstr ""
73
+
74
+ #: includes/wg-settings-page.php:43
75
+ msgid "API Key"
76
+ msgstr "API Key"
77
+
78
+ #: includes/wg-settings-page.php:43
79
+ msgid "Log in to %sWeglot%s to get your API key."
80
+ msgstr ""
81
+
82
+ #: includes/wg-settings-page.php:47
83
+ msgid "Original Language"
84
+ msgstr ""
85
+
86
+ #: includes/wg-settings-page.php:47
87
+ msgid "What is the original (current) language of your website?"
88
+ msgstr ""
89
+
90
+ #: includes/wg-settings-page.php:50
91
+ msgid "French"
92
+ msgstr "Francês"
93
+
94
+ #: includes/wg-settings-page.php:51
95
+ msgid "English"
96
+ msgstr "Inglês"
97
+
98
+ #: includes/wg-settings-page.php:52
99
+ msgid "Simplified Chinese"
100
+ msgstr ""
101
+
102
+ #: includes/wg-settings-page.php:53
103
+ msgid "Traditional Chinese"
104
+ msgstr ""
105
+
106
+ #: includes/wg-settings-page.php:54
107
+ msgid "Russian"
108
+ msgstr "Russo"
109
+
110
+ #: includes/wg-settings-page.php:55
111
+ msgid "German"
112
+ msgstr "Alemão"
113
+
114
+ #: includes/wg-settings-page.php:56
115
+ msgid "Spanish"
116
+ msgstr "Espanhol"
117
+
118
+ #: includes/wg-settings-page.php:57
119
+ msgid "Albanian"
120
+ msgstr "Albanês"
121
+
122
+ #: includes/wg-settings-page.php:58
123
+ msgid "Arabic"
124
+ msgstr "Árabe"
125
+
126
+ #: includes/wg-settings-page.php:59
127
+ msgid "Armenian"
128
+ msgstr "Armênio"
129
+
130
+ #: includes/wg-settings-page.php:60
131
+ msgid "Azerbaijani"
132
+ msgstr "Azerbaijanês"
133
+
134
+ #: includes/wg-settings-page.php:61
135
+ msgid "Afrikaans"
136
+ msgstr "Afrikaans"
137
+
138
+ #: includes/wg-settings-page.php:62
139
+ msgid "Basque"
140
+ msgstr "Basco"
141
+
142
+ #: includes/wg-settings-page.php:63
143
+ msgid "Belarusian"
144
+ msgstr "Bielorrusso"
145
+
146
+ #: includes/wg-settings-page.php:64
147
+ msgid "Bulgarian"
148
+ msgstr "Búlgaro"
149
+
150
+ #: includes/wg-settings-page.php:65
151
+ msgid "Bosnian"
152
+ msgstr "Bósnio"
153
+
154
+ #: includes/wg-settings-page.php:66
155
+ msgid "Vietnamese"
156
+ msgstr "Vietinamita"
157
+
158
+ #: includes/wg-settings-page.php:67
159
+ msgid "Hungarian"
160
+ msgstr "Húngaro"
161
+
162
+ #: includes/wg-settings-page.php:68
163
+ msgid "Haitian"
164
+ msgstr ""
165
+
166
+ #: includes/wg-settings-page.php:69
167
+ msgid "Dutch"
168
+ msgstr "Holandês"
169
+
170
+ #: includes/wg-settings-page.php:70
171
+ msgid "Greek"
172
+ msgstr "Grego"
173
+
174
+ #: includes/wg-settings-page.php:71
175
+ msgid "Georgian"
176
+ msgstr "Georgiano"
177
+
178
+ #: includes/wg-settings-page.php:72
179
+ msgid "Danish"
180
+ msgstr "Dinamarquês"
181
+
182
+ #: includes/wg-settings-page.php:73
183
+ msgid "Hebrew"
184
+ msgstr "Hebráico"
185
+
186
+ #: includes/wg-settings-page.php:74
187
+ msgid "Indonesian"
188
+ msgstr "Indonésio"
189
+
190
+ #: includes/wg-settings-page.php:75
191
+ msgid "Irish"
192
+ msgstr "Irlandês"
193
+
194
+ #: includes/wg-settings-page.php:76
195
+ msgid "Italian"
196
+ msgstr "Italiano"
197
+
198
+ #: includes/wg-settings-page.php:77
199
+ msgid "Icelandic"
200
+ msgstr "Islandês"
201
+
202
+ #: includes/wg-settings-page.php:78
203
+ msgid "Kazakh"
204
+ msgstr ""
205
+
206
+ #: includes/wg-settings-page.php:79
207
+ msgid "Catalan"
208
+ msgstr "Catalão"
209
+
210
+ #: includes/wg-settings-page.php:80
211
+ msgid "Kyrgyz"
212
+ msgstr ""
213
+
214
+ #: includes/wg-settings-page.php:81
215
+ msgid "Korean"
216
+ msgstr "Koreano"
217
+
218
+ #: includes/wg-settings-page.php:82
219
+ msgid "Latvian"
220
+ msgstr "Letão"
221
+
222
+ #: includes/wg-settings-page.php:83
223
+ msgid "Lithuanian"
224
+ msgstr "Lithuanian"
225
+
226
+ #: includes/wg-settings-page.php:84
227
+ msgid "Malagasy"
228
+ msgstr ""
229
+
230
+ #: includes/wg-settings-page.php:85
231
+ msgid "Malay"
232
+ msgstr "Malaio"
233
+
234
+ #: includes/wg-settings-page.php:86
235
+ msgid "Maltese"
236
+ msgstr "Maltês"
237
+
238
+ #: includes/wg-settings-page.php:87
239
+ msgid "Macedonian"
240
+ msgstr "Macedônio"
241
+
242
+ #: includes/wg-settings-page.php:88
243
+ msgid "Mongolian"
244
+ msgstr ""
245
+
246
+ #: includes/wg-settings-page.php:89
247
+ msgid "Norwegian"
248
+ msgstr "Norueguês"
249
+
250
+ #: includes/wg-settings-page.php:90
251
+ msgid "Persian"
252
+ msgstr "Persa"
253
+
254
+ #: includes/wg-settings-page.php:91
255
+ msgid "Polish"
256
+ msgstr "Polonês"
257
+
258
+ #: includes/wg-settings-page.php:92
259
+ msgid "Portuguese"
260
+ msgstr "Português"
261
+
262
+ #: includes/wg-settings-page.php:93
263
+ msgid "Romanian"
264
+ msgstr "Romeno"
265
+
266
+ #: includes/wg-settings-page.php:94
267
+ msgid "Serbian"
268
+ msgstr "Sérvio"
269
+
270
+ #: includes/wg-settings-page.php:95
271
+ msgid "Slovak"
272
+ msgstr "Eslovaco"
273
+
274
+ #: includes/wg-settings-page.php:96
275
+ msgid "Slovenian"
276
+ msgstr "Eslovênio"
277
+
278
+ #: includes/wg-settings-page.php:97
279
+ msgid "Swahili"
280
+ msgstr ""
281
+
282
+ #: includes/wg-settings-page.php:98
283
+ msgid "Tajik"
284
+ msgstr ""
285
+
286
+ #: includes/wg-settings-page.php:99
287
+ msgid "Thai"
288
+ msgstr "Tailandês"
289
+
290
+ #: includes/wg-settings-page.php:100
291
+ msgid "Turkish"
292
+ msgstr "Turco"
293
+
294
+ #: includes/wg-settings-page.php:101
295
+ msgid "Uzbek"
296
+ msgstr ""
297
+
298
+ #: includes/wg-settings-page.php:102
299
+ msgid "Ukrainian"
300
+ msgstr "Ucraniano"
301
+
302
+ #: includes/wg-settings-page.php:103
303
+ msgid "Finnish"
304
+ msgstr "FinlandÊs"
305
+
306
+ #: includes/wg-settings-page.php:104
307
+ msgid "Croatian"
308
+ msgstr "Croata"
309
+
310
+ #: includes/wg-settings-page.php:105
311
+ msgid "Czech"
312
+ msgstr "Tcheco"
313
+
314
+ #: includes/wg-settings-page.php:106
315
+ msgid "Swedish"
316
+ msgstr "Sueco"
317
+
318
+ #: includes/wg-settings-page.php:107
319
+ msgid "Estonian"
320
+ msgstr "Estoniano"
321
+
322
+ #: includes/wg-settings-page.php:108
323
+ msgid "Japanese"
324
+ msgstr "Japonês"
325
+
326
+ #: includes/wg-settings-page.php:109
327
+ msgid "Hindi"
328
+ msgstr ""
329
+
330
+ #: includes/wg-settings-page.php:110
331
+ msgid "Urdu"
332
+ msgstr ""
333
+
334
+ #: includes/wg-settings-page.php:115
335
+ msgid "Destination Languages"
336
+ msgstr ""
337
+
338
+ #: includes/wg-settings-page.php:115
339
+ msgid ""
340
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
341
+ "found %shere%s."
342
+ msgstr ""
343
+
344
+ #: includes/wg-settings-page.php:116
345
+ msgid ""
346
+ "On the free plan, you can only choose one language with a maximum of 2000 "
347
+ "words. If you want to use more than 1 language and 2000 words, please "
348
+ "%supgrade your plan%s."
349
+ msgstr ""
350
+
351
+ #: includes/wg-settings-page.php:116
352
+ msgid ""
353
+ "On the Starter plan, you can only choose one language. If you want to use "
354
+ "more than 1 language, please %supgrade your plan%s."
355
+ msgstr ""
356
+
357
+ #: includes/wg-settings-page.php:119
358
+ msgid "Language button appearance"
359
+ msgstr ""
360
+
361
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
362
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
363
+ #: includes/wg-settings-page.php:248
364
+ msgid "(Optional)"
365
+ msgstr "\t(Opcional)"
366
+
367
+ #: includes/wg-settings-page.php:120
368
+ msgid "Preview:"
369
+ msgstr "Prévia:"
370
+
371
+ #: includes/wg-settings-page.php:123
372
+ msgid "Dropdown?"
373
+ msgstr ""
374
+
375
+ #: includes/wg-settings-page.php:124
376
+ msgid "Check if you want the button to be a dropdown box."
377
+ msgstr ""
378
+
379
+ #: includes/wg-settings-page.php:127
380
+ msgid "With flags?"
381
+ msgstr ""
382
+
383
+ #: includes/wg-settings-page.php:128
384
+ msgid "Check if you want flags in the language button."
385
+ msgstr ""
386
+
387
+ #: includes/wg-settings-page.php:131
388
+ msgid "Type of flags"
389
+ msgstr ""
390
+
391
+ #: includes/wg-settings-page.php:134
392
+ msgid "Rectangle mat"
393
+ msgstr ""
394
+
395
+ #: includes/wg-settings-page.php:135
396
+ msgid "Rectangle bright"
397
+ msgstr ""
398
+
399
+ #: includes/wg-settings-page.php:136
400
+ msgid "Square"
401
+ msgstr "Quadrado"
402
+
403
+ #: includes/wg-settings-page.php:137
404
+ msgid "Circle"
405
+ msgstr "Circulo"
406
+
407
+ #: includes/wg-settings-page.php:139
408
+ msgid "Change country flags"
409
+ msgstr ""
410
+
411
+ #: includes/wg-settings-page.php:142
412
+ msgid "Choose English flag:"
413
+ msgstr ""
414
+
415
+ #: includes/wg-settings-page.php:143
416
+ msgid "United Kingdom (default)"
417
+ msgstr ""
418
+
419
+ #: includes/wg-settings-page.php:144
420
+ msgid "United States"
421
+ msgstr "Estados Unidos"
422
+
423
+ #: includes/wg-settings-page.php:145
424
+ msgid "Australia"
425
+ msgstr "Austrália"
426
+
427
+ #: includes/wg-settings-page.php:146
428
+ msgid "Canada"
429
+ msgstr "Canadá"
430
+
431
+ #: includes/wg-settings-page.php:147
432
+ msgid "New Zealand"
433
+ msgstr "Nova Zelândia"
434
+
435
+ #: includes/wg-settings-page.php:148
436
+ msgid "Jamaica"
437
+ msgstr "Jamaica"
438
+
439
+ #: includes/wg-settings-page.php:149
440
+ msgid "Ireland"
441
+ msgstr "Irlanda"
442
+
443
+ #: includes/wg-settings-page.php:152
444
+ msgid "Choose Spanish flag:"
445
+ msgstr ""
446
+
447
+ #: includes/wg-settings-page.php:153
448
+ msgid "Spain (default)"
449
+ msgstr ""
450
+
451
+ #: includes/wg-settings-page.php:154
452
+ msgid "Mexico"
453
+ msgstr "México"
454
+
455
+ #: includes/wg-settings-page.php:155
456
+ msgid "Argentina"
457
+ msgstr "Argentina"
458
+
459
+ #: includes/wg-settings-page.php:156
460
+ msgid "Colombia"
461
+ msgstr "Colômbia"
462
+
463
+ #: includes/wg-settings-page.php:157
464
+ msgid "Peru"
465
+ msgstr "Peru"
466
+
467
+ #: includes/wg-settings-page.php:158
468
+ msgid "Bolivia"
469
+ msgstr "Bolívia"
470
+
471
+ #: includes/wg-settings-page.php:159
472
+ msgid "Uruguay"
473
+ msgstr "Uruguai"
474
+
475
+ #: includes/wg-settings-page.php:160
476
+ msgid "Venezuela"
477
+ msgstr "Venezuela"
478
+
479
+ #: includes/wg-settings-page.php:161
480
+ msgid "Chile"
481
+ msgstr "Chile"
482
+
483
+ #: includes/wg-settings-page.php:162
484
+ msgid "Ecuador"
485
+ msgstr "Ecuador"
486
+
487
+ #: includes/wg-settings-page.php:163
488
+ msgid "Guatemala"
489
+ msgstr "Guatemala"
490
+
491
+ #: includes/wg-settings-page.php:164
492
+ msgid "Cuba"
493
+ msgstr "Cuba"
494
+
495
+ #: includes/wg-settings-page.php:165
496
+ msgid "Dominican Republic"
497
+ msgstr "República Dominicana"
498
+
499
+ #: includes/wg-settings-page.php:166
500
+ msgid "Honduras"
501
+ msgstr "Honduras"
502
+
503
+ #: includes/wg-settings-page.php:167
504
+ msgid "Paraguay"
505
+ msgstr "Paraguai"
506
+
507
+ #: includes/wg-settings-page.php:168
508
+ msgid "El Salvador"
509
+ msgstr "El Salvador"
510
+
511
+ #: includes/wg-settings-page.php:169
512
+ msgid "Nicaragua"
513
+ msgstr "Nicaragua"
514
+
515
+ #: includes/wg-settings-page.php:170
516
+ msgid "Costa Rica"
517
+ msgstr "Costa Rica"
518
+
519
+ #: includes/wg-settings-page.php:171
520
+ msgid "Puerto Rico"
521
+ msgstr "Porto Rico"
522
+
523
+ #: includes/wg-settings-page.php:172
524
+ msgid "Panama"
525
+ msgstr "Panamá"
526
+
527
+ #: includes/wg-settings-page.php:175
528
+ msgid "Choose Portuguese flag:"
529
+ msgstr ""
530
+
531
+ #: includes/wg-settings-page.php:176
532
+ msgid "Brazil (default)"
533
+ msgstr ""
534
+
535
+ #: includes/wg-settings-page.php:177
536
+ msgid "Portugal"
537
+ msgstr "Portugal"
538
+
539
+ #: includes/wg-settings-page.php:179
540
+ msgid "If you want to use a different flag, just ask us."
541
+ msgstr ""
542
+
543
+ #: includes/wg-settings-page.php:184
544
+ msgid "With name?"
545
+ msgstr ""
546
+
547
+ #: includes/wg-settings-page.php:185
548
+ msgid "Check if you want to display the name of languages."
549
+ msgstr ""
550
+
551
+ #: includes/wg-settings-page.php:188
552
+ msgid "Full name?"
553
+ msgstr ""
554
+
555
+ #: includes/wg-settings-page.php:189
556
+ msgid ""
557
+ "Check if you want the name of the languge. Don't check if you want the "
558
+ "language code."
559
+ msgstr ""
560
+
561
+ #: includes/wg-settings-page.php:192
562
+ msgid "Override CSS"
563
+ msgstr ""
564
+
565
+ #: includes/wg-settings-page.php:192
566
+ msgid "Don't change it unless you want a specific style for your button."
567
+ msgstr ""
568
+
569
+ #: includes/wg-settings-page.php:202
570
+ msgid "Language button position"
571
+ msgstr ""
572
+
573
+ #: includes/wg-settings-page.php:203
574
+ msgid ""
575
+ "Where will the language button be on my website? By default, bottom right."
576
+ msgstr ""
577
+
578
+ #: includes/wg-settings-page.php:206
579
+ msgid "In menu?"
580
+ msgstr ""
581
+
582
+ #: includes/wg-settings-page.php:207
583
+ msgid "Check if you want to display the button in the navigation menu."
584
+ msgstr ""
585
+
586
+ #: includes/wg-settings-page.php:210
587
+ msgid "As a widget?"
588
+ msgstr ""
589
+
590
+ #: includes/wg-settings-page.php:211
591
+ msgid ""
592
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
593
+ "drag and drop the Weglot Translate widget where you want."
594
+ msgstr ""
595
+
596
+ #: includes/wg-settings-page.php:214
597
+ msgid "With a shortcode?"
598
+ msgstr ""
599
+
600
+ #: includes/wg-settings-page.php:215
601
+ msgid ""
602
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
603
+ "place the button."
604
+ msgstr ""
605
+
606
+ #: includes/wg-settings-page.php:218
607
+ msgid "In the source code?"
608
+ msgstr ""
609
+
610
+ #: includes/wg-settings-page.php:219
611
+ msgid ""
612
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
613
+ "wherever you want in the source code of your HTML page. The button will "
614
+ "appear at this place."
615
+ msgstr ""
616
+
617
+ #: includes/wg-settings-page.php:222
618
+ msgid "Translation Exclusion"
619
+ msgstr ""
620
+
621
+ #: includes/wg-settings-page.php:224
622
+ msgid ""
623
+ "By default, every page is translated. You can exclude parts of a page or a "
624
+ "full page here."
625
+ msgstr ""
626
+
627
+ #: includes/wg-settings-page.php:227
628
+ msgid "Exclude URL here"
629
+ msgstr ""
630
+
631
+ #: includes/wg-settings-page.php:227
632
+ msgid "You can write regex."
633
+ msgstr ""
634
+
635
+ #: includes/wg-settings-page.php:231
636
+ msgid "Exclude blocks"
637
+ msgstr ""
638
+
639
+ #: includes/wg-settings-page.php:231
640
+ msgid "Enter CSS selectors, separated by commas."
641
+ msgstr ""
642
+
643
+ #: includes/wg-settings-page.php:236
644
+ msgid "Other options"
645
+ msgstr ""
646
+
647
+ #: includes/wg-settings-page.php:240
648
+ msgid "Auto redirect?"
649
+ msgstr ""
650
+
651
+ #: includes/wg-settings-page.php:241
652
+ msgid "Check if you want to redirect users based on their browser language."
653
+ msgstr ""
654
+
655
+ #: includes/wg-settings-page.php:246
656
+ msgid "Left to Right languages"
657
+ msgstr ""
658
+
659
+ #: includes/wg-settings-page.php:246
660
+ msgid "Right to Left languages"
661
+ msgstr ""
662
+
663
+ #: includes/wg-settings-page.php:248
664
+ msgid "Customize style for "
665
+ msgstr ""
666
+
667
+ #: includes/wg-settings-page.php:252
668
+ msgid "Write CSS rules to apply on %s page."
669
+ msgstr ""
670
+
671
+ #: includes/wg-settings-page.php:261
672
+ msgid "Where are my translations?"
673
+ msgstr ""
674
+
675
+ #: includes/wg-settings-page.php:263
676
+ msgid "You can find all your translations in your Weglot account:"
677
+ msgstr ""
678
+
679
+ #: includes/wg-settings-page.php:264
680
+ msgid "https://weglot.com/dashboard"
681
+ msgstr ""
682
+
683
+ #: includes/wg-settings-page.php:264
684
+ msgid "Edit my translations"
685
+ msgstr ""
686
+
687
+ #: includes/wg-settings-page.php:269
688
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
689
+ msgstr ""
690
+
691
+ #: includes/wg-settings-page.php:272
692
+ msgid ""
693
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
694
+ "or email us at support@weglot.com."
695
+ msgstr ""
696
+
697
+ #: weglot.php:181
698
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
699
+ msgstr ""
700
+
701
+ #: weglot.php:181
702
+ msgid ""
703
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
704
+ "greater. Your current version of PHP is %s."
705
+ msgstr ""
706
+
707
+ #: weglot.php:181
708
+ msgid ""
709
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
710
+ "sending it an email."
711
+ msgstr ""
712
+
713
+ #: weglot.php:182
714
+ msgid "Plugin Activation Error"
715
+ msgstr ""
716
+
717
+ #: weglot.php:221
718
+ msgid "Settings"
719
+ msgstr "Configura&ccedil;&otilde;es"
720
+
721
+ #: weglot.php:228
722
+ msgid ""
723
+ "Weglot Translate is not active because you have exceeded the free limit. "
724
+ "Please %supgrade your plan%s if you want to keep the service running."
725
+ msgstr ""
726
+
727
+ #: weglot.php:236
728
+ msgid ""
729
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
730
+ "Please upgrade your PHP version (you can contact your host and they will do "
731
+ "it for you)."
732
+ msgstr ""
733
+
734
+ #: weglot.php:244
735
+ msgid ""
736
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
737
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
738
+ "us directly %2$shere%3$s."
739
+ msgstr ""
740
+
741
+ #. Plugin URI of the plugin/theme
742
+ msgid "http://wordpress.org/plugins/Weglot/"
743
+ msgstr ""
744
+
745
+ #. Description of the plugin/theme
746
+ msgid ""
747
+ "Translate your website into multiple languages in minutes without doing any "
748
+ "coding. Fully SEO compatible."
749
+ msgstr ""
750
+
751
+ #. Author of the plugin/theme
752
+ msgid "Remy B"
753
+ msgstr ""
languages/weglot-ru_RU.mo ADDED
Binary file
languages/weglot-ru_RU.po ADDED
@@ -0,0 +1,755 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Remy B
2
+ # This file is distributed under the same license as the Weglot Translate package.
3
+ # Translators:
4
+ # FX Bénard <fxb@wp-translations.org>, 2017
5
+ # Ruslan Mirufa <ru100fa@gmail.com>, 2017
6
+ # Gregory Karpinsky <gregory@tiv.net>, 2017
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: Weglot Translate 1.4.3\n"
10
+ "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
11
+ "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
12
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: Gregory Karpinsky <gregory@tiv.net>, 2017\n"
14
+ "Language-Team: Russian (Russia) (https://www.transifex.com/wp-translations/"
15
+ "teams/64435/ru_RU/)\n"
16
+ "Language: ru_RU\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
21
+ "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
22
+ "%100>=11 && n%100<=14)? 2 : 3);\n"
23
+ "X-Generator: grunt-wp-i18n1.0.0\n"
24
+ "X-Poedit-Basepath: ../\n"
25
+ "X-Poedit-Bookmarks: \n"
26
+ "X-Poedit-Country: United States\n"
27
+ "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
28
+ "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
29
+ "esc_html_x:1,2c;\n"
30
+ "X-Poedit-SearchPath-0: .\n"
31
+ "X-Poedit-SourceCharset: UTF-8\n"
32
+ "X-Textdomain-Support: yes\n"
33
+
34
+ #. Plugin Name of the plugin/theme
35
+ msgid "Weglot Translate"
36
+ msgstr ""
37
+
38
+ #: WeglotWidget.php:41
39
+ msgid "Title:"
40
+ msgstr "Название:"
41
+
42
+ #: includes/wg-settings-page.php:17
43
+ msgid ""
44
+ "Weglot Translate service is not active because you have reached the end of "
45
+ "the trial period."
46
+ msgstr ""
47
+
48
+ #: includes/wg-settings-page.php:18
49
+ msgid "To reactivate the service, please %supgrade your plan%s."
50
+ msgstr ""
51
+
52
+ #: includes/wg-settings-page.php:25
53
+ msgid "Close"
54
+ msgstr "Время закрытия"
55
+
56
+ #: includes/wg-settings-page.php:26
57
+ msgid "Well done! Your website is now multilingual."
58
+ msgstr ""
59
+
60
+ #: includes/wg-settings-page.php:27
61
+ msgid "Go on your website, there is a language switcher. Try it :)"
62
+ msgstr ""
63
+
64
+ #: includes/wg-settings-page.php:28
65
+ msgid "Go on my front page."
66
+ msgstr ""
67
+
68
+ #: includes/wg-settings-page.php:29
69
+ msgid "Next step, edit your translations directly in your Weglot account."
70
+ msgstr ""
71
+
72
+ #: includes/wg-settings-page.php:40
73
+ msgid "Main configuration"
74
+ msgstr ""
75
+
76
+ #: includes/wg-settings-page.php:43
77
+ msgid "API Key"
78
+ msgstr "ключ интерфейса программирования приложений "
79
+
80
+ #: includes/wg-settings-page.php:43
81
+ msgid "Log in to %sWeglot%s to get your API key."
82
+ msgstr ""
83
+
84
+ #: includes/wg-settings-page.php:47
85
+ msgid "Original Language"
86
+ msgstr ""
87
+
88
+ #: includes/wg-settings-page.php:47
89
+ msgid "What is the original (current) language of your website?"
90
+ msgstr ""
91
+
92
+ #: includes/wg-settings-page.php:50
93
+ msgid "French"
94
+ msgstr "French"
95
+
96
+ #: includes/wg-settings-page.php:51
97
+ msgid "English"
98
+ msgstr "English"
99
+
100
+ #: includes/wg-settings-page.php:52
101
+ msgid "Simplified Chinese"
102
+ msgstr ""
103
+
104
+ #: includes/wg-settings-page.php:53
105
+ msgid "Traditional Chinese"
106
+ msgstr ""
107
+
108
+ #: includes/wg-settings-page.php:54
109
+ msgid "Russian"
110
+ msgstr "русский"
111
+
112
+ #: includes/wg-settings-page.php:55
113
+ msgid "German"
114
+ msgstr "German"
115
+
116
+ #: includes/wg-settings-page.php:56
117
+ msgid "Spanish"
118
+ msgstr "Spanish"
119
+
120
+ #: includes/wg-settings-page.php:57
121
+ msgid "Albanian"
122
+ msgstr "Albanian"
123
+
124
+ #: includes/wg-settings-page.php:58
125
+ msgid "Arabic"
126
+ msgstr "Arabic"
127
+
128
+ #: includes/wg-settings-page.php:59
129
+ msgid "Armenian"
130
+ msgstr "Armenian"
131
+
132
+ #: includes/wg-settings-page.php:60
133
+ msgid "Azerbaijani"
134
+ msgstr "Azerbaijani"
135
+
136
+ #: includes/wg-settings-page.php:61
137
+ msgid "Afrikaans"
138
+ msgstr "Afrikaans"
139
+
140
+ #: includes/wg-settings-page.php:62
141
+ msgid "Basque"
142
+ msgstr "Basque"
143
+
144
+ #: includes/wg-settings-page.php:63
145
+ msgid "Belarusian"
146
+ msgstr "белорусский"
147
+
148
+ #: includes/wg-settings-page.php:64
149
+ msgid "Bulgarian"
150
+ msgstr "болгарский"
151
+
152
+ #: includes/wg-settings-page.php:65
153
+ msgid "Bosnian"
154
+ msgstr "боснийский"
155
+
156
+ #: includes/wg-settings-page.php:66
157
+ msgid "Vietnamese"
158
+ msgstr "Vietnamese"
159
+
160
+ #: includes/wg-settings-page.php:67
161
+ msgid "Hungarian"
162
+ msgstr "венгерский"
163
+
164
+ #: includes/wg-settings-page.php:68
165
+ msgid "Haitian"
166
+ msgstr "Гаитянский"
167
+
168
+ #: includes/wg-settings-page.php:69
169
+ msgid "Dutch"
170
+ msgstr "Dutch"
171
+
172
+ #: includes/wg-settings-page.php:70
173
+ msgid "Greek"
174
+ msgstr "Greek"
175
+
176
+ #: includes/wg-settings-page.php:71
177
+ msgid "Georgian"
178
+ msgstr "Georgian"
179
+
180
+ #: includes/wg-settings-page.php:72
181
+ msgid "Danish"
182
+ msgstr "Danish"
183
+
184
+ #: includes/wg-settings-page.php:73
185
+ msgid "Hebrew"
186
+ msgstr "Hebrew"
187
+
188
+ #: includes/wg-settings-page.php:74
189
+ msgid "Indonesian"
190
+ msgstr "индонезийский"
191
+
192
+ #: includes/wg-settings-page.php:75
193
+ msgid "Irish"
194
+ msgstr "ирландский"
195
+
196
+ #: includes/wg-settings-page.php:76
197
+ msgid "Italian"
198
+ msgstr "Italian"
199
+
200
+ #: includes/wg-settings-page.php:77
201
+ msgid "Icelandic"
202
+ msgstr "исландский"
203
+
204
+ #: includes/wg-settings-page.php:78
205
+ msgid "Kazakh"
206
+ msgstr "Kazakh"
207
+
208
+ #: includes/wg-settings-page.php:79
209
+ msgid "Catalan"
210
+ msgstr "каталонский"
211
+
212
+ #: includes/wg-settings-page.php:80
213
+ msgid "Kyrgyz"
214
+ msgstr "кыргызский"
215
+
216
+ #: includes/wg-settings-page.php:81
217
+ msgid "Korean"
218
+ msgstr "Korean"
219
+
220
+ #: includes/wg-settings-page.php:82
221
+ msgid "Latvian"
222
+ msgstr "латвийский"
223
+
224
+ #: includes/wg-settings-page.php:83
225
+ msgid "Lithuanian"
226
+ msgstr "литовский"
227
+
228
+ #: includes/wg-settings-page.php:84
229
+ msgid "Malagasy"
230
+ msgstr "Malagasy"
231
+
232
+ #: includes/wg-settings-page.php:85
233
+ msgid "Malay"
234
+ msgstr "Malay"
235
+
236
+ #: includes/wg-settings-page.php:86
237
+ msgid "Maltese"
238
+ msgstr "Maltese"
239
+
240
+ #: includes/wg-settings-page.php:87
241
+ msgid "Macedonian"
242
+ msgstr "Macedonian"
243
+
244
+ #: includes/wg-settings-page.php:88
245
+ msgid "Mongolian"
246
+ msgstr "Mongolian"
247
+
248
+ #: includes/wg-settings-page.php:89
249
+ msgid "Norwegian"
250
+ msgstr "Norwegian"
251
+
252
+ #: includes/wg-settings-page.php:90
253
+ msgid "Persian"
254
+ msgstr "Persian"
255
+
256
+ #: includes/wg-settings-page.php:91
257
+ msgid "Polish"
258
+ msgstr "Polish"
259
+
260
+ #: includes/wg-settings-page.php:92
261
+ msgid "Portuguese"
262
+ msgstr "Portuguese"
263
+
264
+ #: includes/wg-settings-page.php:93
265
+ msgid "Romanian"
266
+ msgstr "румынский"
267
+
268
+ #: includes/wg-settings-page.php:94
269
+ msgid "Serbian"
270
+ msgstr "Serbian"
271
+
272
+ #: includes/wg-settings-page.php:95
273
+ msgid "Slovak"
274
+ msgstr "Slovak"
275
+
276
+ #: includes/wg-settings-page.php:96
277
+ msgid "Slovenian"
278
+ msgstr "словенский"
279
+
280
+ #: includes/wg-settings-page.php:97
281
+ msgid "Swahili"
282
+ msgstr "Swahili"
283
+
284
+ #: includes/wg-settings-page.php:98
285
+ msgid "Tajik"
286
+ msgstr "Tajik"
287
+
288
+ #: includes/wg-settings-page.php:99
289
+ msgid "Thai"
290
+ msgstr "Thai"
291
+
292
+ #: includes/wg-settings-page.php:100
293
+ msgid "Turkish"
294
+ msgstr "Turkish"
295
+
296
+ #: includes/wg-settings-page.php:101
297
+ msgid "Uzbek"
298
+ msgstr "Uzbek"
299
+
300
+ #: includes/wg-settings-page.php:102
301
+ msgid "Ukrainian"
302
+ msgstr "украинский"
303
+
304
+ #: includes/wg-settings-page.php:103
305
+ msgid "Finnish"
306
+ msgstr "Finnish"
307
+
308
+ #: includes/wg-settings-page.php:104
309
+ msgid "Croatian"
310
+ msgstr "хорватский"
311
+
312
+ #: includes/wg-settings-page.php:105
313
+ msgid "Czech"
314
+ msgstr "Czech"
315
+
316
+ #: includes/wg-settings-page.php:106
317
+ msgid "Swedish"
318
+ msgstr "Swedish"
319
+
320
+ #: includes/wg-settings-page.php:107
321
+ msgid "Estonian"
322
+ msgstr "эстонский"
323
+
324
+ #: includes/wg-settings-page.php:108
325
+ msgid "Japanese"
326
+ msgstr "Japanese"
327
+
328
+ #: includes/wg-settings-page.php:109
329
+ msgid "Hindi"
330
+ msgstr ""
331
+
332
+ #: includes/wg-settings-page.php:110
333
+ msgid "Urdu"
334
+ msgstr ""
335
+
336
+ #: includes/wg-settings-page.php:115
337
+ msgid "Destination Languages"
338
+ msgstr ""
339
+
340
+ #: includes/wg-settings-page.php:115
341
+ msgid ""
342
+ "Write the two-letter codes, separated by a comma. Supported languages can be "
343
+ "found %shere%s."
344
+ msgstr ""
345
+
346
+ #: includes/wg-settings-page.php:116
347
+ msgid ""
348
+ "On the free plan, you can only choose one language with a maximum of 2000 "
349
+ "words. If you want to use more than 1 language and 2000 words, please "
350
+ "%supgrade your plan%s."
351
+ msgstr ""
352
+
353
+ #: includes/wg-settings-page.php:116
354
+ msgid ""
355
+ "On the Starter plan, you can only choose one language. If you want to use "
356
+ "more than 1 language, please %supgrade your plan%s."
357
+ msgstr ""
358
+
359
+ #: includes/wg-settings-page.php:119
360
+ msgid "Language button appearance"
361
+ msgstr ""
362
+
363
+ #: includes/wg-settings-page.php:119 includes/wg-settings-page.php:202
364
+ #: includes/wg-settings-page.php:222 includes/wg-settings-page.php:236
365
+ #: includes/wg-settings-page.php:248
366
+ msgid "(Optional)"
367
+ msgstr "(Не обязательно)"
368
+
369
+ #: includes/wg-settings-page.php:120
370
+ msgid "Preview:"
371
+ msgstr "Предпросмотр:"
372
+
373
+ #: includes/wg-settings-page.php:123
374
+ msgid "Dropdown?"
375
+ msgstr ""
376
+
377
+ #: includes/wg-settings-page.php:124
378
+ msgid "Check if you want the button to be a dropdown box."
379
+ msgstr ""
380
+
381
+ #: includes/wg-settings-page.php:127
382
+ msgid "With flags?"
383
+ msgstr ""
384
+
385
+ #: includes/wg-settings-page.php:128
386
+ msgid "Check if you want flags in the language button."
387
+ msgstr ""
388
+
389
+ #: includes/wg-settings-page.php:131
390
+ msgid "Type of flags"
391
+ msgstr ""
392
+
393
+ #: includes/wg-settings-page.php:134
394
+ msgid "Rectangle mat"
395
+ msgstr ""
396
+
397
+ #: includes/wg-settings-page.php:135
398
+ msgid "Rectangle bright"
399
+ msgstr ""
400
+
401
+ #: includes/wg-settings-page.php:136
402
+ msgid "Square"
403
+ msgstr "Квадратные"
404
+
405
+ #: includes/wg-settings-page.php:137
406
+ msgid "Circle"
407
+ msgstr "Круг"
408
+
409
+ #: includes/wg-settings-page.php:139
410
+ msgid "Change country flags"
411
+ msgstr ""
412
+
413
+ #: includes/wg-settings-page.php:142
414
+ msgid "Choose English flag:"
415
+ msgstr ""
416
+
417
+ #: includes/wg-settings-page.php:143
418
+ msgid "United Kingdom (default)"
419
+ msgstr ""
420
+
421
+ #: includes/wg-settings-page.php:144
422
+ msgid "United States"
423
+ msgstr "США"
424
+
425
+ #: includes/wg-settings-page.php:145
426
+ msgid "Australia"
427
+ msgstr "Австралия"
428
+
429
+ #: includes/wg-settings-page.php:146
430
+ msgid "Canada"
431
+ msgstr "Канада"
432
+
433
+ #: includes/wg-settings-page.php:147
434
+ msgid "New Zealand"
435
+ msgstr "Новая Зеландия"
436
+
437
+ #: includes/wg-settings-page.php:148
438
+ msgid "Jamaica"
439
+ msgstr "Ямайка"
440
+
441
+ #: includes/wg-settings-page.php:149
442
+ msgid "Ireland"
443
+ msgstr "Ирландия"
444
+
445
+ #: includes/wg-settings-page.php:152
446
+ msgid "Choose Spanish flag:"
447
+ msgstr ""
448
+
449
+ #: includes/wg-settings-page.php:153
450
+ msgid "Spain (default)"
451
+ msgstr ""
452
+
453
+ #: includes/wg-settings-page.php:154
454
+ msgid "Mexico"
455
+ msgstr "Мексика"
456
+
457
+ #: includes/wg-settings-page.php:155
458
+ msgid "Argentina"
459
+ msgstr "Аргентина"
460
+
461
+ #: includes/wg-settings-page.php:156
462
+ msgid "Colombia"
463
+ msgstr "Колумбия"
464
+
465
+ #: includes/wg-settings-page.php:157
466
+ msgid "Peru"
467
+ msgstr "Перу"
468
+
469
+ #: includes/wg-settings-page.php:158
470
+ msgid "Bolivia"
471
+ msgstr "Боливия"
472
+
473
+ #: includes/wg-settings-page.php:159
474
+ msgid "Uruguay"
475
+ msgstr "Уругвай"
476
+
477
+ #: includes/wg-settings-page.php:160
478
+ msgid "Venezuela"
479
+ msgstr "Венисуэла"
480
+
481
+ #: includes/wg-settings-page.php:161
482
+ msgid "Chile"
483
+ msgstr "Чили"
484
+
485
+ #: includes/wg-settings-page.php:162
486
+ msgid "Ecuador"
487
+ msgstr "Эквадор"
488
+
489
+ #: includes/wg-settings-page.php:163
490
+ msgid "Guatemala"
491
+ msgstr "Гватемала"
492
+
493
+ #: includes/wg-settings-page.php:164
494
+ msgid "Cuba"
495
+ msgstr "Куба"
496
+
497
+ #: includes/wg-settings-page.php:165
498
+ msgid "Dominican Republic"
499
+ msgstr "Доминикана"
500
+
501
+ #: includes/wg-settings-page.php:166
502
+ msgid "Honduras"
503
+ msgstr "Гондурас"
504
+
505
+ #: includes/wg-settings-page.php:167
506
+ msgid "Paraguay"
507
+ msgstr "Парагвай"
508
+
509
+ #: includes/wg-settings-page.php:168
510
+ msgid "El Salvador"
511
+ msgstr "Сальвадор"
512
+
513
+ #: includes/wg-settings-page.php:169
514
+ msgid "Nicaragua"
515
+ msgstr "Никарагуа"
516
+
517
+ #: includes/wg-settings-page.php:170
518
+ msgid "Costa Rica"
519
+ msgstr "Коста-Рика"
520
+
521
+ #: includes/wg-settings-page.php:171
522
+ msgid "Puerto Rico"
523
+ msgstr "Пуэрто-Рико"
524
+
525
+ #: includes/wg-settings-page.php:172
526
+ msgid "Panama"
527
+ msgstr "Панама"
528
+
529
+ #: includes/wg-settings-page.php:175
530
+ msgid "Choose Portuguese flag:"
531
+ msgstr ""
532
+
533
+ #: includes/wg-settings-page.php:176
534
+ msgid "Brazil (default)"
535
+ msgstr ""
536
+
537
+ #: includes/wg-settings-page.php:177
538
+ msgid "Portugal"
539
+ msgstr "Партугалия"
540
+
541
+ #: includes/wg-settings-page.php:179
542
+ msgid "If you want to use a different flag, just ask us."
543
+ msgstr ""
544
+
545
+ #: includes/wg-settings-page.php:184
546
+ msgid "With name?"
547
+ msgstr ""
548
+
549
+ #: includes/wg-settings-page.php:185
550
+ msgid "Check if you want to display the name of languages."
551
+ msgstr ""
552
+
553
+ #: includes/wg-settings-page.php:188
554
+ msgid "Full name?"
555
+ msgstr ""
556
+
557
+ #: includes/wg-settings-page.php:189
558
+ msgid ""
559
+ "Check if you want the name of the languge. Don't check if you want the "
560
+ "language code."
561
+ msgstr ""
562
+
563
+ #: includes/wg-settings-page.php:192
564
+ msgid "Override CSS"
565
+ msgstr ""
566
+
567
+ #: includes/wg-settings-page.php:192
568
+ msgid "Don't change it unless you want a specific style for your button."
569
+ msgstr ""
570
+
571
+ #: includes/wg-settings-page.php:202
572
+ msgid "Language button position"
573
+ msgstr ""
574
+
575
+ #: includes/wg-settings-page.php:203
576
+ msgid ""
577
+ "Where will the language button be on my website? By default, bottom right."
578
+ msgstr ""
579
+
580
+ #: includes/wg-settings-page.php:206
581
+ msgid "In menu?"
582
+ msgstr ""
583
+
584
+ #: includes/wg-settings-page.php:207
585
+ msgid "Check if you want to display the button in the navigation menu."
586
+ msgstr ""
587
+
588
+ #: includes/wg-settings-page.php:210
589
+ msgid "As a widget?"
590
+ msgstr ""
591
+
592
+ #: includes/wg-settings-page.php:211
593
+ msgid ""
594
+ "You can place the button in a widget area. Go to Appearance -> Widgets and "
595
+ "drag and drop the Weglot Translate widget where you want."
596
+ msgstr ""
597
+
598
+ #: includes/wg-settings-page.php:214
599
+ msgid "With a shortcode?"
600
+ msgstr ""
601
+
602
+ #: includes/wg-settings-page.php:215
603
+ msgid ""
604
+ "You can use the Weglot shortcode [weglot_switcher] wherever you want to "
605
+ "place the button."
606
+ msgstr ""
607
+
608
+ #: includes/wg-settings-page.php:218
609
+ msgid "In the source code?"
610
+ msgstr ""
611
+
612
+ #: includes/wg-settings-page.php:219
613
+ msgid ""
614
+ "You can add the code &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; "
615
+ "wherever you want in the source code of your HTML page. The button will "
616
+ "appear at this place."
617
+ msgstr ""
618
+
619
+ #: includes/wg-settings-page.php:222
620
+ msgid "Translation Exclusion"
621
+ msgstr ""
622
+
623
+ #: includes/wg-settings-page.php:224
624
+ msgid ""
625
+ "By default, every page is translated. You can exclude parts of a page or a "
626
+ "full page here."
627
+ msgstr ""
628
+
629
+ #: includes/wg-settings-page.php:227
630
+ msgid "Exclude URL here"
631
+ msgstr ""
632
+
633
+ #: includes/wg-settings-page.php:227
634
+ msgid "You can write regex."
635
+ msgstr ""
636
+
637
+ #: includes/wg-settings-page.php:231
638
+ msgid "Exclude blocks"
639
+ msgstr ""
640
+
641
+ #: includes/wg-settings-page.php:231
642
+ msgid "Enter CSS selectors, separated by commas."
643
+ msgstr ""
644
+
645
+ #: includes/wg-settings-page.php:236
646
+ msgid "Other options"
647
+ msgstr ""
648
+
649
+ #: includes/wg-settings-page.php:240
650
+ msgid "Auto redirect?"
651
+ msgstr ""
652
+
653
+ #: includes/wg-settings-page.php:241
654
+ msgid "Check if you want to redirect users based on their browser language."
655
+ msgstr ""
656
+
657
+ #: includes/wg-settings-page.php:246
658
+ msgid "Left to Right languages"
659
+ msgstr ""
660
+
661
+ #: includes/wg-settings-page.php:246
662
+ msgid "Right to Left languages"
663
+ msgstr ""
664
+
665
+ #: includes/wg-settings-page.php:248
666
+ msgid "Customize style for "
667
+ msgstr ""
668
+
669
+ #: includes/wg-settings-page.php:252
670
+ msgid "Write CSS rules to apply on %s page."
671
+ msgstr ""
672
+
673
+ #: includes/wg-settings-page.php:261
674
+ msgid "Where are my translations?"
675
+ msgstr ""
676
+
677
+ #: includes/wg-settings-page.php:263
678
+ msgid "You can find all your translations in your Weglot account:"
679
+ msgstr ""
680
+
681
+ #: includes/wg-settings-page.php:264
682
+ msgid "https://weglot.com/dashboard"
683
+ msgstr ""
684
+
685
+ #: includes/wg-settings-page.php:264
686
+ msgid "Edit my translations"
687
+ msgstr ""
688
+
689
+ #: includes/wg-settings-page.php:269
690
+ msgid "Love Weglot? Give us 5 stars on WordPress.org :)"
691
+ msgstr ""
692
+
693
+ #: includes/wg-settings-page.php:272
694
+ msgid ""
695
+ "If you need any help, you can contact us via our live chat at %sweglot.com%s "
696
+ "or email us at support@weglot.com."
697
+ msgstr ""
698
+
699
+ #: weglot.php:181
700
+ msgid "Thank you for downloading <strong>Weglot Translate</strong>!"
701
+ msgstr ""
702
+
703
+ #: weglot.php:181
704
+ msgid ""
705
+ "In order to activate Weglot, you need PHP version <strong>5.3</strong> or "
706
+ "greater. Your current version of PHP is %s."
707
+ msgstr ""
708
+
709
+ #: weglot.php:181
710
+ msgid ""
711
+ "Please upgrade your PHP version, you can ask your host provider to do it by "
712
+ "sending it an email."
713
+ msgstr ""
714
+
715
+ #: weglot.php:182
716
+ msgid "Plugin Activation Error"
717
+ msgstr ""
718
+
719
+ #: weglot.php:221
720
+ msgid "Settings"
721
+ msgstr "Функции"
722
+
723
+ #: weglot.php:228
724
+ msgid ""
725
+ "Weglot Translate is not active because you have exceeded the free limit. "
726
+ "Please %supgrade your plan%s if you want to keep the service running."
727
+ msgstr ""
728
+
729
+ #: weglot.php:236
730
+ msgid ""
731
+ "Weglot Translate plugin requires at least PHP 5.3 and you have PHP %s. "
732
+ "Please upgrade your PHP version (you can contact your host and they will do "
733
+ "it for you)."
734
+ msgstr ""
735
+
736
+ #: weglot.php:244
737
+ msgid ""
738
+ "Weglot Translate: You need to activate the mod_rewrite module. You can find "
739
+ "more information here : %1$sUsing Permalinks%3$s. If you need help, just ask "
740
+ "us directly %2$shere%3$s."
741
+ msgstr ""
742
+
743
+ #. Plugin URI of the plugin/theme
744
+ msgid "http://wordpress.org/plugins/Weglot/"
745
+ msgstr ""
746
+
747
+ #. Description of the plugin/theme
748
+ msgid ""
749
+ "Translate your website into multiple languages in minutes without doing any "
750
+ "coding. Fully SEO compatible."
751
+ msgstr ""
752
+
753
+ #. Author of the plugin/theme
754
+ msgid "Remy B"
755
+ msgstr ""
languages/weglot.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Weglot Translate package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Weglot Translate 1.4.3\n"
6
  "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
7
- "POT-Creation-Date: 2017-03-04 10:20:13+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -338,9 +338,9 @@ msgstr ""
338
 
339
  #: includes/wg-settings-page.php:116
340
  msgid ""
341
- "On the free plan, you can only choose one language with a maximum of 2000 "
342
  "words. If you want to use more than 1 language and 2000 words, please "
343
- "%supgrade your plan."
344
  msgstr ""
345
 
346
  #: includes/wg-settings-page.php:116
@@ -388,7 +388,7 @@ msgid "Rectangle mat"
388
  msgstr ""
389
 
390
  #: includes/wg-settings-page.php:135
391
- msgid "Rectangle bright"
392
  msgstr ""
393
 
394
  #: includes/wg-settings-page.php:136
@@ -520,7 +520,7 @@ msgid "Panama"
520
  msgstr ""
521
 
522
  #: includes/wg-settings-page.php:175
523
- msgid "Choose Portugese flag:"
524
  msgstr ""
525
 
526
  #: includes/wg-settings-page.php:176
@@ -700,8 +700,8 @@ msgstr ""
700
 
701
  #: weglot.php:181
702
  msgid ""
703
- "Please upgrade your PHP version, you can ask your host provider to do it by "
704
- "sending it an email."
705
  msgstr ""
706
 
707
  #: weglot.php:182
2
  # This file is distributed under the same license as the Weglot Translate package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Weglot Translate 1.4.4\n"
6
  "Report-Msgid-Bugs-To: https://wp-translations.pro/\n"
7
+ "POT-Creation-Date: 2017-03-13 10:58:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
338
 
339
  #: includes/wg-settings-page.php:116
340
  msgid ""
341
+ "On the free plan, you can only choose one language and a maximum of 2000 "
342
  "words. If you want to use more than 1 language and 2000 words, please "
343
+ "%supgrade your plan%s."
344
  msgstr ""
345
 
346
  #: includes/wg-settings-page.php:116
388
  msgstr ""
389
 
390
  #: includes/wg-settings-page.php:135
391
+ msgid "Rectangle shiny"
392
  msgstr ""
393
 
394
  #: includes/wg-settings-page.php:136
520
  msgstr ""
521
 
522
  #: includes/wg-settings-page.php:175
523
+ msgid "Choose Portuguese flag:"
524
  msgstr ""
525
 
526
  #: includes/wg-settings-page.php:176
700
 
701
  #: weglot.php:181
702
  msgid ""
703
+ "Please upgrade your PHP version. You can ask your host provider to do this "
704
+ "by sending them an email."
705
  msgstr ""
706
 
707
  #: weglot.php:182
readme.txt CHANGED
@@ -2,12 +2,12 @@
2
  Contributors: remyb92
3
  Tags: translate,translation,language,multilingual,bilingual,international,localization,multilanguage,multi language,translations,translator,multilangues,traduction,traducteur,ubersetzung,mehrsprachig,traduccion,traduzione,vertaling,vertaler,meertalig
4
  Requires at least: 4.0
5
- Tested up to: 4.7.2
6
- Stable tag: 1.4.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
- Translate your website into multiple languages without any code. Weglot Translate is fully SEO compatible, and follows Google's multilingual best practices.
11
 
12
  == Description ==
13
  The best and easiest translation solution to translate your WordPress website and go multilingual:
@@ -32,7 +32,7 @@ Weglot Translate benefits:
32
  - You do not need to search for translation files (.po) or any other WordPress source files.
33
  - Translations constantly displayed in real-time
34
  - Access to professional translators if you need quality translations.
35
- - Optimised SEO in new languages with dedicated URLs: translated pages will have dedicated URLs, as Google best practice for multilingual sites.
36
  - Language switch button is customizable.
37
 
38
  Is Weglot Translate free?
@@ -45,12 +45,10 @@ Does Weglot Translate provide support?
45
 
46
  Yes, the Weglot Translate team will support everyone. Post a topic on https://wordpress.org/support/plugin/weglot or email us at support@weglot.com or speak with us on our live chat on the Weglot website.
47
 
48
- Weglot Translate plugin is translated in English and French. More translations will be added.
49
 
50
  Weglot Translate, go multilingual now.
51
 
52
- Keywords: polylang, prisna, gts, localize, lingotek, smartling, qtranslate, loco translate, loco, google website translator, translate wordpress, translate, transposh, global translator, machine translate, wp translate, gtranslate, translator, translation
53
-
54
  == Installation ==
55
 
56
  = Minimum Requirements for Weglot Translate =
@@ -88,7 +86,7 @@ All translations edited in your dashboard are automatically displayed in real-ti
88
  2. Go into your Weglot account and check you edited the right translations: use the search bar (at the top) to easily find translations you want to edit. Sometimes you can have 2 very similar translations and edited the wrong one.
89
 
90
  = Change the appearance of the Weglot Translate language button =
91
- You can change one of the three set-up items in your Weglot Translate settings (with(out) flags, horizontal or dropdown menu, full language name or 2-letter code) or overwrite the CSS.
92
  = Change the position of the Weglot Translate language button =
93
  With widget areas, you can drag and drop the Weglot Translate widget.
94
 
@@ -96,7 +94,7 @@ Alternatively, use overwrite CSS to change the Weglot Translate button position
96
 
97
  You can also put the button in the navigation menu by checking the option in the Weglot settings page. Be aware that putting the button in the menu might change the appearance of the button a bit as there are already some style (CSS) rules active in the menu.
98
 
99
- You can additionaly use a shortcode: [weglot_switcher]
100
 
101
  Finally, you can also add &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; anywhere in your code and a Weglot button will be positioned at this place.
102
  = SEO and translations =
@@ -124,12 +122,12 @@ Weglot Translate is easy to set up:
124
 
125
  1. Go to https://weglot.com/register-wordpress to set up an account
126
  2. Grab your api_key from your dashboard, it looks like "wg_XXXXXXX"
127
- 3. Find the Weglot Translate settings page on the bottom left of your wordpress admin dashboard
128
- 4. Add and save your api key to Weglot Translate settings, enter your website's original language and enter the translations languages you want separated by commas (for instance en,de,pt to have translations in English, German and Portuguese)
129
- 5. Chose the appearance for the translation button (flags, list or dropdown, translation language fullname or code)
130
  6. Click on the Save button.
131
- 7. (Optional) Go in Appearance -> Widgets and drag and drop "Weglot Translate" widget where you want it to appear.
132
- 8. Refresh your web page, your website is now available in the selected translations languages. You can switch languages to see translated pages.
133
  9. If you want, you can edit your translations directly in your account: https://weglot.com/dashboard
134
 
135
  == Screenshots ==
@@ -145,6 +143,10 @@ See changelog for upgrade changes.
145
 
146
  == Changelog ==
147
 
 
 
 
 
148
  = 1.4.4 =
149
  * Update i18n and improve strings
150
 
2
  Contributors: remyb92
3
  Tags: translate,translation,language,multilingual,bilingual,international,localization,multilanguage,multi language,translations,translator,multilangues,traduction,traducteur,ubersetzung,mehrsprachig,traduccion,traduzione,vertaling,vertaler,meertalig
4
  Requires at least: 4.0
5
+ Tested up to: 4.7.3
6
+ Stable tag: 1.4.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
+ Translate your website into multiple languages without any code. Weglot Translate is fully SEO compatible and follows Googles best practices.
11
 
12
  == Description ==
13
  The best and easiest translation solution to translate your WordPress website and go multilingual:
32
  - You do not need to search for translation files (.po) or any other WordPress source files.
33
  - Translations constantly displayed in real-time
34
  - Access to professional translators if you need quality translations.
35
+ - Optimized SEO in new languages with dedicated URLs: translated pages will have dedicated URLs, as Google best practice for multilingual sites.
36
  - Language switch button is customizable.
37
 
38
  Is Weglot Translate free?
45
 
46
  Yes, the Weglot Translate team will support everyone. Post a topic on https://wordpress.org/support/plugin/weglot or email us at support@weglot.com or speak with us on our live chat on the Weglot website.
47
 
48
+ Weglot Translate plugin is translated in Dutch, English_UK, French, German, Italian, Portuguese_BR, Russian and Spanish. More translations will be added.
49
 
50
  Weglot Translate, go multilingual now.
51
 
 
 
52
  == Installation ==
53
 
54
  = Minimum Requirements for Weglot Translate =
86
  2. Go into your Weglot account and check you edited the right translations: use the search bar (at the top) to easily find translations you want to edit. Sometimes you can have 2 very similar translations and edited the wrong one.
87
 
88
  = Change the appearance of the Weglot Translate language button =
89
+ You can change one of the three set-up items in your Weglot Translate settings (with/without flags, horizontal or dropdown menu, full language name or 2-letter code) or overwrite the CSS.
90
  = Change the position of the Weglot Translate language button =
91
  With widget areas, you can drag and drop the Weglot Translate widget.
92
 
94
 
95
  You can also put the button in the navigation menu by checking the option in the Weglot settings page. Be aware that putting the button in the menu might change the appearance of the button a bit as there are already some style (CSS) rules active in the menu.
96
 
97
+ You can additionally use a shortcode: [weglot_switcher]
98
 
99
  Finally, you can also add &lt;div id=&quot;weglot_here&quot;&gt;&lt;/div&gt; anywhere in your code and a Weglot button will be positioned at this place.
100
  = SEO and translations =
122
 
123
  1. Go to https://weglot.com/register-wordpress to set up an account
124
  2. Grab your api_key from your dashboard, it looks like "wg_XXXXXXX"
125
+ 3. Find the Weglot Translate settings page on the bottom left of your WordPress admin dashboard.
126
+ 4. Add and save your api key to Weglot Translate settings, enter your website's original language and enter the translation languages you want, separated by commas (for instance en,de,pt to have translations in English, German and Portuguese).
127
+ 5. Choose the appearance for the translation button (flags, list or dropdown, translation language fullname or code)
128
  6. Click on the Save button.
129
+ 7. (Optional) Go to Appearance -> Widgets and drag and drop the "Weglot Translate" widget where you want it to appear.
130
+ 8. Refresh your web page, your website is now available in the selected translation languages. You can switch languages to see translated pages.
131
  9. If you want, you can edit your translations directly in your account: https://weglot.com/dashboard
132
 
133
  == Screenshots ==
143
 
144
  == Changelog ==
145
 
146
+ = 1.4.5 =
147
+ * Add more i18n luv. Now we speak WordPress
148
+ * Add Dutch, English_UK, German, Italian, Portuguese_BR, Russian and Spanish languages
149
+
150
  = 1.4.4 =
151
  * Update i18n and improve strings
152
 
weglot.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * @package Weglot
4
- * @version 1.4.4
5
  */
6
 
7
  /*
@@ -11,7 +11,7 @@ Description: Translate your website into multiple languages in minutes without d
11
  Author: Remy B
12
  Text Domain: weglot
13
  Domain Path: /languages/
14
- Version: 1.4.4
15
  */
16
 
17
  /* Copyright 2015 Remy Berda (email : remy@weglot.com)
@@ -39,7 +39,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
39
  //define( 'WP_DEBUG_LOG', true );
40
 
41
 
42
- define('WEGLOT_VERSION', '1.4.4');
43
  define('WEGLOT_DIR', dirname(__FILE__));
44
  define('WEGLOT_BNAME', plugin_basename(__FILE__));
45
  define('WEGLOT_DIRURL', plugin_dir_url( __FILE__ ));
@@ -171,10 +171,10 @@ class Weglot {
171
  return $inst;
172
  }
173
 
174
- public function plugin_activate() {
175
  if (version_compare(phpversion(), '5.3.0', '<')) {
176
  wp_die(
177
- '<p>' . __( 'Thank you for downloading <strong>Weglot Translate</strong>!', 'weglot' ) . '</p><p>' . sprintf( __( 'In order to activate Weglot, you need PHP version <strong>5.3</strong> or greater. Your current version of PHP is %s.', 'weglot' ), phpversion() ) . '</p><p>' . __( 'Please upgrade your PHP version, you can ask your host provider to do it by sending it an email.', 'weglot' ) . '</p>',
178
  __( 'Plugin Activation Error', 'weglot' ),
179
  array( 'response'=>200, 'back_link'=>TRUE )
180
  );
@@ -193,7 +193,7 @@ class Weglot {
193
  }
194
  }
195
 
196
- public function plugin_deactivate() {
197
  flush_rewrite_rules();
198
  if(get_option('wg_old_permalink_structure_empty')=="on") {
199
  delete_option('wg_old_permalink_structure_empty');
@@ -201,7 +201,7 @@ class Weglot {
201
  }
202
  }
203
 
204
- public function plugin_uninstall() {
205
  flush_rewrite_rules();
206
  delete_option('project_key');
207
  delete_option('original_l');
@@ -221,7 +221,7 @@ class Weglot {
221
  public function wg_admin_notice1() {
222
  ?>
223
  <div class="updated settings-error notice is-dismissible">
224
- <p><?php echo sprintf( __( 'Weglot Translate is not active because you have exceeded the free limit. Please %supgrade your plan%s if you want to keep the service running.', 'weglot' ), '<a target="_blank" href="https://weglot.com/change-plan">', '</a>' ); ?></p>); ?></p>
225
  </div>
226
  <?php
227
  }
@@ -260,7 +260,7 @@ class Weglot {
260
  $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
261
  //exit(print_r($dest));
262
  if(in_array($lang,$dest)) {
263
- wp_redirect( "/$lang/" );
264
  exit();
265
  }
266
  }
@@ -524,6 +524,19 @@ class Weglot {
524
  $translatedPage = preg_replace('/<a'.preg_quote($sometags,'/').'href='.preg_quote($out[2][$i].$current_url.$out[4][$i],'/').'/','<a'.$sometags.'href='.$out[2][$i].$this->replaceUrl($current_url,$l).$out[4][$i],$translatedPage);
525
  }
526
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
527
  preg_match_all('/<form([^\>]+?)?action=(\"|\')([^\s\>]+?)(\"|\')/',$translatedPage,$out, PREG_PATTERN_ORDER);
528
  for($i=0;$i<count($out[0]);$i++) {
529
  $sometags = $out[1][$i];
@@ -757,6 +770,6 @@ class Weglot {
757
  register_activation_hook( __FILE__, array('Weglot', 'plugin_activate') );
758
  register_deactivation_hook( __FILE__, array('Weglot', 'plugin_deactivate') );
759
  register_uninstall_hook( __FILE__, array('Weglot', 'plugin_uninstall') );
760
-
761
  add_action( 'plugins_loaded', array ( 'Weglot', 'Instance' ), 10 );
762
  //Weglot::Instance();
1
  <?php
2
  /**
3
  * @package Weglot
4
+ * @version 1.4.5
5
  */
6
 
7
  /*
11
  Author: Remy B
12
  Text Domain: weglot
13
  Domain Path: /languages/
14
+ Version: 1.4.5
15
  */
16
 
17
  /* Copyright 2015 Remy Berda (email : remy@weglot.com)
39
  //define( 'WP_DEBUG_LOG', true );
40
 
41
 
42
+ define('WEGLOT_VERSION', '1.4.5');
43
  define('WEGLOT_DIR', dirname(__FILE__));
44
  define('WEGLOT_BNAME', plugin_basename(__FILE__));
45
  define('WEGLOT_DIRURL', plugin_dir_url( __FILE__ ));
171
  return $inst;
172
  }
173
 
174
+ public static function plugin_activate() {
175
  if (version_compare(phpversion(), '5.3.0', '<')) {
176
  wp_die(
177
+ '<p>' . __( 'Thank you for downloading <strong>Weglot Translate</strong>!', 'weglot' ) . '</p><p>' . sprintf( __( 'In order to activate Weglot, you need PHP version <strong>5.3</strong> or greater. Your current version of PHP is %s.', 'weglot' ), phpversion() ) . '</p><p>' . __( 'Please upgrade your PHP version. You can ask your host provider to do this by sending them an email.', 'weglot' ) . '</p>',
178
  __( 'Plugin Activation Error', 'weglot' ),
179
  array( 'response'=>200, 'back_link'=>TRUE )
180
  );
193
  }
194
  }
195
 
196
+ public static function plugin_deactivate() {
197
  flush_rewrite_rules();
198
  if(get_option('wg_old_permalink_structure_empty')=="on") {
199
  delete_option('wg_old_permalink_structure_empty');
201
  }
202
  }
203
 
204
+ public static function plugin_uninstall() {
205
  flush_rewrite_rules();
206
  delete_option('project_key');
207
  delete_option('original_l');
221
  public function wg_admin_notice1() {
222
  ?>
223
  <div class="updated settings-error notice is-dismissible">
224
+ <p><?php echo sprintf( __( 'Weglot Translate is not active because you have exceeded the free limit. Please %supgrade your plan%s if you want to keep the service running.', 'weglot' ), '<a target="_blank" href="https://weglot.com/change-plan">', '</a>' ); ?></p>
225
  </div>
226
  <?php
227
  }
260
  $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
261
  //exit(print_r($dest));
262
  if(in_array($lang,$dest)) {
263
+ wp_redirect( $this->home_dir."/$lang/" );
264
  exit();
265
  }
266
  }
524
  $translatedPage = preg_replace('/<a'.preg_quote($sometags,'/').'href='.preg_quote($out[2][$i].$current_url.$out[4][$i],'/').'/','<a'.$sometags.'href='.$out[2][$i].$this->replaceUrl($current_url,$l).$out[4][$i],$translatedPage);
525
  }
526
  }
527
+ preg_match_all('/<([^\>]+?)?data-link=(\"|\')([^\s\>]+?)(\"|\')([^\>]+?)?>/',$translatedPage,$out, PREG_PATTERN_ORDER);
528
+ for($i=0;$i<count($out[0]);$i++) {
529
+ $sometags = $out[1][$i];
530
+ $sometags2 = $out[5][$i];
531
+ $current_url = $out[3][$i];
532
+ $parsed_url = parse_url($current_url);
533
+ if((($current_url[0] == 'h' && $parsed_url['host']==$_SERVER['HTTP_HOST']) || ($current_url[0] =='/' && $current_url[1] !='/'))
534
+ && strpos($current_url,$admin_url) === false && strpos($current_url,'wp-login') === false && !WGUtils::endsWith($current_url,'.jpg') && !WGUtils::endsWith($current_url,'.jpeg') && !WGUtils::endsWith($current_url,'.png') && !WGUtils::endsWith($current_url,'.pdf')
535
+ && $this->isEligibleURL($current_url) && strpos($sometags,'data-wg-notranslate') === false && strpos($sometags2,'data-wg-notranslate') === false)
536
+ {
537
+ $translatedPage = preg_replace('/<'.preg_quote($sometags,'/').'data-link='.preg_quote($out[2][$i].$current_url.$out[4][$i],'/').'/','<'.$sometags.'data-link='.$out[2][$i].$this->replaceUrl($current_url,$l).$out[4][$i],$translatedPage);
538
+ }
539
+ }
540
  preg_match_all('/<form([^\>]+?)?action=(\"|\')([^\s\>]+?)(\"|\')/',$translatedPage,$out, PREG_PATTERN_ORDER);
541
  for($i=0;$i<count($out[0]);$i++) {
542
  $sometags = $out[1][$i];
770
  register_activation_hook( __FILE__, array('Weglot', 'plugin_activate') );
771
  register_deactivation_hook( __FILE__, array('Weglot', 'plugin_deactivate') );
772
  register_uninstall_hook( __FILE__, array('Weglot', 'plugin_uninstall') );
773
+
774
  add_action( 'plugins_loaded', array ( 'Weglot', 'Instance' ), 10 );
775
  //Weglot::Instance();