Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.22

Version Description

  • 25.02.2016 =
  • NEW : The Czech language file has been added.
  • UPDATE : Functionality of plugin`s scripts adding has been changed so that they will be added only on pages where the CAPTCHA will be displayed.
  • Bugfix : The bug with displaying several reCAPTCHA`s blocks on the same page in different forms has been fixed.
  • Bugfix : The bug with definition of JS function on() has been fixed.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Captcha (reCAPTCHA) by BestWebSoft
Version 1.22
Comparing to
See all releases

Code changes from version 1.21 to 1.22

Files changed (45) hide show
  1. bws_menu/bws_functions.php +1 -1
  2. bws_menu/bws_menu.php +1 -1
  3. bws_menu/css/general_style.css +1 -1
  4. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  5. bws_menu/languages/bestwebsoft-pl_PL.po +1247 -0
  6. css/gglcptch.css +8 -4
  7. google-captcha.php +214 -137
  8. js/script.js +81 -10
  9. languages/google-captcha-ar.mo +0 -0
  10. languages/google-captcha-ar.po +80 -60
  11. languages/google-captcha-bg_BG.mo +0 -0
  12. languages/google-captcha-bg_BG.po +79 -59
  13. languages/google-captcha-cs_CZ.mo +0 -0
  14. languages/google-captcha-cs_CZ.po +400 -0
  15. languages/google-captcha-de_DE.mo +0 -0
  16. languages/google-captcha-de_DE.po +79 -59
  17. languages/google-captcha-el.mo +0 -0
  18. languages/google-captcha-el.po +79 -59
  19. languages/google-captcha-es_ES.mo +0 -0
  20. languages/google-captcha-es_ES.po +79 -59
  21. languages/google-captcha-fa_IR.mo +0 -0
  22. languages/google-captcha-fa_IR.po +80 -60
  23. languages/google-captcha-fr_FR.mo +0 -0
  24. languages/google-captcha-fr_FR.po +79 -59
  25. languages/google-captcha-hi.mo +0 -0
  26. languages/google-captcha-hi.po +79 -59
  27. languages/google-captcha-it_IT.mo +0 -0
  28. languages/google-captcha-it_IT.po +79 -59
  29. languages/google-captcha-pl_PL.mo +0 -0
  30. languages/google-captcha-pl_PL.po +79 -59
  31. languages/google-captcha-pt_BR.mo +0 -0
  32. languages/google-captcha-pt_BR.po +79 -59
  33. languages/google-captcha-ru_RU.mo +0 -0
  34. languages/google-captcha-ru_RU.po +81 -59
  35. languages/google-captcha-uk.mo +0 -0
  36. languages/google-captcha-uk.po +81 -59
  37. languages/google-captcha-zh_TW.mo +0 -0
  38. languages/google-captcha-zh_TW.po +79 -59
  39. lib_v2/license.txt +0 -29
  40. lib_v2/recaptchalib.php +0 -151
  41. readme.txt +17 -24
  42. screenshot-5.png +0 -0
  43. screenshot-6.png +0 -0
  44. screenshot-7.png +0 -0
  45. screenshot-8.png +0 -0
bws_menu/bws_functions.php CHANGED
@@ -704,7 +704,7 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
704
 
705
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
706
  function bws_show_settings_notice() { ?>
707
- <div id="bws_save_settings_notice" class="updated fade" style="display:none">
708
  <p>
709
  <strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
710
  <a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
704
 
705
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
706
  function bws_show_settings_notice() { ?>
707
+ <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
708
  <p>
709
  <strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
710
  <a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.8.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.8.1
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
bws_menu/css/general_style.css CHANGED
@@ -255,11 +255,11 @@ div.bws_banner_on_plugin_page .icon {
255
  margin: 8px;
256
  cursor: pointer;
257
  }
 
258
  .rtl .bws_banner_on_plugin_page .close_icon {
259
  float: left;
260
  }
261
  .rtl div.bws_banner_on_plugin_page .icon,
262
- .rtl div.bws_banner_on_plugin_page .button,
263
  .rtl .bws_banner_on_plugin_page .text {
264
  float: right;
265
  }
255
  margin: 8px;
256
  cursor: pointer;
257
  }
258
+ .rtl div.bws_banner_on_plugin_page .button,
259
  .rtl .bws_banner_on_plugin_page .close_icon {
260
  float: left;
261
  }
262
  .rtl div.bws_banner_on_plugin_page .icon,
 
263
  .rtl .bws_banner_on_plugin_page .text {
264
  float: right;
265
  }
bws_menu/languages/bestwebsoft-pl_PL.mo ADDED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po ADDED
@@ -0,0 +1,1247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: bestwebsoft\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-19 13:39+0300\n"
6
+ "PO-Revision-Date: 2016-01-19 13:39+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
+ "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
+ "Language: pl_PL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
+ "|| n%100>=20) ? 1 : 2);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: bws_functions.php:65 bws_functions.php:89
22
+ msgid "requires"
23
+ msgstr "wymaga wersja"
24
+
25
+ #: bws_functions.php:67
26
+ msgid ""
27
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
28
+ "try again."
29
+ msgstr ""
30
+ "lub nowsza, dlatego wtyczka została wyłączona. Zaktualizuj WordPress i "
31
+ "spróbuj ponownie."
32
+
33
+ #: bws_functions.php:68
34
+ msgid "Back to the WordPress"
35
+ msgstr "Wróć do WordPress"
36
+
37
+ #: bws_functions.php:70
38
+ msgid "Plugins page"
39
+ msgstr "Wtyczki"
40
+
41
+ #: bws_functions.php:91
42
+ msgid ""
43
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
44
+ "upgrade to WordPress latest version."
45
+ msgstr ""
46
+ "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
47
+ "Proszę zaktualizować WordPress do najnowszej wersji."
48
+
49
+ #: bws_functions.php:148
50
+ msgid "It’s time to upgrade your"
51
+ msgstr "Czas by zaktualizować"
52
+
53
+ #: bws_functions.php:148
54
+ msgid "to"
55
+ msgstr "do"
56
+
57
+ #: bws_functions.php:148
58
+ msgid "version!"
59
+ msgstr "wersji!"
60
+
61
+ #: bws_functions.php:149
62
+ msgid "Extend standard plugin functionality with new great options."
63
+ msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
64
+
65
+ #: bws_functions.php:152 bws_functions.php:593
66
+ msgid "Learn More"
67
+ msgstr "Dowiedz się więcej"
68
+
69
+ #: bws_functions.php:169
70
+ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
71
+ msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
72
+
73
+ #: bws_functions.php:170
74
+ msgid "Rate the plugin"
75
+ msgstr "Oceń wtyczkę"
76
+
77
+ #: bws_functions.php:173
78
+ msgid "If there is something wrong about it, please contact us"
79
+ msgstr "Jeśli wystąpią problemy proszę, skontaktuj się z nami"
80
+
81
+ #: bws_functions.php:205
82
+ msgid "Check premium options on the plugin settings page!"
83
+ msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
84
+
85
+ #: bws_functions.php:212 bws_functions.php:248
86
+ msgid "Wrong license key"
87
+ msgstr "Niepoprawny klucz licencji"
88
+
89
+ #: bws_functions.php:242 bws_functions.php:506 bws_functions.php:557
90
+ msgid ""
91
+ "Something went wrong. Please try again later. If the error appears again, "
92
+ "please contact us"
93
+ msgstr ""
94
+ "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
95
+ "proszę skontaktować się z nami"
96
+
97
+ #: bws_functions.php:242 bws_functions.php:506 bws_functions.php:557
98
+ msgid "We are sorry for inconvenience."
99
+ msgstr "Przepraszamy za niedogodności."
100
+
101
+ #: bws_functions.php:250
102
+ msgid "This license key is bind to another site"
103
+ msgstr "Ta licencja została przypisana do innej strony."
104
+
105
+ #: bws_functions.php:252 bws_functions.php:416
106
+ msgid ""
107
+ "Unfortunately, you have exceeded the number of available tries per day. "
108
+ "Please, upload the plugin manually."
109
+ msgstr ""
110
+ "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
111
+ "manualnie."
112
+
113
+ #: bws_functions.php:254
114
+ msgid ""
115
+ "Unfortunately, Your license has expired. To continue getting top-priority "
116
+ "support and plugin updates you should extend it in your"
117
+ msgstr ""
118
+ "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
119
+ "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
120
+
121
+ #: bws_functions.php:256
122
+ msgid ""
123
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
124
+ "Trial license can be installed only once."
125
+ msgstr ""
126
+ "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
127
+ "może być wykorzystana tylko raz."
128
+
129
+ #: bws_functions.php:277 bws_functions.php:299 bws_functions.php:321
130
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
131
+ msgstr ""
132
+ "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
133
+ "manualnie"
134
+
135
+ #: bws_functions.php:289
136
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
137
+ msgstr ""
138
+ "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
139
+ "manualnie"
140
+
141
+ #: bws_functions.php:295
142
+ msgid ""
143
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
144
+ "plugin manually"
145
+ msgstr ""
146
+ "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
147
+
148
+ #: bws_functions.php:302
149
+ msgid "UploadDir is not writable. Please, upload the plugin manually"
150
+ msgstr ""
151
+ "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
152
+
153
+ #: bws_functions.php:325
154
+ msgid ""
155
+ "Something went wrong. Try again later or upload the plugin manually. We are "
156
+ "sorry for inconvenience."
157
+ msgstr ""
158
+ "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
159
+ "Przepraszamy za niedogodności."
160
+
161
+ #: bws_functions.php:350
162
+ msgid "Please, enter Your license key"
163
+ msgstr "Proszę podać klucz licencji."
164
+
165
+ #: bws_functions.php:380
166
+ msgid ""
167
+ "Congratulations! The Pro version of the plugin is successfully download and "
168
+ "activated."
169
+ msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
170
+
171
+ #: bws_functions.php:382 bws_functions.php:473
172
+ msgid "Please, go to"
173
+ msgstr "Proszę przejść do"
174
+
175
+ #: bws_functions.php:382 bws_functions.php:473
176
+ msgid "the setting page"
177
+ msgstr "ustawień"
178
+
179
+ #: bws_functions.php:383 bws_functions.php:474
180
+ msgid "You will be redirected automatically in 5 seconds."
181
+ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
182
+
183
+ #: bws_functions.php:390
184
+ msgid "Show Pro features"
185
+ msgstr "Pokaż funkcje PRO"
186
+
187
+ #: bws_functions.php:397
188
+ msgid "You can download and activate"
189
+ msgstr "Możesz pobrać i aktywować wersję"
190
+
191
+ #: bws_functions.php:399
192
+ msgid "version of this plugin by entering Your license key."
193
+ msgstr "wtyczki poprzez podanie klucza licencji."
194
+
195
+ #: bws_functions.php:401 bws_functions.php:442
196
+ msgid ""
197
+ "You can find your license key on your personal page Client area, by clicking "
198
+ "on the link"
199
+ msgstr ""
200
+ "Możesz znaleźć Twój klucz licencji na indywidualnej stronie w Panelu Klienta "
201
+ "poprzez kliknięcie w link"
202
+
203
+ #: bws_functions.php:403 bws_functions.php:444
204
+ msgid "(your username is the email you specify when purchasing the product)."
205
+ msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
206
+
207
+ #: bws_functions.php:407 bws_functions.php:691
208
+ msgid "or"
209
+ msgstr "lub"
210
+
211
+ #: bws_functions.php:407
212
+ #, php-format
213
+ msgid "Start Your Free %s-Day Trial Now"
214
+ msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
215
+
216
+ #: bws_functions.php:413 bws_functions.php:422 bws_functions.php:452
217
+ #: bws_functions.php:460 bws_menu.php:690 bws_menu.php:747
218
+ msgid "Activate"
219
+ msgstr "Aktywuj"
220
+
221
+ #: bws_functions.php:439 bws_functions.php:532
222
+ #, php-format
223
+ msgid ""
224
+ "In order to continue using the plugin it is necessary to buy a %s license."
225
+ msgstr ""
226
+ "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
227
+ "%s."
228
+
229
+ #: bws_functions.php:440
230
+ msgid "After that you can activate it by entering your license key."
231
+ msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
232
+
233
+ #: bws_functions.php:454
234
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
235
+ msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
236
+
237
+ #: bws_functions.php:471
238
+ msgid ""
239
+ "Congratulations! The Pro license of the plugin is successfully activated."
240
+ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
241
+
242
+ #: bws_functions.php:512
243
+ msgid "Wrong license key."
244
+ msgstr "Niepoprawny klucz licencji"
245
+
246
+ #: bws_functions.php:514
247
+ msgid "This license key is bind to another site."
248
+ msgstr "Klucz licencji został przypisany do innej strony."
249
+
250
+ #: bws_functions.php:516
251
+ msgid ""
252
+ "This license key is valid, but Your license has expired. If you want to "
253
+ "update our plugin in future, you should extend the license."
254
+ msgstr ""
255
+ "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
256
+ "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
257
+
258
+ #: bws_functions.php:518
259
+ msgid "Unfortunately, you have exceeded the number of available tries."
260
+ msgstr "Niestety, przekroczono liczbę dostępnych prób."
261
+
262
+ #: bws_functions.php:520
263
+ msgid ""
264
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
265
+ "The Pro Trial license can be installed only once."
266
+ msgstr ""
267
+ "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
268
+ "może być wykorzystana tylko raz."
269
+
270
+ #: bws_functions.php:524
271
+ msgid "The Pro Trial license key is valid."
272
+ msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
273
+
274
+ #: bws_functions.php:526
275
+ msgid "The license key is valid."
276
+ msgstr "Klucz licencji jest poprawny"
277
+
278
+ #: bws_functions.php:529
279
+ msgid "Your license will expire on"
280
+ msgstr "Twoja licencja wygaśnie"
281
+
282
+ #: bws_functions.php:562
283
+ msgid "Please, enter your license key"
284
+ msgstr "Podaj klucz licencji"
285
+
286
+ #: bws_functions.php:575
287
+ msgid ""
288
+ "If needed you can check if the license key is correct or reenter it in the "
289
+ "field below. You can find your license key on your personal page - Client "
290
+ "area - on our website"
291
+ msgstr ""
292
+ "Jeśli to konieczne możesz sprawdzić czy klucz jest poprawny lub umieścić go "
293
+ "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
294
+ "Panel Klienta"
295
+
296
+ #: bws_functions.php:575
297
+ msgid ""
298
+ "(your username is the email you specify when purchasing the product). If "
299
+ "necessary, please submit \"Lost your password?\" request."
300
+ msgstr ""
301
+ "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
302
+ "\"Zgubiłeś swoje hasło?\"."
303
+
304
+ #: bws_functions.php:579
305
+ msgid "Check license key"
306
+ msgstr "Sprawdź klucz licencji"
307
+
308
+ #: bws_functions.php:593
309
+ msgid "WARNING: Illegal use notification"
310
+ msgstr "UWAGA: Odnotowano nielegalne użycie"
311
+
312
+ #: bws_functions.php:593
313
+ msgid ""
314
+ "You can use one license of the Pro plugin for one domain only. Please check "
315
+ "and edit your license or domain if necessary using you personal Client Area. "
316
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
317
+ "the Pro plugin will be deactivated."
318
+ msgstr ""
319
+ "Licencja wersji PRO może być wykorzystywana tylko na jednej domenie. Proszę "
320
+ "sprawdź i edytuj klucz licencji lub domenę, jeśli to konieczne wykorzystaj "
321
+ "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
322
+ "przeciwnym wypadku wersja PRO zostanie zablokowana."
323
+
324
+ #: bws_functions.php:601
325
+ msgid ""
326
+ "Notice: Your Pro Trial license has expired. To continue using the plugin you "
327
+ "should buy a Pro license"
328
+ msgstr ""
329
+ "Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
330
+ "naszej wtyczki powinieneś zakupić klucz licencji."
331
+
332
+ #: bws_functions.php:603
333
+ msgid ""
334
+ "Your license has expired. To continue getting top-priority support and "
335
+ "plugin updates you should extend it."
336
+ msgstr ""
337
+ "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
338
+ "aktualizacji powinieneś przedłużyć licencję."
339
+
340
+ #: bws_functions.php:603 bws_functions.php:656 bws_menu.php:666
341
+ #: bws_menu.php:688 bws_menu.php:715 bws_menu.php:745 bws_menu.php:791
342
+ msgid "Learn more"
343
+ msgstr "Dowiedz się więcej"
344
+
345
+ #: bws_functions.php:613
346
+ #, php-format
347
+ msgid "Notice: You are using the Pro Trial license of %s plugin."
348
+ msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
349
+
350
+ #: bws_functions.php:615
351
+ msgid "Notice: You are using the Pro Trial license of plugin."
352
+ msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
353
+
354
+ #: bws_functions.php:618
355
+ msgid "The Pro Trial license will expire on"
356
+ msgstr "Licencja próbna wygaśnie"
357
+
358
+ #: bws_functions.php:656
359
+ msgid "You license for"
360
+ msgstr "Twoja licencja na"
361
+
362
+ #: bws_functions.php:656
363
+ msgid "expires on"
364
+ msgstr "wygasa"
365
+
366
+ #: bws_functions.php:656
367
+ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
368
+ msgstr ""
369
+ "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
370
+ "AKTUALIZACJI."
371
+
372
+ #: bws_functions.php:687
373
+ msgid "Thank you for installing"
374
+ msgstr "Dziękujemy za instalację"
375
+
376
+ #: bws_functions.php:688
377
+ msgid "Let's get started"
378
+ msgstr "Zaczynajmny"
379
+
380
+ #: bws_functions.php:689
381
+ msgid "Configure Settings"
382
+ msgstr "Konfiguruj Ustawienia"
383
+
384
+ #: bws_functions.php:692
385
+ msgid "Add New"
386
+ msgstr "Dodaj nowy"
387
+
388
+ #: bws_functions.php:696
389
+ msgid "Close notice"
390
+ msgstr "Zamknij powiadomienie"
391
+
392
+ #: bws_functions.php:709
393
+ msgid "Notice"
394
+ msgstr "Uwaga"
395
+
396
+ #: bws_functions.php:709
397
+ msgid "The plugin's settings have been changed."
398
+ msgstr "Ustawienia wtyczki zostały zmienione."
399
+
400
+ #: bws_functions.php:710
401
+ msgid "Save Changes"
402
+ msgstr "Zapisz zmiany"
403
+
404
+ #: bws_functions.php:727
405
+ msgid ""
406
+ "You can always look at premium options by clicking on the \"Show Pro features"
407
+ "\" in the \"Go PRO\" tab"
408
+ msgstr ""
409
+ "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
410
+ "PRO\" w zakładce \"Go PRO\""
411
+
412
+ #: bws_functions.php:807
413
+ msgid "Add BWS Plugins Shortcode"
414
+ msgstr "Dodaj BWS Shortcode"
415
+
416
+ #: bws_functions.php:827
417
+ #, fuzzy
418
+ msgid "Add shortcode"
419
+ msgstr "Dodaj BWS Shortcode"
420
+
421
+ #: bws_functions.php:827
422
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
423
+ msgstr ""
424
+
425
+ #: bws_functions.php:869
426
+ msgid "Close"
427
+ msgstr "Zamknij"
428
+
429
+ #: bws_functions.php:961
430
+ msgid "Restore all plugin settings to defaults"
431
+ msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
432
+
433
+ #: bws_functions.php:963
434
+ msgid "Restore settings"
435
+ msgstr "Przywróć ustawienia"
436
+
437
+ #: bws_functions.php:974
438
+ msgid "Are you sure you want to restore all settings by default?"
439
+ msgstr ""
440
+ "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
441
+ "domyślnych?"
442
+
443
+ #: bws_functions.php:977
444
+ msgid "Yes, restore all settings"
445
+ msgstr "Tak, przywróć wszystkie ustawienia"
446
+
447
+ #: bws_functions.php:978
448
+ msgid "No, go back to the settings page"
449
+ msgstr "Nie, wróć do ustawień"
450
+
451
+ #: bws_functions.php:1024
452
+ msgid "Plugin"
453
+ msgstr "Wtyczka"
454
+
455
+ #: bws_functions.php:1033
456
+ msgid "Shortcode settings"
457
+ msgstr "Ustawienia shortcode"
458
+
459
+ #: bws_functions.php:1038
460
+ msgid "The shortcode will be inserted"
461
+ msgstr "Shortcode zostanie umieszczony"
462
+
463
+ #: bws_functions.php:1043
464
+ msgid "Insert"
465
+ msgstr "Umieść"
466
+
467
+ #: bws_functions.php:1074
468
+ msgid "Visit Help Center"
469
+ msgstr ""
470
+
471
+ #: bws_functions.php:1079
472
+ msgid "FAQ"
473
+ msgstr "FAQ"
474
+
475
+ #: bws_functions.php:1085
476
+ msgid "For more information:"
477
+ msgstr ""
478
+
479
+ #: bws_functions.php:1086
480
+ msgid "Documentation"
481
+ msgstr ""
482
+
483
+ #: bws_functions.php:1087
484
+ msgid "Video Instructions"
485
+ msgstr ""
486
+
487
+ #: bws_functions.php:1088
488
+ #, fuzzy
489
+ msgid "Submit a Request"
490
+ msgstr "送信ボタン"
491
+
492
+ #: bws_menu.php:506
493
+ msgid "Not set"
494
+ msgstr "Nie ustawiono"
495
+
496
+ #: bws_menu.php:508 bws_menu.php:509
497
+ msgid "On"
498
+ msgstr "Włączone"
499
+
500
+ #: bws_menu.php:508 bws_menu.php:509
501
+ msgid "Off"
502
+ msgstr "Wyłączone"
503
+
504
+ #: bws_menu.php:510 bws_menu.php:511 bws_menu.php:512 bws_menu.php:513
505
+ #: bws_menu.php:514 bws_menu.php:526
506
+ msgid "N/A"
507
+ msgstr "Brak danych"
508
+
509
+ #: bws_menu.php:514
510
+ msgid " Mb"
511
+ msgstr " Mb"
512
+
513
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:522
514
+ msgid "Yes"
515
+ msgstr "Tak"
516
+
517
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:524
518
+ msgid "No"
519
+ msgstr "Nie"
520
+
521
+ #: bws_menu.php:534
522
+ msgid "Operating System"
523
+ msgstr "System operacyjny"
524
+
525
+ #: bws_menu.php:535
526
+ msgid "Server"
527
+ msgstr "Serwer"
528
+
529
+ #: bws_menu.php:536
530
+ msgid "Memory usage"
531
+ msgstr "Wykorzystanie pamięci"
532
+
533
+ #: bws_menu.php:537
534
+ msgid "MYSQL Version"
535
+ msgstr "Wersja MySQL"
536
+
537
+ #: bws_menu.php:538
538
+ msgid "SQL Mode"
539
+ msgstr "Tryb SQL"
540
+
541
+ #: bws_menu.php:539
542
+ msgid "PHP Version"
543
+ msgstr "Wersja PHP"
544
+
545
+ #: bws_menu.php:540
546
+ msgid "PHP Safe Mode"
547
+ msgstr "PHP Safe Mode"
548
+
549
+ #: bws_menu.php:541
550
+ msgid "PHP Allow URL fopen"
551
+ msgstr "Zezwól na PHP fopen"
552
+
553
+ #: bws_menu.php:542
554
+ msgid "PHP Memory Limit"
555
+ msgstr "PHP Limit pamięci"
556
+
557
+ #: bws_menu.php:543
558
+ msgid "PHP Max Upload Size"
559
+ msgstr "PHP Max rozmiar przesyłanego pliku"
560
+
561
+ #: bws_menu.php:544
562
+ msgid "PHP Max Post Size"
563
+ msgstr "PHP Max rozmiar przesyłania POST"
564
+
565
+ #: bws_menu.php:545
566
+ msgid "PHP Max Script Execute Time"
567
+ msgstr "PHP Max czas przetwarzania skryptu"
568
+
569
+ #: bws_menu.php:546
570
+ msgid "PHP Exif support"
571
+ msgstr "PHP Wsparcie Exif"
572
+
573
+ #: bws_menu.php:547
574
+ msgid "PHP IPTC support"
575
+ msgstr "PHP Wsparcie IPTC"
576
+
577
+ #: bws_menu.php:548
578
+ msgid "PHP XML support"
579
+ msgstr "PHP Wsparcie XML"
580
+
581
+ #: bws_menu.php:549
582
+ msgid "Site URL"
583
+ msgstr "Adres strony:"
584
+
585
+ #: bws_menu.php:550
586
+ msgid "Home URL"
587
+ msgstr "Adres strony głównej:"
588
+
589
+ #: bws_menu.php:553
590
+ msgid "WordPress Version"
591
+ msgstr "Wersja WordPress"
592
+
593
+ #: bws_menu.php:554
594
+ msgid "WordPress DB Version"
595
+ msgstr "Wersja Bazy Danych dla WordPress"
596
+
597
+ #: bws_menu.php:555
598
+ msgid "Multisite"
599
+ msgstr "Multisite"
600
+
601
+ #: bws_menu.php:556
602
+ msgid "Active Theme"
603
+ msgstr "Aktywny motyw"
604
+
605
+ #: bws_menu.php:571
606
+ msgid "Please enter a valid email address."
607
+ msgstr "Podaj poprawny adres email"
608
+
609
+ #: bws_menu.php:575
610
+ msgid "Email with system info is sent to "
611
+ msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
612
+
613
+ #: bws_menu.php:579
614
+ msgid "Thank you for contacting us."
615
+ msgstr "Dziękujemy za kontakt."
616
+
617
+ #: bws_menu.php:612
618
+ msgid "Sorry, email message could not be delivered."
619
+ msgstr "Przepraszamy, wiadomość nie została dostarczona."
620
+
621
+ #: bws_menu.php:619
622
+ msgid "Need help?"
623
+ msgstr "Potrzebujesz pomocy?"
624
+
625
+ #: bws_menu.php:620
626
+ msgid "Client area"
627
+ msgstr "Panel Klienta"
628
+
629
+ #: bws_menu.php:621 bws_menu.php:930
630
+ msgid "System status"
631
+ msgstr "Status systemu"
632
+
633
+ #: bws_menu.php:626
634
+ msgid "Plugins"
635
+ msgstr "Wtyczki"
636
+
637
+ #: bws_menu.php:627
638
+ msgid "Themes"
639
+ msgstr "Motywy"
640
+
641
+ #: bws_menu.php:631
642
+ msgid "All"
643
+ msgstr "Wszystko"
644
+
645
+ #: bws_menu.php:632
646
+ msgid "Installed"
647
+ msgstr "Zainstalowane"
648
+
649
+ #: bws_menu.php:633
650
+ msgid "Recommended"
651
+ msgstr "Polecane"
652
+
653
+ #: bws_menu.php:637
654
+ msgid "Installed plugins"
655
+ msgstr "Zainstalowane"
656
+
657
+ #: bws_menu.php:669 bws_menu.php:718
658
+ msgid "Settings"
659
+ msgstr "Ustawienia"
660
+
661
+ #: bws_menu.php:690 bws_menu.php:747
662
+ msgid "Activate this plugin"
663
+ msgstr "Aktywuj wtyczkę"
664
+
665
+ #: bws_menu.php:705 bws_menu.php:735 bws_menu.php:781
666
+ msgid "Go"
667
+ msgstr "Go"
668
+
669
+ #: bws_menu.php:709 bws_menu.php:739 bws_menu.php:785
670
+ msgid "DONATE"
671
+ msgstr "DOTACJA"
672
+
673
+ #: bws_menu.php:755
674
+ msgid "Recommended plugins"
675
+ msgstr "Polecane"
676
+
677
+ #: bws_menu.php:793
678
+ msgid "Install now"
679
+ msgstr "Instaluj teraz"
680
+
681
+ #: bws_menu.php:814
682
+ msgid "Try again"
683
+ msgstr "Spróbuj ponownie"
684
+
685
+ #: bws_menu.php:832
686
+ #, php-format
687
+ msgid "Preview &#8220;%s&#8221;"
688
+ msgstr "Podgląd &#8220;%s&#8221;"
689
+
690
+ #: bws_menu.php:863
691
+ #, php-format
692
+ msgid "Install %s"
693
+ msgstr "Instaluj %s"
694
+
695
+ #: bws_menu.php:863
696
+ msgid "Install Now"
697
+ msgstr "Instaluj teraz"
698
+
699
+ #: bws_menu.php:866
700
+ #, php-format
701
+ msgid "Update to version %s"
702
+ msgstr "Aktualizuj do wersji %s"
703
+
704
+ #: bws_menu.php:866
705
+ msgid "Update"
706
+ msgstr "Aktualizuj"
707
+
708
+ #: bws_menu.php:873
709
+ #, php-format
710
+ msgid "Preview %s"
711
+ msgstr "Podgląd %s"
712
+
713
+ #: bws_menu.php:873
714
+ msgid "Preview"
715
+ msgstr "Podgląd"
716
+
717
+ #: bws_menu.php:879 bws_menu.php:911
718
+ #, php-format
719
+ msgid "By %s"
720
+ msgstr "Od %s"
721
+
722
+ #: bws_menu.php:885
723
+ msgid "Details"
724
+ msgstr "Szczegóły"
725
+
726
+ #: bws_menu.php:917
727
+ msgid "Already Installed"
728
+ msgstr "Zainstalowane"
729
+
730
+ #: bws_menu.php:933
731
+ msgid "Environment"
732
+ msgstr "Środowisko"
733
+
734
+ #: bws_menu.php:944
735
+ msgid "Active Plugins"
736
+ msgstr "Aktywne wtyczki"
737
+
738
+ #: bws_menu.php:957
739
+ msgid "Inactive Plugins"
740
+ msgstr "Nieaktywne wtyczki"
741
+
742
+ #: bws_menu.php:973
743
+ msgid "Send to support"
744
+ msgstr "Wyślij do supportu"
745
+
746
+ #: bws_menu.php:980
747
+ msgid "Send to custom email &#187;"
748
+ msgstr "Prześlij na własny adres &#187;"
749
+
750
+ #~ msgid "Pro plugins"
751
+ #~ msgstr "Pro Plugins"
752
+
753
+ #~ msgid "Activated plugins"
754
+ #~ msgstr "有効なプラグイン"
755
+
756
+ #~ msgid "Read more"
757
+ #~ msgstr "もっと読む"
758
+
759
+ #~ msgid "Purchase"
760
+ #~ msgstr "購入"
761
+
762
+ #~ msgid "Free plugins"
763
+ #~ msgstr "無料プラグイン"
764
+
765
+ #~ msgid "Download"
766
+ #~ msgstr "ダウンロード"
767
+
768
+ #~ msgid "Install now from wordpress.org"
769
+ #~ msgstr "wordpress.org から直ぐに導入"
770
+
771
+ #, fuzzy
772
+ #~ msgid "Activated theme"
773
+ #~ msgstr "有効なテーマ"
774
+
775
+ #, fuzzy
776
+ #~ msgid "Installed themes"
777
+ #~ msgstr "%s 導入"
778
+
779
+ #, fuzzy
780
+ #~ msgid "Recommended themes"
781
+ #~ msgstr "推奨プラグイン"
782
+
783
+ #, fuzzy
784
+ #~ msgid "installed"
785
+ #~ msgstr "%s 導入"
786
+
787
+ #~ msgid "Contact Form"
788
+ #~ msgstr "コンタクトフォーム"
789
+
790
+ #~ msgid "Contact Form Pro Extra Settings"
791
+ #~ msgstr "Contact Form Pro 用設定"
792
+
793
+ #~ msgid "Contact Form Pro"
794
+ #~ msgstr "Contact Form Pro"
795
+
796
+ #~ msgid "Name:"
797
+ #~ msgstr "名前:"
798
+
799
+ #~ msgid "Address:"
800
+ #~ msgstr "住所:"
801
+
802
+ #~ msgid "Email Address:"
803
+ #~ msgstr "Eメール:"
804
+
805
+ #~ msgid "Phone number:"
806
+ #~ msgstr "電話番号:"
807
+
808
+ #~ msgid "Subject:"
809
+ #~ msgstr "件名:"
810
+
811
+ #~ msgid "Message:"
812
+ #~ msgstr "メッセージ:"
813
+
814
+ #~ msgid "Attachment:"
815
+ #~ msgstr "添付:"
816
+
817
+ #~ msgid "Send me a copy"
818
+ #~ msgstr "コピーを自分に送る"
819
+
820
+ #~ msgid "Submit"
821
+ #~ msgstr "送信"
822
+
823
+ #~ msgid "Your name is required."
824
+ #~ msgstr "名前は必須です。"
825
+
826
+ #~ msgid "Address is required."
827
+ #~ msgstr "住所が必要です。"
828
+
829
+ #~ msgid "A valid email address is required."
830
+ #~ msgstr "有効なEメールアドレスlが必須です。"
831
+
832
+ #~ msgid "Phone number is required."
833
+ #~ msgstr "電話番号は必須です。"
834
+
835
+ #~ msgid "Subject is required."
836
+ #~ msgstr "件名は必須です。"
837
+
838
+ #~ msgid "Message text is required."
839
+ #~ msgstr "メッセージ本文は必須です。"
840
+
841
+ #~ msgid "File format is not valid."
842
+ #~ msgstr "添付が壊れています。"
843
+
844
+ #~ msgid "File upload error."
845
+ #~ msgstr "ファイル・アップロード・エラー。"
846
+
847
+ #~ msgid "The file could not be uploaded."
848
+ #~ msgstr "ファイルは、アップロード出来ませんでした。"
849
+
850
+ #~ msgid "This file is too large."
851
+ #~ msgstr "このファイルは大きすぎます。"
852
+
853
+ #~ msgid "Please fill out the CAPTCHA."
854
+ #~ msgstr "CAPTCHAを入力して下さい。"
855
+
856
+ #~ msgid "Please make corrections below and try again."
857
+ #~ msgstr "以下を修正し、再度試して下さい。"
858
+
859
+ #~ msgid ""
860
+ #~ "If the 'Redirect to page' option is selected then the URL field should be "
861
+ #~ "in the following format"
862
+ #~ msgstr ""
863
+ #~ "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式にな"
864
+ #~ "ります"
865
+
866
+ #~ msgid "Such user does not exist. Settings are not saved."
867
+ #~ msgstr "このようなユーザは存在しません。設定は保存されません。"
868
+
869
+ #~ msgid ""
870
+ #~ "Please enter a valid email address in the 'FROM' field. Settings are not "
871
+ #~ "saved."
872
+ #~ msgstr ""
873
+ #~ "'送信者'フィールドに正確なEメール・アドレスを入力して下さい。設定は保存さ"
874
+ #~ "れません。"
875
+
876
+ #~ msgid "Settings saved."
877
+ #~ msgstr "設定保存."
878
+
879
+ #~ msgid ""
880
+ #~ "If you would like to add the Contact Form to your website, just copy and "
881
+ #~ "paste this shortcode to your post or page or widget:"
882
+ #~ msgstr ""
883
+ #~ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを"
884
+ #~ "投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
885
+
886
+ #~ msgid ""
887
+ #~ "If have any problems with the standard shortcode [contact_form], you "
888
+ #~ "should use the shortcode"
889
+ #~ msgstr ""
890
+ #~ "標準的な短いコード [contact_form]に問題がある場合は、この短いコードをご利"
891
+ #~ "用下さい"
892
+
893
+ #~ msgid "They work the same way."
894
+ #~ msgstr "同様に動作します。"
895
+
896
+ #~ msgid ""
897
+ #~ "If you leave the fields empty, the messages will be sent to the email "
898
+ #~ "address specified during registration."
899
+ #~ msgstr ""
900
+ #~ "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送ら"
901
+ #~ "れます。"
902
+
903
+ #~ msgid "The user's email address:"
904
+ #~ msgstr "wordpressユーザのemailを利用r:"
905
+
906
+ #~ msgid "Create a username"
907
+ #~ msgstr "ユーザ名の選択"
908
+
909
+ #~ msgid ""
910
+ #~ "Enter a username of the person who should get the messages from the "
911
+ #~ "contact form."
912
+ #~ msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
913
+
914
+ #~ msgid "Use this email address:"
915
+ #~ msgstr "このemailを利用:"
916
+
917
+ #~ msgid "Enter the email address you want the messages forwarded to."
918
+ #~ msgstr "メッセージ受信用のemailを設定。"
919
+
920
+ #~ msgid "Additional options"
921
+ #~ msgstr "追加オプション"
922
+
923
+ #~ msgid "What to use?"
924
+ #~ msgstr "何用途?"
925
+
926
+ #~ msgid "Wp-mail"
927
+ #~ msgstr "WPメール"
928
+
929
+ #~ msgid "You can use the wp_mail function for mailing"
930
+ #~ msgstr "メールにwp_mali機能が利用できます"
931
+
932
+ #~ msgid "Mail"
933
+ #~ msgstr "メール"
934
+
935
+ #~ msgid "To send mail you can use the php mail function"
936
+ #~ msgstr "メールを送信するには、phpメール機能が利用できます"
937
+
938
+ #~ msgid "Change text of the 'FROM' field"
939
+ #~ msgstr "'送信者' フィールドのテキストを変更"
940
+
941
+ #~ msgid "Enter the email address in the 'From' field"
942
+ #~ msgstr "'送信者' フィールドにメールアドレスを入力して下さい"
943
+
944
+ #~ msgid "User email"
945
+ #~ msgstr "ユーザ・Eメール"
946
+
947
+ #~ msgid ""
948
+ #~ "The email address of the user who fills the form will be used in the "
949
+ #~ "field 'From'."
950
+ #~ msgstr ""
951
+ #~ "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用さ"
952
+ #~ "れます。"
953
+
954
+ #~ msgid "This email address will be used in the 'From' field."
955
+ #~ msgstr "このEメール・アドレスは、'送信者'フィールドに使用されます。"
956
+
957
+ #~ msgid "Display fields"
958
+ #~ msgstr "フィールドを表示"
959
+
960
+ #~ msgid "Address"
961
+ #~ msgstr "住所"
962
+
963
+ #~ msgid "Phone"
964
+ #~ msgstr "電話"
965
+
966
+ #~ msgid "Attachment block"
967
+ #~ msgstr "添付ブロック"
968
+
969
+ #~ msgid "Users can attach the following file formats"
970
+ #~ msgstr "ユーザは、以下のタイプのファイルを添付できる"
971
+
972
+ #~ msgid "Captcha"
973
+ #~ msgstr "Captcha"
974
+
975
+ #~ msgid "(powered by bestwebsoft.com)"
976
+ #~ msgstr "(powered by bestwebsoft.com)"
977
+
978
+ #~ msgid "Download captcha"
979
+ #~ msgstr "captchaをダウンロード"
980
+
981
+ #, fuzzy
982
+ #~ msgid "Display tips below the Attachment block"
983
+ #~ msgstr "添付ブロックの下のチップス"
984
+
985
+ #, fuzzy
986
+ #~ msgid "Display 'Send me a copy' block"
987
+ #~ msgstr "コピーブロックを自分に送る"
988
+
989
+ #~ msgid "Name"
990
+ #~ msgstr "名前"
991
+
992
+ #~ msgid "Email Address"
993
+ #~ msgstr "Eメール・アドレス"
994
+
995
+ #~ msgid "Subject"
996
+ #~ msgstr "件名"
997
+
998
+ #~ msgid "Message"
999
+ #~ msgstr "メッセージ"
1000
+
1001
+ #~ msgid "Display additional info in the email"
1002
+ #~ msgstr "メール中に追加情報を表示"
1003
+
1004
+ #~ msgid "Sent from (ip address)"
1005
+ #~ msgstr "(IP-Adresse)から送られた"
1006
+
1007
+ #, fuzzy
1008
+ #~ msgid "Example: Sent from (IP address):\t127.0.0.1"
1009
+ #~ msgstr "(IP-Adresse)から送られた"
1010
+
1011
+ #~ msgid "Date/Time"
1012
+ #~ msgstr "日時"
1013
+
1014
+ #~ msgid "Sent from (referer)"
1015
+ #~ msgstr "(referer)から送られている"
1016
+
1017
+ #~ msgid "Using (user agent)"
1018
+ #~ msgstr "(user agent)使用"
1019
+
1020
+ #~ msgid "Language settings for the field names in the form"
1021
+ #~ msgstr "フォームのフィールド名用の言語設定"
1022
+
1023
+ #~ msgid "Add a language"
1024
+ #~ msgstr "言語の追加"
1025
+
1026
+ #~ msgid "Change the names of the contact form fields and error messages"
1027
+ #~ msgstr "コンタクト・フォームのフィールドの名前及びエラーメッセージを変更"
1028
+
1029
+ #~ msgid "English"
1030
+ #~ msgstr "英語"
1031
+
1032
+ #~ msgid "Error message for the Name field"
1033
+ #~ msgstr "名前フィールド用のエラーメッセージ"
1034
+
1035
+ #~ msgid "Error message for the Address field"
1036
+ #~ msgstr "住所フィールド用のエラーメッセージ"
1037
+
1038
+ #~ msgid "Error message for the Email field"
1039
+ #~ msgstr "Eメール・フィールド用のエラーメッセージ"
1040
+
1041
+ #~ msgid "Error message for the Phone field"
1042
+ #~ msgstr "電話フィールド用のエラーメッセージ"
1043
+
1044
+ #~ msgid "Error message for the Subject field"
1045
+ #~ msgstr "件名フィールド用のエラーメッセージ"
1046
+
1047
+ #~ msgid "Error message for the Message field"
1048
+ #~ msgstr "メッセージ・フィールド用のエラーメッセージ"
1049
+
1050
+ #~ msgid "Error message about the file type for the Attachment field"
1051
+ #~ msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
1052
+
1053
+ #~ msgid ""
1054
+ #~ "Error message while uploading a file for the Attachment field to the "
1055
+ #~ "server"
1056
+ #~ msgstr ""
1057
+ #~ "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
1058
+
1059
+ #~ msgid "Error message while moving the file for the Attachment field"
1060
+ #~ msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
1061
+
1062
+ #~ msgid ""
1063
+ #~ "Error message when file size limit for the Attachment field is exceeded"
1064
+ #~ msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
1065
+
1066
+ #~ msgid "Error message for the Captcha field"
1067
+ #~ msgstr "Captcha フィールド用のエラーメッセージ"
1068
+
1069
+ #~ msgid "Error message for the whole form"
1070
+ #~ msgstr "全体フォーム用のエラーメッセージ"
1071
+
1072
+ #~ msgid "for this language"
1073
+ #~ msgstr "この言語用"
1074
+
1075
+ #~ msgid "Action after email is sent"
1076
+ #~ msgstr "メール送信後の行動"
1077
+
1078
+ #~ msgid "Display text"
1079
+ #~ msgstr "テキストを表示"
1080
+
1081
+ #~ msgid "Text"
1082
+ #~ msgstr "文字"
1083
+
1084
+ #~ msgid "Redirect to the page"
1085
+ #~ msgstr "ページに転送"
1086
+
1087
+ #~ msgid "Url"
1088
+ #~ msgstr "Url"
1089
+
1090
+ #~ msgid "Contact Form Pro | Extra Settings"
1091
+ #~ msgstr "Contact Form Pro | 追加設定"
1092
+
1093
+ #~ msgid ""
1094
+ #~ "This functionality is available in the Pro version of the plugin. For "
1095
+ #~ "more details, please follow the link"
1096
+ #~ msgstr ""
1097
+ #~ "この機能は、プラグインのProバージョンで利用できます。詳細は、リンクを参照"
1098
+ #~ "して下さい。"
1099
+
1100
+ #~ msgid "Errors output"
1101
+ #~ msgstr "エラー出力"
1102
+
1103
+ #~ msgid "Display error messages"
1104
+ #~ msgstr "エラーメッセージの表示"
1105
+
1106
+ #~ msgid "Color of the input field errors."
1107
+ #~ msgstr "入力フィールド・エラーの色"
1108
+
1109
+ #~ msgid "Display error messages & color of the input field errors"
1110
+ #~ msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
1111
+
1112
+ #~ msgid "Add placeholder to the input blocks"
1113
+ #~ msgstr "プレースホルダーを入力ブロックに追加"
1114
+
1115
+ #~ msgid "Add tooltips"
1116
+ #~ msgstr "ツールチップの追加"
1117
+
1118
+ #~ msgid "Email address"
1119
+ #~ msgstr "Eメール・アドレス"
1120
+
1121
+ #~ msgid "Phone Number"
1122
+ #~ msgstr "電話番号"
1123
+
1124
+ #~ msgid "Attachment"
1125
+ #~ msgstr "添付"
1126
+
1127
+ #~ msgid "Style options"
1128
+ #~ msgstr "スタイル・オプション"
1129
+
1130
+ #~ msgid "Text color"
1131
+ #~ msgstr "文字色"
1132
+
1133
+ #~ msgid "Default"
1134
+ #~ msgstr "標準"
1135
+
1136
+ #~ msgid "Label text color"
1137
+ #~ msgstr "ラベル文字色"
1138
+
1139
+ #~ msgid "Placeholder color"
1140
+ #~ msgstr "プレースホルダ色"
1141
+
1142
+ #~ msgid "Errors color"
1143
+ #~ msgstr "エラーの色"
1144
+
1145
+ #~ msgid "Error text color"
1146
+ #~ msgstr "エラーテキストの色"
1147
+
1148
+ #~ msgid "Background color of the input field errors"
1149
+ #~ msgstr "入力フィールド・エラーの背景色"
1150
+
1151
+ #~ msgid "Border color of the input field errors"
1152
+ #~ msgstr "入力フィールド・エラーの罫線色"
1153
+
1154
+ #~ msgid "Placeholder color of the input field errors"
1155
+ #~ msgstr "入力フィールド・エラー用のプレースホルダ色"
1156
+
1157
+ #~ msgid "Input fields"
1158
+ #~ msgstr "フィールドを入力"
1159
+
1160
+ #~ msgid "Input fields background color"
1161
+ #~ msgstr "フィールドの背景色の入力"
1162
+
1163
+ #~ msgid "Text fields color"
1164
+ #~ msgstr "文字フィールド色"
1165
+
1166
+ #~ msgid "Border width in px, numbers only"
1167
+ #~ msgstr "罫線幅(px単位)、数値のみ"
1168
+
1169
+ #~ msgid "Border color"
1170
+ #~ msgstr "罫線色"
1171
+
1172
+ #~ msgid "Width in px, numbers only"
1173
+ #~ msgstr "px単位の幅、数字のみ"
1174
+
1175
+ #~ msgid "Button color"
1176
+ #~ msgstr "ボタンの色"
1177
+
1178
+ #~ msgid "Button text color"
1179
+ #~ msgstr "ボタン文字の色"
1180
+
1181
+ #~ msgid "Contact Form Pro | Preview"
1182
+ #~ msgstr "Contact Form Pro | プレビュー"
1183
+
1184
+ #~ msgid "Show with errors"
1185
+ #~ msgstr "エラーで表示"
1186
+
1187
+ #~ msgid "Please enter your full name..."
1188
+ #~ msgstr "貴方の氏名を入力して下さい..."
1189
+
1190
+ #~ msgid "Please enter your address..."
1191
+ #~ msgstr "貴方の住所を入力して下さい..."
1192
+
1193
+ #~ msgid "Please enter your email address..."
1194
+ #~ msgstr "貴方のEメール・アドレスを入力して下さい..."
1195
+
1196
+ #~ msgid "Please enter your phone number..."
1197
+ #~ msgstr "貴方の電話番号を入力して下さい..."
1198
+
1199
+ #~ msgid "Please enter subject..."
1200
+ #~ msgstr "件名を入力して下さい..."
1201
+
1202
+ #~ msgid ""
1203
+ #~ "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
1204
+ #~ "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file "
1205
+ #~ "size: 2MB"
1206
+ #~ msgstr ""
1207
+ #~ "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, "
1208
+ #~ "BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. 最大"
1209
+ #~ "ファイルサイズ: 2MB"
1210
+
1211
+ #~ msgid "You can attach the following file formats"
1212
+ #~ msgstr "貴方は、以下のタイプのファイルを添付できます"
1213
+
1214
+ #~ msgid "Contact from"
1215
+ #~ msgstr "コンタクトフォーム"
1216
+
1217
+ #~ msgid "Email"
1218
+ #~ msgstr "Eメール"
1219
+
1220
+ #~ msgid "Site"
1221
+ #~ msgstr "サイト"
1222
+
1223
+ #~ msgid ""
1224
+ #~ "If you can see this MIME, it means that the MIME type is not supported by "
1225
+ #~ "your email client!"
1226
+ #~ msgstr ""
1227
+ #~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
1228
+
1229
+ #~ msgid "Support"
1230
+ #~ msgstr "サポート"
1231
+
1232
+ #~ msgid "Contact Form Options"
1233
+ #~ msgstr "コンタクトフォーム オプション"
1234
+
1235
+ #, fuzzy
1236
+ #~ msgid "Display Attachment tips"
1237
+ #~ msgstr "添付ブロックを表示"
1238
+
1239
+ #~ msgid "Please enter a valid email address. Settings are not saved."
1240
+ #~ msgstr "正確なemailを入力して下さい。設定は保存されません。"
1241
+
1242
+ #, fuzzy
1243
+ #~ msgid "E-Mail Address"
1244
+ #~ msgstr "E-Mail:"
1245
+
1246
+ #~ msgid "E-Mail Addresse:"
1247
+ #~ msgstr "Indirizzo e-mail:"
css/gglcptch.css CHANGED
@@ -15,16 +15,20 @@
15
  .gglcptch table#recaptcha_table {
16
  table-layout: auto !important;
17
  }
 
 
 
 
18
  /* rtl fix recaptcha v1 */
19
  .rtl .gglcptch_v1 .recaptcha_r2_c1 {
20
- background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') -27px 0 no-repeat !important;
21
  }
22
  .rtl .gglcptch_v1 .recaptcha_r2_c2 {
23
- background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') -18px 0 no-repeat !important;
24
  }
25
  .rtl .gglcptch_v1 .recaptcha_r3_c1 {
26
- background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') -9px 0 no-repeat !important;
27
  }
28
  .rtl .gglcptch_v1 .recaptcha_r3_c3 {
29
- background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') 0 0 no-repeat !important;
30
  }
15
  .gglcptch table#recaptcha_table {
16
  table-layout: auto !important;
17
  }
18
+ .gglcptch_v1,
19
+ .gglcptch_v2 {
20
+ min-width: 1px;
21
+ }
22
  /* rtl fix recaptcha v1 */
23
  .rtl .gglcptch_v1 .recaptcha_r2_c1 {
24
+ background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') -27px 0 no-repeat !important;
25
  }
26
  .rtl .gglcptch_v1 .recaptcha_r2_c2 {
27
+ background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') -18px 0 no-repeat !important;
28
  }
29
  .rtl .gglcptch_v1 .recaptcha_r3_c1 {
30
+ background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') -9px 0 no-repeat !important;
31
  }
32
  .rtl .gglcptch_v1 .recaptcha_r3_c3 {
33
+ background: url('https://www.google.com/recaptcha/api/img/red/sprite.png') 0 0 no-repeat !important;
34
  }
google-captcha.php CHANGED
@@ -6,12 +6,12 @@ Description: Plugin Google Captcha intended to prove that the visitor is a human
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
- Version: 1.21
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
13
 
14
- /* © Copyright 2015 BestWebSoft ( http://support.bestwebsoft.com )
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -26,7 +26,6 @@ License: GPLv3 or later
26
  along with this program; if not, write to the Free Software
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
-
30
  /* Add menu page */
31
  if ( ! function_exists( 'gglcptch_admin_menu' ) ) {
32
  function gglcptch_admin_menu() {
@@ -52,7 +51,7 @@ if ( ! function_exists( 'gglcptch_get_allow_url_fopen' ) ) {
52
 
53
  if ( ! function_exists( 'gglcptch_init' ) ) {
54
  function gglcptch_init() {
55
- global $gglcptch_options, $gglcptch_plugin_info;
56
 
57
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
58
  bws_include_init( plugin_basename( __FILE__ ) );
@@ -65,51 +64,6 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
65
 
66
  /* Function check if plugin is compatible with current WP version */
67
  bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglcptch_plugin_info, '3.8', '3.1' );
68
-
69
- /* Get options from the database */
70
- $gglcptch_options = get_option( 'gglcptch_options' );
71
-
72
- if ( ! $gglcptch_options ) {
73
- register_gglcptch_settings();
74
- $gglcptch_options = get_option( 'gglcptch_options' );
75
- }
76
-
77
- /* Add hooks */
78
-
79
- if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
80
- add_action( 'login_enqueue_scripts', 'gglcptch_add_site_script_styles' );
81
-
82
- if ( '1' == $gglcptch_options['login_form'] ) {
83
- add_action( 'login_form', 'gglcptch_login_display' );
84
- add_action( 'authenticate', 'gglcptch_login_check', 21, 1 );
85
- }
86
-
87
- if ( '1' == $gglcptch_options['comments_form'] ) {
88
- add_action( 'comment_form_after_fields', 'gglcptch_commentform_display' );
89
- add_action( 'comment_form_logged_in_after', 'gglcptch_commentform_display' );
90
- add_action( 'pre_comment_on_post', 'gglcptch_commentform_check' );
91
- }
92
-
93
- if ( '1' == $gglcptch_options['reset_pwd_form'] ) {
94
- add_action( 'lostpassword_form', 'gglcptch_login_display' );
95
- add_action( 'lostpassword_post', 'gglcptch_lostpassword_check' );
96
- }
97
-
98
- if ( '1' == $gglcptch_options['registration_form'] ) {
99
- if ( ! is_multisite() ) {
100
- add_action( 'register_form', 'gglcptch_login_display' );
101
- add_action( 'register_post', 'gglcptch_lostpassword_check' );
102
- } else {
103
- add_action( 'signup_extra_fields', 'gglcptch_signup_display' );
104
- add_filter( 'wpmu_validate_user_signup', 'gglcptch_signup_check', 10, 3 );
105
- }
106
- }
107
- }
108
-
109
- if ( '1' == $gglcptch_options['contact_form'] ) {
110
- add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display' );
111
- add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display' );
112
- }
113
  }
114
  }
115
 
@@ -139,27 +93,57 @@ if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
139
  }
140
  }
141
 
142
- /* Add google captcha scripts */
143
- if ( ! function_exists( 'gglcptch_add_site_script_styles' ) ) {
144
- function gglcptch_add_site_script_styles() {
145
- global $gglcptch_plugin_info, $gglcptch_options;
 
 
146
 
147
- if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
148
- $gglcptch_api = "https://www.google.com/recaptcha/api.js?render=explicit&hl=en";
149
- } else {
150
- $gglcptch_api = "//www.google.com/recaptcha/api/js/recaptcha_ajax.js";
 
 
 
151
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
 
153
- wp_enqueue_script( 'gglcptch_api', $gglcptch_api, false, $gglcptch_plugin_info["Version"] );
154
- wp_enqueue_script( 'gglcptch_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ), $gglcptch_plugin_info["Version"] );
 
 
 
155
 
156
- $gglcptch_for_version = ( $gglcptch_options['recaptcha_version'] == 'v2' ) ? '_v2' : '';
 
 
157
 
158
  wp_localize_script( 'gglcptch_script', 'gglcptch', array(
159
  'options' => array(
160
  'version' => $gglcptch_options['recaptcha_version'],
161
  'sitekey' => $gglcptch_options['public_key'],
162
- 'theme' => $gglcptch_options[ 'theme' . $gglcptch_for_version ],
 
163
  ),
164
  'vars' => array(
165
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
@@ -167,11 +151,20 @@ if ( ! function_exists( 'gglcptch_add_site_script_styles' ) ) {
167
  'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' )
168
  )
169
  ) );
 
 
170
 
171
- wp_enqueue_style( 'gglcptch', plugins_url( 'css/gglcptch.css', __FILE__ ), false, $gglcptch_plugin_info["Version"] );
172
-
 
 
 
 
 
 
173
  }
174
  }
 
175
  /* Google catpcha settings */
176
  if ( ! function_exists( 'register_gglcptch_settings' ) ) {
177
  function register_gglcptch_settings() {
@@ -217,6 +210,54 @@ if ( ! function_exists( 'register_gglcptch_settings' ) ) {
217
  }
218
  }
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  if ( ! function_exists( 'gglcptch_plugin_status' ) ) {
221
  function gglcptch_plugin_status( $plugins, $all_plugins, $is_network ) {
222
  $result = array(
@@ -366,21 +407,21 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
366
  </h2>
367
  <?php if ( ! isset( $_GET['action'] ) && ! isset( $_REQUEST['bws_restore_default'] ) ) {
368
  if ( ! gglcptch_get_allow_url_fopen() && $gglcptch_options['recaptcha_version'] == 'v2' ) {
369
- printf( '<div class="error"><p><strong>%s</strong></p></div>',
370
  __( 'Google Captcha version 2 will not work correctly, since the option "allow_url_fopen" is disabled. Please contact your hosting support service.', 'google-captcha' )
371
  );
372
  }
373
  if ( $gglcptch_options['recaptcha_version'] == 'v1' ) {
374
- printf( '<div id="gglcptch_v1_notice" class="updated"><p><strong>%s</strong></p></div>',
375
  __( "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA version 1 features.", 'google-captcha' )
376
  );
377
  }
378
  }
379
  bws_show_settings_notice(); ?>
380
- <div class="updated fade" <?php if ( "" == $message ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
381
- <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
382
  <?php if ( ! empty( $hide_result['message'] ) ) { ?>
383
- <div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
384
  <?php }
385
  if ( ! isset( $_GET['action'] ) ) {
386
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
@@ -607,14 +648,15 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
607
  if ( ! function_exists( 'gglcptch_check_role' ) ) {
608
  function gglcptch_check_role() {
609
  global $current_user, $gglcptch_options;
 
610
  if ( ! is_user_logged_in() )
611
  return false;
 
612
  if ( ! empty( $current_user->roles[0] ) ) {
613
  $role = $current_user->roles[0];
614
- if ( '1' == $gglcptch_options[ $role ] )
615
- return true;
616
- else
617
- return false;
618
  } else
619
  return false;
620
  }
@@ -623,15 +665,13 @@ if ( ! function_exists( 'gglcptch_check_role' ) ) {
623
  /* Display google captcha via shortcode */
624
  if ( ! function_exists( 'gglcptch_display' ) ) {
625
  function gglcptch_display( $content = false ) {
626
- global $gglcptch_options, $gglcptch_count;
627
 
628
- if ( gglcptch_check_role() ){
629
- return;
630
- }
631
 
632
- if ( ! $gglcptch_count ) {
633
  $gglcptch_count = 1;
634
- }
635
 
636
  if ( ! gglcptch_get_allow_url_fopen() && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
637
  $content .= '<div class="gglcptch allow_url_fopen_off"></div>';
@@ -639,7 +679,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
639
  return $content;
640
  }
641
 
642
- $publickey = $gglcptch_options['public_key'];
643
  $privatekey = $gglcptch_options['private_key'];
644
 
645
  $content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
@@ -672,17 +712,47 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
672
  </div>
673
  </div>
674
  </noscript>';
 
675
  } else {
676
  require_once( 'lib/recaptchalib.php' );
677
  $content .= '<div id="gglcptch_recaptcha_' . $gglcptch_count . '" class="gglcptch_recaptcha"></div>';
678
  $content .= gglcptch_recaptcha_get_html( $publickey, null, is_ssl() );
 
679
  }
680
  $content .= '</div>';
681
  $gglcptch_count++;
 
 
 
 
 
 
 
 
 
 
 
 
 
682
  return $content;
683
  }
684
  }
685
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
686
  /* Check google captcha */
687
  if ( ! function_exists( 'gglcptch_check' ) ) {
688
  function gglcptch_check() {
@@ -709,8 +779,6 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
709
 
710
  if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
711
 
712
- $gglcptch_g_recaptcha_response = '';
713
-
714
  if ( ! isset( $_POST["g-recaptcha-response"] ) ) {
715
  return array(
716
  'response' => false,
@@ -721,23 +789,19 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
721
  'response' => false,
722
  'reason' => 'RECAPTCHA_EMPTY_RESPONSE'
723
  );
724
- } else {
725
- $gglcptch_g_recaptcha_response = stripslashes( esc_html( $_POST["g-recaptcha-response"] ) );
726
  }
727
 
728
- require_once( 'lib_v2/recaptchalib.php' );
729
- $reCaptcha = new gglcptch_ReCaptcha( $privatekey );
730
- $resp = $reCaptcha->verifyResponse( $gglcptch_remote_addr, $gglcptch_g_recaptcha_response );
731
 
732
- if ( $resp != null && $resp->success ) {
733
  return array(
734
  'response' => true,
735
- 'reason' => ''
736
  );
737
  } else {
738
  return array(
739
  'response' => false,
740
- 'reason' => 'VERIFICATION_FAILED'
741
  );
742
  }
743
  } else {
@@ -755,7 +819,7 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
755
  );
756
  } else {
757
  $gglcptch_recaptcha_challenge_field = stripslashes( esc_html( $_POST['recaptcha_challenge_field'] ) );
758
- $gglcptch_recaptcha_response_field = stripslashes( esc_html( $_POST['recaptcha_response_field'] ) );
759
  }
760
 
761
  require_once( 'lib/recaptchalib.php' );
@@ -811,17 +875,16 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
811
  if ( ! function_exists( 'gglcptch_login_check' ) ) {
812
  function gglcptch_login_check( $user ) {
813
 
 
814
 
815
- $gglcptch_check = gglcptch_check();
816
-
817
- if ( ! $gglcptch_check['response'] ) {
818
- if ( $gglcptch_check['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
819
  return $user;
820
  }
821
 
822
  $error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' ) );
823
 
824
- if ( $gglcptch_check['reason'] == 'VERIFICATION_FAILED' ) {
825
  wp_clear_auth_cookie();
826
  return new WP_Error( 'gglcptch_error', $error_message );
827
  }
@@ -837,22 +900,45 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
837
  }
838
  }
839
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
840
  /* Check google captcha in lostpassword form */
841
  if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
842
- function gglcptch_lostpassword_check() {
843
 
844
- $gglcptch_check = gglcptch_check();
845
 
846
- if ( ! $gglcptch_check['response'] ) {
847
- if ( $gglcptch_check['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
848
- return;
849
- }
850
 
851
- $error_message = sprintf( '%s: %s', __( 'Error', 'google-captcha' ), __( 'You have entered an incorrect reCAPTCHA value. Click the BACK button on your browser, and try again.', 'google-captcha' ) );
852
- wp_die( $error_message );
853
- } else {
854
- return;
855
- }
856
  }
857
  }
858
 
@@ -869,22 +955,19 @@ if ( ! function_exists( 'gglcptch_signup_display' ) ) {
869
  /* Check google captcha in multisite login form */
870
  if ( ! function_exists( 'gglcptch_signup_check' ) ) {
871
  function gglcptch_signup_check( $result ) {
 
872
 
873
- $gglcptch_check = gglcptch_check();
 
874
 
875
- if ( ! $gglcptch_check['response'] ) {
876
- if ( $gglcptch_check['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
877
- return $result;
878
- }
879
 
880
- $errors = $result['errors'];
881
- $error_message = __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' );
882
- $errors->add( 'gglcptch_error', $error_message );
883
  return $result;
884
 
885
- } else {
886
- return $result;
887
- }
888
  }
889
  }
890
 
@@ -901,19 +984,15 @@ if ( ! function_exists( 'gglcptch_commentform_display' ) ) {
901
  /* Check JS enabled for comment form */
902
  if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
903
  function gglcptch_commentform_check() {
904
- if ( isset( $_POST['gglcptch_test_enable_js_field'] ) ) {
905
- if ( wp_verify_nonce( $_POST['gglcptch_test_enable_js_field'], 'gglcptch_recaptcha_nonce' ) )
906
- return;
907
- else {
908
- if ( gglcptch_check_role() )
909
- return;
910
- gglcptch_lostpassword_check();
911
- }
912
- } else {
913
- if ( gglcptch_check_role() )
914
- return;
915
- gglcptch_lostpassword_check();
916
- }
917
  }
918
  }
919
 
@@ -927,12 +1006,8 @@ if ( ! function_exists( 'gglcptch_cf_display' ) ) {
927
  /* Check Google Captcha in shortcode and contact form */
928
  if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
929
  function gglcptch_captcha_check() {
930
- $gglcptch_check = gglcptch_check();
931
- if ( ! $gglcptch_check['response'] ) {
932
- echo "error";
933
- } else {
934
- echo "success";
935
- }
936
  die();
937
  }
938
  }
@@ -1050,11 +1125,13 @@ add_action( 'admin_init', 'gglcptch_admin_init' );
1050
  add_action( 'plugins_loaded', 'gglcptch_plugins_loaded' );
1051
 
1052
  add_action( 'admin_enqueue_scripts', 'gglcptch_add_admin_script_styles' );
1053
- add_action( 'wp_enqueue_scripts', 'gglcptch_add_site_script_styles' );
 
1054
 
1055
  /* custom filter for bws button in tinyMCE */
1056
  add_filter( 'bws_shortcode_button_content', 'gglcptch_shortcode_button_content' );
1057
  add_shortcode( 'bws_google_captcha', 'gglcptch_display' );
 
1058
 
1059
  add_filter( 'plugin_action_links', 'gglcptch_action_links', 10, 2 );
1060
  add_filter( 'plugin_row_meta', 'gglcptch_links', 10, 2 );
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.22
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
13
 
14
+ /* © Copyright 2016 BestWebSoft ( http://support.bestwebsoft.com )
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
26
  along with this program; if not, write to the Free Software
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
 
29
  /* Add menu page */
30
  if ( ! function_exists( 'gglcptch_admin_menu' ) ) {
31
  function gglcptch_admin_menu() {
51
 
52
  if ( ! function_exists( 'gglcptch_init' ) ) {
53
  function gglcptch_init() {
54
+ global $gglcptch_plugin_info;
55
 
56
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
57
  bws_include_init( plugin_basename( __FILE__ ) );
64
 
65
  /* Function check if plugin is compatible with current WP version */
66
  bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglcptch_plugin_info, '3.8', '3.1' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  }
68
  }
69
 
93
  }
94
  }
95
 
96
+ /**
97
+ * Remove dublicate scripts
98
+ */
99
+ if ( ! function_exists( 'gglcptch_remove_dublicate_scripts' ) ) {
100
+ function gglcptch_remove_dublicate_scripts() {
101
+ global $wp_scripts;
102
 
103
+ if ( ! is_object( $wp_scripts ) || empty( $wp_scripts ) )
104
+ return false;
105
+
106
+ foreach( $wp_scripts->registered as $script_name => $args ) {
107
+ if ( preg_match( "|google\.com/recaptcha/api\.js|", $args->src ) && 'gglcptch_api' != $script_name )
108
+ /* remove a previously enqueued script */
109
+ wp_dequeue_script( $script_name );
110
  }
111
+ }
112
+ }
113
+
114
+ /**
115
+ * Add google captcha styles
116
+ */
117
+ if ( ! function_exists( 'gglcptch_add_styles' ) ) {
118
+ function gglcptch_add_styles() {
119
+ global $gglcptch_plugin_info;
120
+ wp_enqueue_style( 'gglcptch', plugins_url( 'css/gglcptch.css', __FILE__ ), false, $gglcptch_plugin_info["Version"] );
121
+ }
122
+ }
123
+
124
+ /**
125
+ * Add google captcha js scripts
126
+ */
127
+ if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
128
+ function gglcptch_add_scripts() {
129
+ global $gglcptch_plugin_info, $gglcptch_options;
130
 
131
+ if ( empty( $gglcptch_options ) )
132
+ $gglcptch_options = get_option( 'gglcptch_options' );
133
+
134
+ if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] )
135
+ gglcptch_remove_dublicate_scripts();
136
 
137
+ wp_enqueue_script( 'gglcptch_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'gglcptch_api' ), $gglcptch_plugin_info["Version"], true );
138
+
139
+ $version = $gglcptch_options['recaptcha_version'] == 'v2' ? '_v2' : '';
140
 
141
  wp_localize_script( 'gglcptch_script', 'gglcptch', array(
142
  'options' => array(
143
  'version' => $gglcptch_options['recaptcha_version'],
144
  'sitekey' => $gglcptch_options['public_key'],
145
+ 'theme' => $gglcptch_options[ 'theme' . $version ],
146
+ 'error' => "<strong>" . __( 'Warning', 'google-captcha' ) . ":</strong>&nbsp;" . __( 'It has been found more than one reCAPTCHA in current form. In this case reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA blocks.', 'google-captcha' )
147
  ),
148
  'vars' => array(
149
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
151
  'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' )
152
  )
153
  ) );
154
+ }
155
+ }
156
 
157
+ /**
158
+ * Add the "async" attribute to our registered script.
159
+ */
160
+ if ( ! function_exists( 'gglcptch_add_async_attribute' ) ) {
161
+ function gglcptch_add_async_attribute( $tag, $handle ) {
162
+ if ( 'gglcptch_api' == $handle )
163
+ $tag = str_replace( ' src', ' async="async" defer="defer" src', $tag );
164
+ return $tag;
165
  }
166
  }
167
+
168
  /* Google catpcha settings */
169
  if ( ! function_exists( 'register_gglcptch_settings' ) ) {
170
  function register_gglcptch_settings() {
210
  }
211
  }
212
 
213
+ global $gglcptch_options;
214
+ if ( ! $gglcptch_options ) {
215
+ $gglcptch_options = get_option( 'gglcptch_options' );
216
+ if ( ! $gglcptch_options ) {
217
+ register_gglcptch_settings();
218
+ $gglcptch_options = get_option( 'gglcptch_options' );
219
+ }
220
+ }
221
+
222
+ /* Add hooks */
223
+ if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
224
+ add_action( 'login_enqueue_scripts', 'gglcptch_add_styles' );
225
+
226
+ if ( '1' == $gglcptch_options['login_form'] ) {
227
+ add_action( 'login_form', 'gglcptch_login_display' );
228
+ add_action( 'authenticate', 'gglcptch_login_check', 21, 1 );
229
+ }
230
+
231
+ if ( '1' == $gglcptch_options['reset_pwd_form'] ) {
232
+ add_action( 'lostpassword_form', 'gglcptch_login_display' );
233
+ add_action( 'allow_password_reset', 'gglcptch_lostpassword_check' );
234
+ }
235
+
236
+ if ( '1' == $gglcptch_options['registration_form'] ) {
237
+ if ( ! is_multisite() ) {
238
+ add_action( 'register_form', 'gglcptch_login_display' );
239
+ add_action( 'registration_errors', 'gglcptch_lostpassword_check' );
240
+ } else {
241
+ add_action( 'signup_extra_fields', 'gglcptch_signup_display' );
242
+ add_action( 'signup_blogform', 'gglcptch_signup_display' );
243
+ add_filter( 'wpmu_validate_user_signup', 'gglcptch_signup_check' );
244
+ }
245
+ }
246
+ }
247
+
248
+ if ( '1' == $gglcptch_options['comments_form'] ) {
249
+ add_action( 'comment_form_after_fields', 'gglcptch_commentform_display' );
250
+ add_action( 'comment_form_logged_in_after', 'gglcptch_commentform_display' );
251
+ add_action( 'pre_comment_on_post', 'gglcptch_commentform_check' );
252
+ }
253
+
254
+ if ( '1' == $gglcptch_options['contact_form'] ) {
255
+ add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display', 10, 2 );
256
+ add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display', 10, 2 );
257
+ add_filter( 'cntctfrm_check_form', 'gglcptch_recaptcha_check' );
258
+ add_filter( 'cntctfrmpr_check_form', 'gglcptch_recaptcha_check' );
259
+ }
260
+
261
  if ( ! function_exists( 'gglcptch_plugin_status' ) ) {
262
  function gglcptch_plugin_status( $plugins, $all_plugins, $is_network ) {
263
  $result = array(
407
  </h2>
408
  <?php if ( ! isset( $_GET['action'] ) && ! isset( $_REQUEST['bws_restore_default'] ) ) {
409
  if ( ! gglcptch_get_allow_url_fopen() && $gglcptch_options['recaptcha_version'] == 'v2' ) {
410
+ printf( '<div class="error inline"><p><strong>%s</strong></p></div>',
411
  __( 'Google Captcha version 2 will not work correctly, since the option "allow_url_fopen" is disabled. Please contact your hosting support service.', 'google-captcha' )
412
  );
413
  }
414
  if ( $gglcptch_options['recaptcha_version'] == 'v1' ) {
415
+ printf( '<div id="gglcptch_v1_notice" class="updated inline"><p><strong>%s</strong></p></div>',
416
  __( "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA version 1 features.", 'google-captcha' )
417
  );
418
  }
419
  }
420
  bws_show_settings_notice(); ?>
421
+ <div class="updated fade inline" <?php if ( "" == $message ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
422
+ <div class="error inline" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
423
  <?php if ( ! empty( $hide_result['message'] ) ) { ?>
424
+ <div class="updated fade inline"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
425
  <?php }
426
  if ( ! isset( $_GET['action'] ) ) {
427
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
648
  if ( ! function_exists( 'gglcptch_check_role' ) ) {
649
  function gglcptch_check_role() {
650
  global $current_user, $gglcptch_options;
651
+
652
  if ( ! is_user_logged_in() )
653
  return false;
654
+
655
  if ( ! empty( $current_user->roles[0] ) ) {
656
  $role = $current_user->roles[0];
657
+ if ( empty( $gglcptch_options ) )
658
+ $gglcptch_options = get_option( 'gglcptch_options' );
659
+ return isset( $gglcptch_options[ $role ] ) && '1' == $gglcptch_options[ $role ] ? true : false;
 
660
  } else
661
  return false;
662
  }
665
  /* Display google captcha via shortcode */
666
  if ( ! function_exists( 'gglcptch_display' ) ) {
667
  function gglcptch_display( $content = false ) {
668
+ global $gglcptch_options, $gglcptch_count, $gglcptch_plugin_info;
669
 
670
+ if ( empty( $gglcptch_options ) )
671
+ $gglcptch_options = get_option( 'gglcptch_options' );
 
672
 
673
+ if ( ! $gglcptch_count )
674
  $gglcptch_count = 1;
 
675
 
676
  if ( ! gglcptch_get_allow_url_fopen() && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
677
  $content .= '<div class="gglcptch allow_url_fopen_off"></div>';
679
  return $content;
680
  }
681
 
682
+ $publickey = $gglcptch_options['public_key'];
683
  $privatekey = $gglcptch_options['private_key'];
684
 
685
  $content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
712
  </div>
713
  </div>
714
  </noscript>';
715
+ $api_url = "https://www.google.com/recaptcha/api.js";
716
  } else {
717
  require_once( 'lib/recaptchalib.php' );
718
  $content .= '<div id="gglcptch_recaptcha_' . $gglcptch_count . '" class="gglcptch_recaptcha"></div>';
719
  $content .= gglcptch_recaptcha_get_html( $publickey, null, is_ssl() );
720
+ $api_url = "//www.google.com/recaptcha/api/js/recaptcha_ajax.js";
721
  }
722
  $content .= '</div>';
723
  $gglcptch_count++;
724
+
725
+ /* register reCAPTCHA script */
726
+ if ( ! wp_script_is( 'gglcptch_api', 'registered' ) ) {
727
+ wp_register_script( 'gglcptch_api', $api_url, false, $gglcptch_plugin_info["Version"], true );
728
+ add_action( 'wp_footer', 'gglcptch_add_scripts' );
729
+ if (
730
+ '1' == $gglcptch_options['login_form'] ||
731
+ '1' == $gglcptch_options['reset_pwd_form'] ||
732
+ '1' == $gglcptch_options['registration_form']
733
+ )
734
+ add_action( 'login_footer', 'gglcptch_add_scripts' );
735
+ }
736
+
737
  return $content;
738
  }
739
  }
740
 
741
+ if ( ! function_exists( 'gglcptch_get_response' ) ) {
742
+ function gglcptch_get_response( $privatekey, $remote_ip ) {
743
+ $args = array(
744
+ 'body' => array(
745
+ 'secret' => $privatekey,
746
+ 'response' => stripslashes( esc_html( $_POST["g-recaptcha-response"] ) ),
747
+ 'remoteip' => $remote_ip,
748
+ ),
749
+ 'sslverify' => false
750
+ );
751
+ $resp = wp_remote_post( 'https://www.google.com/recaptcha/api/siteverify', $args );
752
+ return json_decode( wp_remote_retrieve_body( $resp ), true );
753
+ }
754
+ }
755
+
756
  /* Check google captcha */
757
  if ( ! function_exists( 'gglcptch_check' ) ) {
758
  function gglcptch_check() {
779
 
780
  if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
781
 
 
 
782
  if ( ! isset( $_POST["g-recaptcha-response"] ) ) {
783
  return array(
784
  'response' => false,
789
  'response' => false,
790
  'reason' => 'RECAPTCHA_EMPTY_RESPONSE'
791
  );
 
 
792
  }
793
 
794
+ $response = gglcptch_get_response( $privatekey, $gglcptch_remote_addr );
 
 
795
 
796
+ if ( isset( $response['success'] ) && !! $response['success'] ) {
797
  return array(
798
  'response' => true,
799
+ 'reason' => ''
800
  );
801
  } else {
802
  return array(
803
  'response' => false,
804
+ 'reason' => 'VERIFICATION_FAILED'
805
  );
806
  }
807
  } else {
819
  );
820
  } else {
821
  $gglcptch_recaptcha_challenge_field = stripslashes( esc_html( $_POST['recaptcha_challenge_field'] ) );
822
+ $gglcptch_recaptcha_response_field = stripslashes( esc_html( $_POST['recaptcha_response_field'] ) );
823
  }
824
 
825
  require_once( 'lib/recaptchalib.php' );
875
  if ( ! function_exists( 'gglcptch_login_check' ) ) {
876
  function gglcptch_login_check( $user ) {
877
 
878
+ $result = gglcptch_check();
879
 
880
+ if ( ! $result['response'] ) {
881
+ if ( $result['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $result['reason'] == 'ERROR_NO_KEYS' ) {
 
 
882
  return $user;
883
  }
884
 
885
  $error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' ) );
886
 
887
+ if ( $result['reason'] == 'VERIFICATION_FAILED' ) {
888
  wp_clear_auth_cookie();
889
  return new WP_Error( 'gglcptch_error', $error_message );
890
  }
900
  }
901
  }
902
 
903
+ /* Check google captcha in BWS Contact Form */
904
+ if ( ! function_exists( 'gglcptch_recaptcha_check' ) ) {
905
+ function gglcptch_recaptcha_check( $display_error = true ) {
906
+ /**
907
+ * this condition is necessary for compatibility
908
+ * with Contact Form ( Free and Pro ) by BestWebsoft plugins versions
909
+ * that use $_POST as parameter for hook ( old versions )
910
+ * apply_filters( 'cntctfrmpr_check_form', $_POST );
911
+ * @deprecated since 1.22
912
+ * @todo remove after some while
913
+ */
914
+ if ( is_array( $display_error ) )
915
+ $display_error = false;
916
+
917
+ $result = gglcptch_check();
918
+
919
+
920
+ if ( $result['response'] || $result['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $result['reason'] == 'ERROR_NO_KEYS' )
921
+ return true;
922
+
923
+ return $display_error ? '<strong>' . __( 'Error', 'google-captcha' ) . '</strong>:&nbsp;' . __( 'You have entered an incorrect reCAPTCHA value', 'google-captcha' ) . '.' : false;
924
+
925
+ }
926
+ }
927
+
928
  /* Check google captcha in lostpassword form */
929
  if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
930
+ function gglcptch_lostpassword_check( $allow ) {
931
 
932
+ $result = gglcptch_check();
933
 
934
+ if ( $result['response'] || $result['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $result['reason'] == 'ERROR_NO_KEYS' )
935
+ return $allow;
 
 
936
 
937
+ if ( ! is_wp_error( $allow ) )
938
+ $allow = new WP_Error();
939
+
940
+ $allow->add( 'gglcptch_error', __( 'ERROR', 'google-captcha' ) . ':&nbsp;' . __( 'You have entered an incorrect reCAPTCHA value', 'google-captcha' ) . '.' );
941
+ return $allow;
942
  }
943
  }
944
 
955
  /* Check google captcha in multisite login form */
956
  if ( ! function_exists( 'gglcptch_signup_check' ) ) {
957
  function gglcptch_signup_check( $result ) {
958
+ global $current_user;
959
 
960
+ if ( is_admin() && ! empty( $current_user->data->ID ) )
961
+ return $result;
962
 
963
+ $check_result = gglcptch_check();
 
 
 
964
 
965
+ if ( $check_result['response'] || $check_result['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $check_result['reason'] == 'ERROR_NO_KEYS' )
 
 
966
  return $result;
967
 
968
+ $error = $result['errors'];
969
+ $error->add( 'gglcptch_error', __( 'ERROR', 'google-captcha' ) . ':&nbsp;' . __( 'You have entered an incorrect reCAPTCHA value', 'google-captcha' ) . '.' );
970
+ return $result;
971
  }
972
  }
973
 
984
  /* Check JS enabled for comment form */
985
  if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
986
  function gglcptch_commentform_check() {
987
+ if ( gglcptch_check_role() )
988
+ return;
989
+
990
+ $result = gglcptch_check();
991
+
992
+ if ( $result['response'] || in_array( $result['reason'], array( 'ERROR_ALLOW_URL_FOPEN', 'ERROR_NO_KEYS' ) ) )
993
+ return;
994
+
995
+ wp_die( __( 'ERROR', 'google-captcha' ) . ':&nbsp;' . __( 'You have entered an incorrect reCAPTCHA value. Click the BACK button on your browser, and try again.', 'google-captcha' ) );
 
 
 
 
996
  }
997
  }
998
 
1006
  /* Check Google Captcha in shortcode and contact form */
1007
  if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
1008
  function gglcptch_captcha_check() {
1009
+ $result = gglcptch_check();
1010
+ echo $result['response'] ? "success" : "error";
 
 
 
 
1011
  die();
1012
  }
1013
  }
1125
  add_action( 'plugins_loaded', 'gglcptch_plugins_loaded' );
1126
 
1127
  add_action( 'admin_enqueue_scripts', 'gglcptch_add_admin_script_styles' );
1128
+ add_action( 'wp_enqueue_scripts', 'gglcptch_add_styles' );
1129
+ add_filter( 'script_loader_tag', 'gglcptch_add_async_attribute', 10, 2 );
1130
 
1131
  /* custom filter for bws button in tinyMCE */
1132
  add_filter( 'bws_shortcode_button_content', 'gglcptch_shortcode_button_content' );
1133
  add_shortcode( 'bws_google_captcha', 'gglcptch_display' );
1134
+ add_filter('widget_text', 'do_shortcode');
1135
 
1136
  add_filter( 'plugin_action_links', 'gglcptch_action_links', 10, 2 );
1137
  add_filter( 'plugin_row_meta', 'gglcptch_links', 10, 2 );
js/script.js CHANGED
@@ -2,13 +2,80 @@
2
  gglcptch = gglcptch || {};
3
 
4
  gglcptch.prepare = function() {
 
 
 
5
  $( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
6
  var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
7
- gglcptch.display( container );
 
8
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  };
10
 
11
- gglcptch.display = function( container, v1_add_to_last_element ) {
12
  if ( typeof( container ) == 'undefined' || container == '' || typeof( gglcptch.options ) == 'undefined' ) {
13
  return;
14
  }
@@ -21,9 +88,9 @@
21
  Recaptcha.create( gglcptch.options.sitekey, container, { 'theme' : gglcptch.options.theme } );
22
  }
23
  }
24
-
25
  if ( gglcptch_version == 'v2' ) {
26
- var gglcptch_index = grecaptcha.render( container, { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme } );
 
27
  $( '#' + container ).data( 'gglcptch_index', gglcptch_index );
28
  }
29
  };
@@ -32,13 +99,9 @@
32
 
33
  $( document ).ready(function() {
34
 
35
- if ( parseFloat( $.fn.jquery ) >= 1.7 ) {
36
- $( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError );
37
- } else {
38
- $( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', cleanError );
39
- }
40
 
41
- $( 'form' ).not( '[name="loginform"], [name="registerform"], [name="lostpasswordform"], #setupform' ).submit( function( e ) {
42
  var $form = $( this ),
43
  $gglcptch = $form.find( '.gglcptch' ),
44
  $captcha = $gglcptch.filter( '.gglcptch_v1' ).find( '.gglcptch_recaptcha:visible' ),
@@ -128,4 +191,12 @@
128
  }
129
  }
130
 
 
 
 
 
 
 
 
 
131
  })(jQuery, gglcptch);
2
  gglcptch = gglcptch || {};
3
 
4
  gglcptch.prepare = function() {
5
+ /*
6
+ * display reCaptcha for plugin`s block
7
+ */
8
  $( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
9
  var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
10
+ if ( $( this ).is( ':visible' ) )
11
+ gglcptch.display( container );
12
  });
13
+
14
+ /*
15
+ * display reCaptcha for others blocks
16
+ * this part is neccessary because
17
+ * we have disabled the connection to Google reCaptcha API from other plugins
18
+ * via plugin`s php-functionality
19
+ */
20
+ if ( gglcptch.options.version == 'v2' ) {
21
+ $( '.g-recaptcha' ).each( function() {
22
+ /* reCAPTCHA will be generated into the empty block only */
23
+ if ( $( this ).html() === '' && $( this ).text() === '' ) {
24
+
25
+ /* get element`s ID */
26
+ var container = $( this ).attr( 'id' );
27
+
28
+ if ( typeof container == 'undefined' ) {
29
+ container = get_id();
30
+ $( this ).attr( 'id', container );
31
+ }
32
+
33
+ /* get reCapatcha parameters */
34
+ var sitekey = $( this ).attr( 'data-sitekey' ),
35
+ theme = $( this ).attr( 'data-theme' ),
36
+ lang = $( this ).attr( 'data-lang' ),
37
+ size = $( this ).attr( 'data-size' ),
38
+ type = $( this ).attr( 'data-type' ),
39
+ tabindex = $( this ).attr( 'data-tabindex' ),
40
+ callback = $( this ).attr( 'data-callback' ),
41
+ ex_call = $( this ).attr( 'data-expired-callback' ),
42
+ stoken = $( this ).attr( 'data-stoken' ),
43
+ params = [];
44
+
45
+ params['sitekey'] = sitekey ? sitekey : gglcptch.options.sitekey;
46
+ if ( !! theme )
47
+ params['theme'] = theme;
48
+ if ( !! lang )
49
+ params['lang'] = lang;
50
+ if ( !! size )
51
+ params['size'] = size;
52
+ if ( !! type )
53
+ params['type'] = type;
54
+ if ( !! tabindex )
55
+ params['tabindex'] = tabindex;
56
+ if ( !! callback )
57
+ params['callback'] = callback;
58
+ if ( !! ex_call )
59
+ params['expired-callback'] = ex_call;
60
+ if ( !! stoken )
61
+ params['stoken'] = stoken;
62
+
63
+ gglcptch.display( container, false, params );
64
+ }
65
+ });
66
+
67
+ /*
68
+ * count the number of reCAPTCHA blocks in the form
69
+ */
70
+ $( 'form' ).each( function() {
71
+ if ( $( this ).contents().find( 'iframe[title="recaptcha widget"]' ).length > 1 && ! $( this ).children( '.gglcptch_dublicate_error' ).length ) {
72
+ $( this ).prepend( '<div class="gglcptch_dublicate_error error" style="color: red;">'+ gglcptch.options.error + '</div><br />\n' );
73
+ }
74
+ });
75
+ }
76
  };
77
 
78
+ gglcptch.display = function( container, v1_add_to_last_element, params ) {
79
  if ( typeof( container ) == 'undefined' || container == '' || typeof( gglcptch.options ) == 'undefined' ) {
80
  return;
81
  }
88
  Recaptcha.create( gglcptch.options.sitekey, container, { 'theme' : gglcptch.options.theme } );
89
  }
90
  }
 
91
  if ( gglcptch_version == 'v2' ) {
92
+ var parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme },
93
+ gglcptch_index = grecaptcha.render( container, parameters );
94
  $( '#' + container ).data( 'gglcptch_index', gglcptch_index );
95
  }
96
  };
99
 
100
  $( document ).ready(function() {
101
 
102
+ $( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError );
 
 
 
 
103
 
104
+ $( 'form' ).not( '[name="loginform"], [name="registerform"], [name="lostpasswordform"], #setupform, #cntctfrmpr_contact_form, #cntctfrm_contact_form, #commentform' ).submit( function( e ) {
105
  var $form = $( this ),
106
  $gglcptch = $form.find( '.gglcptch' ),
107
  $captcha = $gglcptch.filter( '.gglcptch_v1' ).find( '.gglcptch_recaptcha:visible' ),
191
  }
192
  }
193
 
194
+ function get_id() {
195
+ var id = 'gglcptch_recaptcha_' + Math.floor( Math.random() * 1000 );
196
+ if ( $( '#' + id ).length )
197
+ id = get_id();
198
+ else
199
+ return id;
200
+ }
201
+
202
  })(jQuery, gglcptch);
languages/google-captcha-ar.mo CHANGED
Binary file
languages/google-captcha-ar.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:01+0300\n"
6
- "PO-Revision-Date: 2015-12-10 10:01+0300\n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
@@ -21,77 +21,88 @@ msgstr ""
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: google-captcha.php:34 google-captcha.php:362
25
  msgid "Google Captcha Settings"
26
  msgstr "إعدادات Google Captcha"
27
 
28
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
29
  #, fuzzy
30
  msgid "Error: You have entered an incorrect reCAPTCHA value."
31
  msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
32
 
33
- #: google-captcha.php:270
34
  msgid "Normal"
35
  msgstr ""
36
 
37
- #: google-captcha.php:271
38
  msgid "Compact"
39
  msgstr ""
40
 
41
- #: google-captcha.php:277
42
  msgid "Site key"
43
  msgstr "مفتاح الموقع"
44
 
45
- #: google-captcha.php:282
46
  msgid "Secret Key"
47
  msgstr "المفتاح السري"
48
 
49
- #: google-captcha.php:290
50
  msgid "Login form"
51
  msgstr "فورم تسجيل الدخول"
52
 
53
- #: google-captcha.php:291
54
  msgid "Registration form"
55
  msgstr "فورم التسجيل"
56
 
57
- #: google-captcha.php:292
58
  msgid "Reset password form"
59
  msgstr "فورم إعادة تعيين كلمة السر"
60
 
61
- #: google-captcha.php:293
62
  msgid "Comments form"
63
  msgstr "فورم التعليقات"
64
 
65
- #: google-captcha.php:312
66
  msgid "Enter site key"
67
  msgstr "أدخل مفتاح الموقع"
68
 
69
- #: google-captcha.php:313 google-captcha.php:319
70
  msgid "WARNING: The captcha will not display while you don't fill key fields."
71
  msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
72
 
73
- #: google-captcha.php:318
74
  msgid "Enter secret key"
75
  msgstr "أدخل المفتاح السري"
76
 
77
- #: google-captcha.php:341
78
  msgid "Settings saved"
79
  msgstr "تم حفظ الإعدادات"
80
 
81
- #: google-captcha.php:347
82
  #, fuzzy
83
  msgid "All plugin settings were restored."
84
  msgstr "صفحة إعدادات الإضافة"
85
 
86
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
87
  msgid "Settings"
88
  msgstr "إعدادات"
89
 
90
- #: google-captcha.php:365
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
- #: google-captcha.php:370
95
  #, fuzzy
96
  msgid ""
97
  "Google Captcha version 2 will not work correctly, since the option "
@@ -100,13 +111,13 @@ msgstr ""
100
  "النسخة الثانية من Google Captcha لن تعمل بشكل جيد، في حالة تم تعطيل الدالة "
101
  "\"allow_url_fopen\" في PHP الإستضافة."
102
 
103
- #: google-captcha.php:375
104
  msgid ""
105
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
106
  "version 1 features."
107
  msgstr ""
108
 
109
- #: google-captcha.php:390
110
  #, fuzzy, php-format
111
  msgid ""
112
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -115,7 +126,7 @@ msgstr ""
115
  "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود "
116
  "في المقال أو الصفحة."
117
 
118
- #: google-captcha.php:396
119
  #, php-format
120
  msgid ""
121
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -124,151 +135,160 @@ msgid ""
124
  "your own form , please use the shortcode %s"
125
  msgstr ""
126
 
127
- #: google-captcha.php:404
128
  msgid "Authentication"
129
  msgstr "المصادقة"
130
 
131
- #: google-captcha.php:405
132
  #, fuzzy, php-format
133
  msgid "Before you are able to do something, you must to register %shere%s"
134
  msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
135
 
136
- #: google-captcha.php:406
137
  msgid "Enter site key and secret key, that you get after registration."
138
  msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
139
 
140
- #: google-captcha.php:418
141
  msgid "Options"
142
  msgstr "خيارات"
143
 
144
- #: google-captcha.php:421
145
  msgid "Enable reCAPTCHA for"
146
  msgstr ""
147
 
148
- #: google-captcha.php:425
149
  msgid "WordPress default"
150
  msgstr ""
151
 
152
- #: google-captcha.php:434
153
  msgid "This option is available only for network or for main blog"
154
  msgstr ""
155
 
156
- #: google-captcha.php:442
157
  msgid "Plugins"
158
  msgstr ""
159
 
160
- #: google-captcha.php:450 google-captcha.php:455
161
  #, php-format
162
  msgid "You should %s to use this functionality"
163
  msgstr ""
164
 
165
- #: google-captcha.php:451
166
  msgid "activate"
167
  msgstr ""
168
 
169
- #: google-captcha.php:451
170
  msgid "for network"
171
  msgstr ""
172
 
173
- #: google-captcha.php:456
174
  msgid "download"
175
  msgstr ""
176
 
177
- #: google-captcha.php:468 google-captcha.php:545
178
  msgid "Close"
179
  msgstr ""
180
 
181
- #: google-captcha.php:480 google-captcha.php:581
182
  msgid "Unlock premium options by upgrading to Pro version"
183
  msgstr ""
184
 
185
- #: google-captcha.php:483 google-captcha.php:584
186
  msgid "Learn More"
187
  msgstr ""
188
 
189
- #: google-captcha.php:489
190
  #, php-format
191
  msgid ""
192
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
193
  msgstr ""
194
 
195
- #: google-captcha.php:489 google-captcha.php:982
196
  msgid "FAQ"
197
  msgstr "أسئلة شائعة"
198
 
199
- #: google-captcha.php:494
200
  #, fuzzy
201
  msgid "Hide reCAPTCHA in Comments form for"
202
  msgstr "لنسخة reCAPTCHA"
203
 
204
- #: google-captcha.php:506
205
  #, fuzzy
206
  msgid "reCAPTCHA version"
207
  msgstr "نسخة reCAPTCHA:"
208
 
209
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
210
- #: google-captcha.php:512
211
  msgid "version"
212
  msgstr "النسخة"
213
 
214
- #: google-captcha.php:518 google-captcha.php:531
215
  #, fuzzy
216
  msgid "reCAPTCHA theme"
217
  msgstr "نسخة reCAPTCHA:"
218
 
219
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
220
  #, fuzzy
221
  msgid "for version"
222
  msgstr "النسخة"
223
 
224
- #: google-captcha.php:549
225
  #, fuzzy
226
  msgid "reCAPTCHA language"
227
  msgstr "نسخة reCAPTCHA:"
228
 
229
- #: google-captcha.php:556
230
  msgid "Use the current site language"
231
  msgstr ""
232
 
233
- #: google-captcha.php:556
234
  msgid "Using"
235
  msgstr ""
236
 
237
- #: google-captcha.php:562
238
  #, fuzzy
239
  msgid "reCAPTCHA size"
240
  msgstr "نسخة reCAPTCHA:"
241
 
242
- #: google-captcha.php:591
243
  msgid "Save Changes"
244
  msgstr "حفظ التغييرات"
245
 
246
- #: google-captcha.php:650 google-captcha.php:998
247
  msgid "To use Google Captcha you must get the keys from"
248
  msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
249
 
250
- #: google-captcha.php:651 google-captcha.php:999
251
  msgid "here"
252
  msgstr "هنا"
253
 
254
- #: google-captcha.php:652 google-captcha.php:1000
255
  msgid "and enter them on the"
256
  msgstr "ثم أدخلهم في"
257
 
258
- #: google-captcha.php:654 google-captcha.php:1002
259
  msgid "plugin setting page"
260
  msgstr "صفحة إعدادات الإضافة"
261
 
262
- #: google-captcha.php:822 google-captcha.php:851
263
  msgid "Error"
264
  msgstr "خطأ"
265
 
266
- #: google-captcha.php:822 google-captcha.php:881
267
  #, fuzzy
268
  msgid "You have entered an incorrect reCAPTCHA value."
269
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
270
 
271
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
272
  #, fuzzy
273
  msgid ""
274
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -276,7 +296,7 @@ msgid ""
276
  msgstr ""
277
  "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
278
 
279
- #: google-captcha.php:983
280
  msgid "Support"
281
  msgstr "الدعم الفني"
282
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:28+0300\n"
6
+ "PO-Revision-Date: 2016-02-24 12:28+0300\n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: google-captcha.php:33 google-captcha.php:403
25
  msgid "Google Captcha Settings"
26
  msgstr "إعدادات Google Captcha"
27
 
28
+ #: google-captcha.php:146
29
+ msgid "Warning"
30
+ msgstr ""
31
+
32
+ #: google-captcha.php:146
33
+ msgid ""
34
+ "It has been found more than one reCAPTCHA in current form. In this case "
35
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
36
+ "blocks."
37
+ msgstr ""
38
+
39
+ #: google-captcha.php:150
40
  #, fuzzy
41
  msgid "Error: You have entered an incorrect reCAPTCHA value."
42
  msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
43
 
44
+ #: google-captcha.php:311
45
  msgid "Normal"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:312
49
  msgid "Compact"
50
  msgstr ""
51
 
52
+ #: google-captcha.php:318
53
  msgid "Site key"
54
  msgstr "مفتاح الموقع"
55
 
56
+ #: google-captcha.php:323
57
  msgid "Secret Key"
58
  msgstr "المفتاح السري"
59
 
60
+ #: google-captcha.php:331
61
  msgid "Login form"
62
  msgstr "فورم تسجيل الدخول"
63
 
64
+ #: google-captcha.php:332
65
  msgid "Registration form"
66
  msgstr "فورم التسجيل"
67
 
68
+ #: google-captcha.php:333
69
  msgid "Reset password form"
70
  msgstr "فورم إعادة تعيين كلمة السر"
71
 
72
+ #: google-captcha.php:334
73
  msgid "Comments form"
74
  msgstr "فورم التعليقات"
75
 
76
+ #: google-captcha.php:353
77
  msgid "Enter site key"
78
  msgstr "أدخل مفتاح الموقع"
79
 
80
+ #: google-captcha.php:354 google-captcha.php:360
81
  msgid "WARNING: The captcha will not display while you don't fill key fields."
82
  msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
83
 
84
+ #: google-captcha.php:359
85
  msgid "Enter secret key"
86
  msgstr "أدخل المفتاح السري"
87
 
88
+ #: google-captcha.php:382
89
  msgid "Settings saved"
90
  msgstr "تم حفظ الإعدادات"
91
 
92
+ #: google-captcha.php:388
93
  #, fuzzy
94
  msgid "All plugin settings were restored."
95
  msgstr "صفحة إعدادات الإضافة"
96
 
97
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
98
  msgid "Settings"
99
  msgstr "إعدادات"
100
 
101
+ #: google-captcha.php:406
102
  msgid "Go PRO"
103
  msgstr ""
104
 
105
+ #: google-captcha.php:411
106
  #, fuzzy
107
  msgid ""
108
  "Google Captcha version 2 will not work correctly, since the option "
111
  "النسخة الثانية من Google Captcha لن تعمل بشكل جيد، في حالة تم تعطيل الدالة "
112
  "\"allow_url_fopen\" في PHP الإستضافة."
113
 
114
+ #: google-captcha.php:416
115
  msgid ""
116
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
117
  "version 1 features."
118
  msgstr ""
119
 
120
+ #: google-captcha.php:431
121
  #, fuzzy, php-format
122
  msgid ""
123
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
126
  "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود "
127
  "في المقال أو الصفحة."
128
 
129
+ #: google-captcha.php:437
130
  #, php-format
131
  msgid ""
132
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
135
  "your own form , please use the shortcode %s"
136
  msgstr ""
137
 
138
+ #: google-captcha.php:445
139
  msgid "Authentication"
140
  msgstr "المصادقة"
141
 
142
+ #: google-captcha.php:446
143
  #, fuzzy, php-format
144
  msgid "Before you are able to do something, you must to register %shere%s"
145
  msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
146
 
147
+ #: google-captcha.php:447
148
  msgid "Enter site key and secret key, that you get after registration."
149
  msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
150
 
151
+ #: google-captcha.php:459
152
  msgid "Options"
153
  msgstr "خيارات"
154
 
155
+ #: google-captcha.php:462
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
+ #: google-captcha.php:466
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
+ #: google-captcha.php:475
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
+ #: google-captcha.php:483
168
  msgid "Plugins"
169
  msgstr ""
170
 
171
+ #: google-captcha.php:491 google-captcha.php:496
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
+ #: google-captcha.php:492
177
  msgid "activate"
178
  msgstr ""
179
 
180
+ #: google-captcha.php:492
181
  msgid "for network"
182
  msgstr ""
183
 
184
+ #: google-captcha.php:497
185
  msgid "download"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:509 google-captcha.php:586
189
  msgid "Close"
190
  msgstr ""
191
 
192
+ #: google-captcha.php:521 google-captcha.php:622
193
  msgid "Unlock premium options by upgrading to Pro version"
194
  msgstr ""
195
 
196
+ #: google-captcha.php:524 google-captcha.php:625
197
  msgid "Learn More"
198
  msgstr ""
199
 
200
+ #: google-captcha.php:530
201
  #, php-format
202
  msgid ""
203
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
204
  msgstr ""
205
 
206
+ #: google-captcha.php:530 google-captcha.php:1057
207
  msgid "FAQ"
208
  msgstr "أسئلة شائعة"
209
 
210
+ #: google-captcha.php:535
211
  #, fuzzy
212
  msgid "Hide reCAPTCHA in Comments form for"
213
  msgstr "لنسخة reCAPTCHA"
214
 
215
+ #: google-captcha.php:547
216
  #, fuzzy
217
  msgid "reCAPTCHA version"
218
  msgstr "نسخة reCAPTCHA:"
219
 
220
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
221
+ #: google-captcha.php:553
222
  msgid "version"
223
  msgstr "النسخة"
224
 
225
+ #: google-captcha.php:559 google-captcha.php:572
226
  #, fuzzy
227
  msgid "reCAPTCHA theme"
228
  msgstr "نسخة reCAPTCHA:"
229
 
230
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
231
  #, fuzzy
232
  msgid "for version"
233
  msgstr "النسخة"
234
 
235
+ #: google-captcha.php:590
236
  #, fuzzy
237
  msgid "reCAPTCHA language"
238
  msgstr "نسخة reCAPTCHA:"
239
 
240
+ #: google-captcha.php:597
241
  msgid "Use the current site language"
242
  msgstr ""
243
 
244
+ #: google-captcha.php:597
245
  msgid "Using"
246
  msgstr ""
247
 
248
+ #: google-captcha.php:603
249
  #, fuzzy
250
  msgid "reCAPTCHA size"
251
  msgstr "نسخة reCAPTCHA:"
252
 
253
+ #: google-captcha.php:632
254
  msgid "Save Changes"
255
  msgstr "حفظ التغييرات"
256
 
257
+ #: google-captcha.php:690 google-captcha.php:1073
258
  msgid "To use Google Captcha you must get the keys from"
259
  msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
260
 
261
+ #: google-captcha.php:691 google-captcha.php:1074
262
  msgid "here"
263
  msgstr "هنا"
264
 
265
+ #: google-captcha.php:692 google-captcha.php:1075
266
  msgid "and enter them on the"
267
  msgstr "ثم أدخلهم في"
268
 
269
+ #: google-captcha.php:694 google-captcha.php:1077
270
  msgid "plugin setting page"
271
  msgstr "صفحة إعدادات الإضافة"
272
 
273
+ #: google-captcha.php:885 google-captcha.php:923
274
  msgid "Error"
275
  msgstr "خطأ"
276
 
277
+ #: google-captcha.php:885
278
  #, fuzzy
279
  msgid "You have entered an incorrect reCAPTCHA value."
280
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
281
 
282
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
283
+ #, fuzzy
284
+ msgid "You have entered an incorrect reCAPTCHA value"
285
+ msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
286
+
287
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
288
+ msgid "ERROR"
289
+ msgstr ""
290
+
291
+ #: google-captcha.php:995
292
  #, fuzzy
293
  msgid ""
294
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
296
  msgstr ""
297
  "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
298
 
299
+ #: google-captcha.php:1058
300
  msgid "Support"
301
  msgstr "الدعم الفني"
302
 
languages/google-captcha-bg_BG.mo CHANGED
Binary file
languages/google-captcha-bg_BG.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:01+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
@@ -16,91 +16,102 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:362
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки на Google Captcha"
22
 
23
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
24
  #, fuzzy
25
  msgid "Error: You have entered an incorrect reCAPTCHA value."
26
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
27
 
28
- #: google-captcha.php:270
29
  msgid "Normal"
30
  msgstr ""
31
 
32
- #: google-captcha.php:271
33
  msgid "Compact"
34
  msgstr ""
35
 
36
- #: google-captcha.php:277
37
  msgid "Site key"
38
  msgstr "Ключ"
39
 
40
- #: google-captcha.php:282
41
  msgid "Secret Key"
42
  msgstr "Секретен ключ"
43
 
44
- #: google-captcha.php:290
45
  msgid "Login form"
46
  msgstr "Форма за вход"
47
 
48
- #: google-captcha.php:291
49
  msgid "Registration form"
50
  msgstr "Форма регистрация"
51
 
52
- #: google-captcha.php:292
53
  msgid "Reset password form"
54
  msgstr "Форма за възстановяване на парола"
55
 
56
- #: google-captcha.php:293
57
  msgid "Comments form"
58
  msgstr "Форма за коментиране"
59
 
60
- #: google-captcha.php:312
61
  msgid "Enter site key"
62
  msgstr "Въведете ключ"
63
 
64
- #: google-captcha.php:313 google-captcha.php:319
65
  msgid "WARNING: The captcha will not display while you don't fill key fields."
66
  msgstr ""
67
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
68
  "ключовите полета."
69
 
70
- #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Въведете секретен ключ"
73
 
74
- #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Настройките бяха запазени успешно."
77
 
78
- #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "настройките на плъгина"
82
 
83
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
84
  msgid "Settings"
85
  msgstr "Настройки"
86
 
87
- #: google-captcha.php:365
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
- #: google-captcha.php:370
92
  msgid ""
93
  "Google Captcha version 2 will not work correctly, since the option "
94
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
95
  msgstr ""
96
 
97
- #: google-captcha.php:375
98
  msgid ""
99
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
100
  "version 1 features."
101
  msgstr ""
102
 
103
- #: google-captcha.php:390
104
  #, fuzzy, php-format
105
  msgid ""
106
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -109,7 +120,7 @@ msgstr ""
109
  "Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
110
  "копирайте и поставете този код на желаната публикация или страница:"
111
 
112
- #: google-captcha.php:396
113
  #, php-format
114
  msgid ""
115
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -118,155 +129,164 @@ msgid ""
118
  "your own form , please use the shortcode %s"
119
  msgstr ""
120
 
121
- #: google-captcha.php:404
122
  msgid "Authentication"
123
  msgstr "Идентификация"
124
 
125
- #: google-captcha.php:405
126
  #, fuzzy, php-format
127
  msgid "Before you are able to do something, you must to register %shere%s"
128
  msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
129
 
130
- #: google-captcha.php:406
131
  msgid "Enter site key and secret key, that you get after registration."
132
  msgstr ""
133
  "Въведете ключ и секретен ключ, който взимате след регистрация в Google "
134
  "Captcha."
135
 
136
- #: google-captcha.php:418
137
  msgid "Options"
138
  msgstr "Опции"
139
 
140
- #: google-captcha.php:421
141
  msgid "Enable reCAPTCHA for"
142
  msgstr ""
143
 
144
- #: google-captcha.php:425
145
  msgid "WordPress default"
146
  msgstr ""
147
 
148
- #: google-captcha.php:434
149
  msgid "This option is available only for network or for main blog"
150
  msgstr ""
151
 
152
- #: google-captcha.php:442
153
  #, fuzzy
154
  msgid "Plugins"
155
  msgstr "Страница с плъгини"
156
 
157
- #: google-captcha.php:450 google-captcha.php:455
158
  #, php-format
159
  msgid "You should %s to use this functionality"
160
  msgstr ""
161
 
162
- #: google-captcha.php:451
163
  #, fuzzy
164
  msgid "activate"
165
  msgstr "Активировать Contact form"
166
 
167
- #: google-captcha.php:451
168
  msgid "for network"
169
  msgstr ""
170
 
171
- #: google-captcha.php:456
172
  msgid "download"
173
  msgstr ""
174
 
175
- #: google-captcha.php:468 google-captcha.php:545
176
  msgid "Close"
177
  msgstr ""
178
 
179
- #: google-captcha.php:480 google-captcha.php:581
180
  msgid "Unlock premium options by upgrading to Pro version"
181
  msgstr ""
182
 
183
- #: google-captcha.php:483 google-captcha.php:584
184
  msgid "Learn More"
185
  msgstr ""
186
 
187
- #: google-captcha.php:489
188
  #, php-format
189
  msgid ""
190
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
191
  msgstr ""
192
 
193
- #: google-captcha.php:489 google-captcha.php:982
194
  msgid "FAQ"
195
  msgstr "ЧЗВ"
196
 
197
- #: google-captcha.php:494
198
  #, fuzzy
199
  msgid "Hide reCAPTCHA in Comments form for"
200
  msgstr "за reCAPTCHA версия"
201
 
202
- #: google-captcha.php:506
203
  #, fuzzy
204
  msgid "reCAPTCHA version"
205
  msgstr "Версия на reCAPTCHA:"
206
 
207
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
208
- #: google-captcha.php:512
209
  msgid "version"
210
  msgstr "версия"
211
 
212
- #: google-captcha.php:518 google-captcha.php:531
213
  #, fuzzy
214
  msgid "reCAPTCHA theme"
215
  msgstr "Версия на reCAPTCHA:"
216
 
217
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
218
  #, fuzzy
219
  msgid "for version"
220
  msgstr "версия"
221
 
222
- #: google-captcha.php:549
223
  #, fuzzy
224
  msgid "reCAPTCHA language"
225
  msgstr "Версия на reCAPTCHA:"
226
 
227
- #: google-captcha.php:556
228
  msgid "Use the current site language"
229
  msgstr ""
230
 
231
- #: google-captcha.php:556
232
  msgid "Using"
233
  msgstr ""
234
 
235
- #: google-captcha.php:562
236
  #, fuzzy
237
  msgid "reCAPTCHA size"
238
  msgstr "Версия на reCAPTCHA:"
239
 
240
- #: google-captcha.php:591
241
  msgid "Save Changes"
242
  msgstr "Запази промените"
243
 
244
- #: google-captcha.php:650 google-captcha.php:998
245
  msgid "To use Google Captcha you must get the keys from"
246
  msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
247
 
248
- #: google-captcha.php:651 google-captcha.php:999
249
  msgid "here"
250
  msgstr "тук"
251
 
252
- #: google-captcha.php:652 google-captcha.php:1000
253
  msgid "and enter them on the"
254
  msgstr "и да ги въведете в"
255
 
256
- #: google-captcha.php:654 google-captcha.php:1002
257
  msgid "plugin setting page"
258
  msgstr "настройките на плъгина"
259
 
260
- #: google-captcha.php:822 google-captcha.php:851
261
  msgid "Error"
262
  msgstr ""
263
 
264
- #: google-captcha.php:822 google-captcha.php:881
265
  #, fuzzy
266
  msgid "You have entered an incorrect reCAPTCHA value."
267
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
268
 
269
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
270
  #, fuzzy
271
  msgid ""
272
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -275,7 +295,7 @@ msgstr ""
275
  "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
276
  "браузъра и опитайте отново."
277
 
278
- #: google-captcha.php:983
279
  msgid "Support"
280
  msgstr "Поддръжка"
281
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:28+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:33 google-captcha.php:403
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки на Google Captcha"
22
 
23
+ #: google-captcha.php:146
24
+ msgid "Warning"
25
+ msgstr ""
26
+
27
+ #: google-captcha.php:146
28
+ msgid ""
29
+ "It has been found more than one reCAPTCHA in current form. In this case "
30
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
+ "blocks."
32
+ msgstr ""
33
+
34
+ #: google-captcha.php:150
35
  #, fuzzy
36
  msgid "Error: You have entered an incorrect reCAPTCHA value."
37
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
38
 
39
+ #: google-captcha.php:311
40
  msgid "Normal"
41
  msgstr ""
42
 
43
+ #: google-captcha.php:312
44
  msgid "Compact"
45
  msgstr ""
46
 
47
+ #: google-captcha.php:318
48
  msgid "Site key"
49
  msgstr "Ключ"
50
 
51
+ #: google-captcha.php:323
52
  msgid "Secret Key"
53
  msgstr "Секретен ключ"
54
 
55
+ #: google-captcha.php:331
56
  msgid "Login form"
57
  msgstr "Форма за вход"
58
 
59
+ #: google-captcha.php:332
60
  msgid "Registration form"
61
  msgstr "Форма регистрация"
62
 
63
+ #: google-captcha.php:333
64
  msgid "Reset password form"
65
  msgstr "Форма за възстановяване на парола"
66
 
67
+ #: google-captcha.php:334
68
  msgid "Comments form"
69
  msgstr "Форма за коментиране"
70
 
71
+ #: google-captcha.php:353
72
  msgid "Enter site key"
73
  msgstr "Въведете ключ"
74
 
75
+ #: google-captcha.php:354 google-captcha.php:360
76
  msgid "WARNING: The captcha will not display while you don't fill key fields."
77
  msgstr ""
78
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
79
  "ключовите полета."
80
 
81
+ #: google-captcha.php:359
82
  msgid "Enter secret key"
83
  msgstr "Въведете секретен ключ"
84
 
85
+ #: google-captcha.php:382
86
  msgid "Settings saved"
87
  msgstr "Настройките бяха запазени успешно."
88
 
89
+ #: google-captcha.php:388
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "настройките на плъгина"
93
 
94
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
95
  msgid "Settings"
96
  msgstr "Настройки"
97
 
98
+ #: google-captcha.php:406
99
  msgid "Go PRO"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:411
103
  msgid ""
104
  "Google Captcha version 2 will not work correctly, since the option "
105
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
106
  msgstr ""
107
 
108
+ #: google-captcha.php:416
109
  msgid ""
110
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
111
  "version 1 features."
112
  msgstr ""
113
 
114
+ #: google-captcha.php:431
115
  #, fuzzy, php-format
116
  msgid ""
117
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
120
  "Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
121
  "копирайте и поставете този код на желаната публикация или страница:"
122
 
123
+ #: google-captcha.php:437
124
  #, php-format
125
  msgid ""
126
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
129
  "your own form , please use the shortcode %s"
130
  msgstr ""
131
 
132
+ #: google-captcha.php:445
133
  msgid "Authentication"
134
  msgstr "Идентификация"
135
 
136
+ #: google-captcha.php:446
137
  #, fuzzy, php-format
138
  msgid "Before you are able to do something, you must to register %shere%s"
139
  msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
140
 
141
+ #: google-captcha.php:447
142
  msgid "Enter site key and secret key, that you get after registration."
143
  msgstr ""
144
  "Въведете ключ и секретен ключ, който взимате след регистрация в Google "
145
  "Captcha."
146
 
147
+ #: google-captcha.php:459
148
  msgid "Options"
149
  msgstr "Опции"
150
 
151
+ #: google-captcha.php:462
152
  msgid "Enable reCAPTCHA for"
153
  msgstr ""
154
 
155
+ #: google-captcha.php:466
156
  msgid "WordPress default"
157
  msgstr ""
158
 
159
+ #: google-captcha.php:475
160
  msgid "This option is available only for network or for main blog"
161
  msgstr ""
162
 
163
+ #: google-captcha.php:483
164
  #, fuzzy
165
  msgid "Plugins"
166
  msgstr "Страница с плъгини"
167
 
168
+ #: google-captcha.php:491 google-captcha.php:496
169
  #, php-format
170
  msgid "You should %s to use this functionality"
171
  msgstr ""
172
 
173
+ #: google-captcha.php:492
174
  #, fuzzy
175
  msgid "activate"
176
  msgstr "Активировать Contact form"
177
 
178
+ #: google-captcha.php:492
179
  msgid "for network"
180
  msgstr ""
181
 
182
+ #: google-captcha.php:497
183
  msgid "download"
184
  msgstr ""
185
 
186
+ #: google-captcha.php:509 google-captcha.php:586
187
  msgid "Close"
188
  msgstr ""
189
 
190
+ #: google-captcha.php:521 google-captcha.php:622
191
  msgid "Unlock premium options by upgrading to Pro version"
192
  msgstr ""
193
 
194
+ #: google-captcha.php:524 google-captcha.php:625
195
  msgid "Learn More"
196
  msgstr ""
197
 
198
+ #: google-captcha.php:530
199
  #, php-format
200
  msgid ""
201
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
202
  msgstr ""
203
 
204
+ #: google-captcha.php:530 google-captcha.php:1057
205
  msgid "FAQ"
206
  msgstr "ЧЗВ"
207
 
208
+ #: google-captcha.php:535
209
  #, fuzzy
210
  msgid "Hide reCAPTCHA in Comments form for"
211
  msgstr "за reCAPTCHA версия"
212
 
213
+ #: google-captcha.php:547
214
  #, fuzzy
215
  msgid "reCAPTCHA version"
216
  msgstr "Версия на reCAPTCHA:"
217
 
218
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
219
+ #: google-captcha.php:553
220
  msgid "version"
221
  msgstr "версия"
222
 
223
+ #: google-captcha.php:559 google-captcha.php:572
224
  #, fuzzy
225
  msgid "reCAPTCHA theme"
226
  msgstr "Версия на reCAPTCHA:"
227
 
228
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
229
  #, fuzzy
230
  msgid "for version"
231
  msgstr "версия"
232
 
233
+ #: google-captcha.php:590
234
  #, fuzzy
235
  msgid "reCAPTCHA language"
236
  msgstr "Версия на reCAPTCHA:"
237
 
238
+ #: google-captcha.php:597
239
  msgid "Use the current site language"
240
  msgstr ""
241
 
242
+ #: google-captcha.php:597
243
  msgid "Using"
244
  msgstr ""
245
 
246
+ #: google-captcha.php:603
247
  #, fuzzy
248
  msgid "reCAPTCHA size"
249
  msgstr "Версия на reCAPTCHA:"
250
 
251
+ #: google-captcha.php:632
252
  msgid "Save Changes"
253
  msgstr "Запази промените"
254
 
255
+ #: google-captcha.php:690 google-captcha.php:1073
256
  msgid "To use Google Captcha you must get the keys from"
257
  msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
258
 
259
+ #: google-captcha.php:691 google-captcha.php:1074
260
  msgid "here"
261
  msgstr "тук"
262
 
263
+ #: google-captcha.php:692 google-captcha.php:1075
264
  msgid "and enter them on the"
265
  msgstr "и да ги въведете в"
266
 
267
+ #: google-captcha.php:694 google-captcha.php:1077
268
  msgid "plugin setting page"
269
  msgstr "настройките на плъгина"
270
 
271
+ #: google-captcha.php:885 google-captcha.php:923
272
  msgid "Error"
273
  msgstr ""
274
 
275
+ #: google-captcha.php:885
276
  #, fuzzy
277
  msgid "You have entered an incorrect reCAPTCHA value."
278
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
279
 
280
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
281
+ #, fuzzy
282
+ msgid "You have entered an incorrect reCAPTCHA value"
283
+ msgstr "Грешка: Въвели сте невалиден анти-спам код."
284
+
285
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
286
+ msgid "ERROR"
287
+ msgstr ""
288
+
289
+ #: google-captcha.php:995
290
  #, fuzzy
291
  msgid ""
292
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
295
  "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
296
  "браузъра и опитайте отново."
297
 
298
+ #: google-captcha.php:1058
299
  msgid "Support"
300
  msgstr "Поддръжка"
301
 
languages/google-captcha-cs_CZ.mo ADDED
Binary file
languages/google-captcha-cs_CZ.po ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:28+0300\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
+ "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
+ "Language: cs_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: google-captcha.php:33 google-captcha.php:403
20
+ msgid "Google Captcha Settings"
21
+ msgstr "Nastavení Google Captcha"
22
+
23
+ #: google-captcha.php:146
24
+ msgid "Warning"
25
+ msgstr ""
26
+
27
+ #: google-captcha.php:146
28
+ msgid ""
29
+ "It has been found more than one reCAPTCHA in current form. In this case "
30
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
+ "blocks."
32
+ msgstr ""
33
+
34
+ #: google-captcha.php:150
35
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
36
+ msgstr "Chyba: Zadali jste nesprávnou hodnotu reCAPTCHA ."
37
+
38
+ #: google-captcha.php:311
39
+ msgid "Normal"
40
+ msgstr "Normální"
41
+
42
+ #: google-captcha.php:312
43
+ msgid "Compact"
44
+ msgstr "Kompaktní"
45
+
46
+ #: google-captcha.php:318
47
+ msgid "Site key"
48
+ msgstr "Klíč serveru"
49
+
50
+ #: google-captcha.php:323
51
+ msgid "Secret Key"
52
+ msgstr "Tajný klíč:"
53
+
54
+ #: google-captcha.php:331
55
+ msgid "Login form"
56
+ msgstr "Přihlašovací formulář"
57
+
58
+ #: google-captcha.php:332
59
+ msgid "Registration form"
60
+ msgstr "Registrační formulář"
61
+
62
+ #: google-captcha.php:333
63
+ msgid "Reset password form"
64
+ msgstr "Formulář pro resetování hesla "
65
+
66
+ #: google-captcha.php:334
67
+ msgid "Comments form"
68
+ msgstr "Formulář komentářů"
69
+
70
+ #: google-captcha.php:353
71
+ msgid "Enter site key"
72
+ msgstr "Zadejte klíč serveru"
73
+
74
+ #: google-captcha.php:354 google-captcha.php:360
75
+ msgid "WARNING: The captcha will not display while you don't fill key fields."
76
+ msgstr "VAROVÁNÍ: Captcha se nezobrazí, když nejsou vyplněná pole s klíči."
77
+
78
+ #: google-captcha.php:359
79
+ msgid "Enter secret key"
80
+ msgstr "Zadejte tajný klíč"
81
+
82
+ #: google-captcha.php:382
83
+ msgid "Settings saved"
84
+ msgstr "Nastavení uloženo"
85
+
86
+ #: google-captcha.php:388
87
+ msgid "All plugin settings were restored."
88
+ msgstr "Výchozí nastavení pluginu bylo obnoveno."
89
+
90
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
91
+ msgid "Settings"
92
+ msgstr "Nastavení"
93
+
94
+ #: google-captcha.php:406
95
+ msgid "Go PRO"
96
+ msgstr "Získat verzi Pro"
97
+
98
+ #: google-captcha.php:411
99
+ msgid ""
100
+ "Google Captcha version 2 will not work correctly, since the option "
101
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
102
+ msgstr ""
103
+ "Google Captcha verze 2 nebude fungovat správně, protože je zakázána možnost "
104
+ "\"allow_url_fopen\". Obraťte se na podporu vašeho poskytovatele hostingové "
105
+ "služby."
106
+
107
+ #: google-captcha.php:416
108
+ msgid ""
109
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
+ "version 1 features."
111
+ msgstr ""
112
+ "Pouze jeden reCAPTCHA lze zobrazit na stránce, to souvisí s funkcí verze 1 "
113
+ "reCAPTCHA."
114
+
115
+ #: google-captcha.php:431
116
+ #, php-format
117
+ msgid ""
118
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
119
+ "please use %s button"
120
+ msgstr ""
121
+ "Pokud byste chtěli přidat Google Captcha (reCAPTCHA) na vaše stránky nebo "
122
+ "příspěvku, použijte tlačítko %s"
123
+
124
+ #: google-captcha.php:437
125
+ #, php-format
126
+ msgid ""
127
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
128
+ "on %s button in the content edit block using the Visual mode. If the button "
129
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
130
+ "your own form , please use the shortcode %s"
131
+ msgstr ""
132
+ "Na stránku můžete přidat Google Captcha (reCAPTCHA) nebo příspěvek klepnutím "
133
+ "na tlačítko %s v obsahu blok pro úpravy pomocí celoobrazovkového režimu. "
134
+ "Pokud tlačítko není zobrazeno, nebo chcete přidat Google Captcha (reCAPTCHA) "
135
+ "na vlastním formuláři, použijte shortcode %s"
136
+
137
+ #: google-captcha.php:445
138
+ msgid "Authentication"
139
+ msgstr "Autentizace"
140
+
141
+ #: google-captcha.php:446
142
+ #, php-format
143
+ msgid "Before you are able to do something, you must to register %shere%s"
144
+ msgstr ""
145
+ "Nejdříve, než budete schopni něco udělat, musíte se zaregistrovat % szde %s"
146
+
147
+ #: google-captcha.php:447
148
+ msgid "Enter site key and secret key, that you get after registration."
149
+ msgstr "Zadejte klíč serveru a tajný klíč, které obdržíte po registraci."
150
+
151
+ #: google-captcha.php:459
152
+ msgid "Options"
153
+ msgstr "Možnosti"
154
+
155
+ #: google-captcha.php:462
156
+ msgid "Enable reCAPTCHA for"
157
+ msgstr "Povolit reCAPTCHA pro"
158
+
159
+ #: google-captcha.php:466
160
+ msgid "WordPress default"
161
+ msgstr "Výchozí WordPress"
162
+
163
+ #: google-captcha.php:475
164
+ msgid "This option is available only for network or for main blog"
165
+ msgstr "Tato možnost je k dispozici pouze pro síť nebo pro hlavní blog"
166
+
167
+ #: google-captcha.php:483
168
+ msgid "Plugins"
169
+ msgstr "Pluginy"
170
+
171
+ #: google-captcha.php:491 google-captcha.php:496
172
+ #, php-format
173
+ msgid "You should %s to use this functionality"
174
+ msgstr "Měli byste použít tuto %s funkci"
175
+
176
+ #: google-captcha.php:492
177
+ msgid "activate"
178
+ msgstr "Aktivování"
179
+
180
+ #: google-captcha.php:492
181
+ msgid "for network"
182
+ msgstr "pro síť"
183
+
184
+ #: google-captcha.php:497
185
+ msgid "download"
186
+ msgstr "stáhnout"
187
+
188
+ #: google-captcha.php:509 google-captcha.php:586
189
+ msgid "Close"
190
+ msgstr "Zavřít"
191
+
192
+ #: google-captcha.php:521 google-captcha.php:622
193
+ msgid "Unlock premium options by upgrading to Pro version"
194
+ msgstr "Odemknout prémiové možnosti po aktualizaci na verzi Pro"
195
+
196
+ #: google-captcha.php:524 google-captcha.php:625
197
+ msgid "Learn More"
198
+ msgstr "Více informací"
199
+
200
+ #: google-captcha.php:530
201
+ #, php-format
202
+ msgid ""
203
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
204
+ msgstr ""
205
+ "Pokud byste chtěli přidat Google Captcha (reCAPTCHA) do vlastního formuláře "
206
+ "viz %s"
207
+
208
+ #: google-captcha.php:530 google-captcha.php:1057
209
+ msgid "FAQ"
210
+ msgstr "Často kladené otázky"
211
+
212
+ #: google-captcha.php:535
213
+ msgid "Hide reCAPTCHA in Comments form for"
214
+ msgstr "Skrýt reCAPTCHA ve formuláři komentářů pro"
215
+
216
+ #: google-captcha.php:547
217
+ msgid "reCAPTCHA version"
218
+ msgstr "Verze reCAPTCHA "
219
+
220
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
221
+ #: google-captcha.php:553
222
+ msgid "version"
223
+ msgstr "verze"
224
+
225
+ #: google-captcha.php:559 google-captcha.php:572
226
+ msgid "reCAPTCHA theme"
227
+ msgstr "Vzhled reCAPTCHA"
228
+
229
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
230
+ msgid "for version"
231
+ msgstr "pro verzi"
232
+
233
+ #: google-captcha.php:590
234
+ msgid "reCAPTCHA language"
235
+ msgstr "reCAPTCHA jazyk"
236
+
237
+ #: google-captcha.php:597
238
+ msgid "Use the current site language"
239
+ msgstr "Použít aktuální jazyk webu"
240
+
241
+ #: google-captcha.php:597
242
+ msgid "Using"
243
+ msgstr "Použití"
244
+
245
+ #: google-captcha.php:603
246
+ msgid "reCAPTCHA size"
247
+ msgstr "Velikost reCAPTCHA "
248
+
249
+ #: google-captcha.php:632
250
+ msgid "Save Changes"
251
+ msgstr "Uložit změny"
252
+
253
+ #: google-captcha.php:690 google-captcha.php:1073
254
+ msgid "To use Google Captcha you must get the keys from"
255
+ msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
256
+
257
+ #: google-captcha.php:691 google-captcha.php:1074
258
+ msgid "here"
259
+ msgstr "zde"
260
+
261
+ #: google-captcha.php:692 google-captcha.php:1075
262
+ msgid "and enter them on the"
263
+ msgstr "a zadejte je v"
264
+
265
+ #: google-captcha.php:694 google-captcha.php:1077
266
+ msgid "plugin setting page"
267
+ msgstr "stránka nastavení pluginu"
268
+
269
+ #: google-captcha.php:885 google-captcha.php:923
270
+ msgid "Error"
271
+ msgstr "Chyba"
272
+
273
+ #: google-captcha.php:885
274
+ msgid "You have entered an incorrect reCAPTCHA value."
275
+ msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
276
+
277
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
278
+ #, fuzzy
279
+ msgid "You have entered an incorrect reCAPTCHA value"
280
+ msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
281
+
282
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
283
+ msgid "ERROR"
284
+ msgstr ""
285
+
286
+ #: google-captcha.php:995
287
+ msgid ""
288
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
289
+ "browser, and try again."
290
+ msgstr ""
291
+ "Zadali jste nesprávnou hodnotu reCAPTCHA . Klepněte na tlačítko zpět ve "
292
+ "vašem prohlížeči a opakujte akci."
293
+
294
+ #: google-captcha.php:1058
295
+ msgid "Support"
296
+ msgstr "Podpora"
297
+
298
+ #~ msgid ""
299
+ #~ "Google Captcha version 2 will not work correctly, since the option "
300
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
301
+ #~ msgstr ""
302
+ #~ "Google Captcha версии 2 не будет работать корректно, потому что отключена "
303
+ #~ "опция \"allow_url_fopen\" в настройках PHP вашего хостинга."
304
+
305
+ #~ msgid "Read more."
306
+ #~ msgstr "Подробнее."
307
+
308
+ #~ msgid "powered by"
309
+ #~ msgstr "разработано компанией"
310
+
311
+ #~ msgid "Activate"
312
+ #~ msgstr "Активировать"
313
+
314
+ #~ msgid "Download"
315
+ #~ msgstr "Скачать"
316
+
317
+ #~ msgid "Enable CAPTCHA"
318
+ #~ msgstr "Включить CAPTCHA"
319
+
320
+ #~ msgid "You should"
321
+ #~ msgstr "Вам нужно"
322
+
323
+ #~ msgid "Notice:"
324
+ #~ msgstr "Обратите внимание:"
325
+
326
+ #~ msgid ""
327
+ #~ "The plugin's settings have been changed. In order to save them please "
328
+ #~ "don't forget to click the 'Save Changes' button."
329
+ #~ msgstr ""
330
+ #~ "Настройки плагина были изменены. Для того, чтобы сохранить их, "
331
+ #~ "пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
332
+
333
+ #~ msgid "Contact form"
334
+ #~ msgstr "Contact form"
335
+
336
+ #~ msgid "Activate contact form"
337
+ #~ msgstr "Активировать Contact form"
338
+
339
+ #~ msgid "Download contact form"
340
+ #~ msgstr "Скачать Contact form"
341
+
342
+ #~ msgid "Google Captcha"
343
+ #~ msgstr "Google Captcha"
344
+
345
+ #~ msgid "Enable Google Captcha for:"
346
+ #~ msgstr "Отображать Google Captcha для:"
347
+
348
+ #~ msgid "Hide captcha for:"
349
+ #~ msgstr "Не показывать Google Captcha для:"
350
+
351
+ #~ msgid "Theme:"
352
+ #~ msgstr "Тема:"
353
+
354
+ #~ msgid ""
355
+ #~ "An unexpected error has occurred. If this message appears again, please "
356
+ #~ "contact the Administrator."
357
+ #~ msgstr ""
358
+ #~ "Произошла непредвиденная ошибка, если вы постоянно видите это сообщение "
359
+ #~ "свяжитесь с Администратором."
360
+
361
+ #~ msgid "requires"
362
+ #~ msgstr "требует"
363
+
364
+ #~ msgid ""
365
+ #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
366
+ #~ "and try again."
367
+ #~ msgstr ""
368
+ #~ "или выше, поэтому плагин был деактивирован! Обновите WordPress и "
369
+ #~ "повторите попытку."
370
+
371
+ #~ msgid "Back to the WordPress"
372
+ #~ msgstr "Вернуться назад на WordPress"
373
+
374
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
375
+ #~ msgstr ""
376
+ #~ "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
377
+
378
+ #~ msgid "Rate the plugin"
379
+ #~ msgstr "Оценить плагин"
380
+
381
+ #~ msgid "If there is something wrong about it, please contact us"
382
+ #~ msgstr "Если у вас есть какие-то вопросы, обращайтесь"
383
+
384
+ #~ msgid "Public Key"
385
+ #~ msgstr "Открытый ключ"
386
+
387
+ #~ msgid "Private Key"
388
+ #~ msgstr "Закрытый ключ"
389
+
390
+ #~ msgid "Enter public key"
391
+ #~ msgstr "Введите открытый ключ"
392
+
393
+ #, fuzzy
394
+ #~ msgid "Themes"
395
+ #~ msgstr "Тема:"
396
+
397
+ #~ msgid "WARNING: The captcha will not display while you not fill key fields."
398
+ #~ msgstr ""
399
+ #~ "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
400
+ #~ "ключевые поля."
languages/google-captcha-de_DE.mo CHANGED
Binary file
languages/google-captcha-de_DE.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
@@ -17,79 +17,90 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:362
21
  msgid "Google Captcha Settings"
22
  msgstr "Google Captcha-Einstellungen"
23
 
24
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
25
  #, fuzzy
26
  msgid "Error: You have entered an incorrect reCAPTCHA value."
27
  msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
- #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Site-Schlüssel"
40
 
41
- #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Geheimer Schlüssel"
44
 
45
- #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Login Formular"
48
 
49
- #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Registrierungsformular"
52
 
53
- #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Passwort Forumlar zurücksetzen"
56
 
57
- #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Kommentarformular"
60
 
61
- #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Geben Sie den Site-Schlüssel ein"
64
 
65
- #: google-captcha.php:313 google-captcha.php:319
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
  msgstr ""
68
  "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
69
  "ausgefüllt sind!"
70
 
71
- #: google-captcha.php:318
72
  msgid "Enter secret key"
73
  msgstr "Geben Sie den geheimen Schlüssel ein"
74
 
75
- #: google-captcha.php:341
76
  msgid "Settings saved"
77
  msgstr "Einstellungen gespeichert"
78
 
79
- #: google-captcha.php:347
80
  #, fuzzy
81
  msgid "All plugin settings were restored."
82
  msgstr "Plugin Einstellungsseite"
83
 
84
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
85
  msgid "Settings"
86
  msgstr "Einstellungen"
87
 
88
- #: google-captcha.php:365
89
  msgid "Go PRO"
90
  msgstr ""
91
 
92
- #: google-captcha.php:370
93
  #, fuzzy
94
  msgid ""
95
  "Google Captcha version 2 will not work correctly, since the option "
@@ -99,13 +110,13 @@ msgstr ""
99
  "\"Allow_url_fopen\" in den PHP-Einstellungen von Ihrem hosting deaktiviert "
100
  "ist."
101
 
102
- #: google-captcha.php:375
103
  msgid ""
104
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
105
  "version 1 features."
106
  msgstr ""
107
 
108
- #: google-captcha.php:390
109
  #, fuzzy, php-format
110
  msgid ""
111
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -114,7 +125,7 @@ msgstr ""
114
  "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
115
  "kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
116
 
117
- #: google-captcha.php:396
118
  #, php-format
119
  msgid ""
120
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -123,157 +134,166 @@ msgid ""
123
  "your own form , please use the shortcode %s"
124
  msgstr ""
125
 
126
- #: google-captcha.php:404
127
  msgid "Authentication"
128
  msgstr "Authentifizierung"
129
 
130
- #: google-captcha.php:405
131
  #, fuzzy, php-format
132
  msgid "Before you are able to do something, you must to register %shere%s"
133
  msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
134
 
135
- #: google-captcha.php:406
136
  msgid "Enter site key and secret key, that you get after registration."
137
  msgstr ""
138
  "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
139
  "Registrierung erhalten werden."
140
 
141
- #: google-captcha.php:418
142
  msgid "Options"
143
  msgstr "Optionen"
144
 
145
- #: google-captcha.php:421
146
  msgid "Enable reCAPTCHA for"
147
  msgstr ""
148
 
149
- #: google-captcha.php:425
150
  msgid "WordPress default"
151
  msgstr ""
152
 
153
- #: google-captcha.php:434
154
  msgid "This option is available only for network or for main blog"
155
  msgstr ""
156
 
157
- #: google-captcha.php:442
158
  #, fuzzy
159
  msgid "Plugins"
160
  msgstr "Plugins Seite"
161
 
162
- #: google-captcha.php:450 google-captcha.php:455
163
  #, php-format
164
  msgid "You should %s to use this functionality"
165
  msgstr ""
166
 
167
- #: google-captcha.php:451
168
  #, fuzzy
169
  msgid "activate"
170
  msgstr "Oberfläche aktivieren"
171
 
172
- #: google-captcha.php:451
173
  msgid "for network"
174
  msgstr ""
175
 
176
- #: google-captcha.php:456
177
  msgid "download"
178
  msgstr ""
179
 
180
- #: google-captcha.php:468 google-captcha.php:545
181
  msgid "Close"
182
  msgstr ""
183
 
184
- #: google-captcha.php:480 google-captcha.php:581
185
  msgid "Unlock premium options by upgrading to Pro version"
186
  msgstr ""
187
 
188
- #: google-captcha.php:483 google-captcha.php:584
189
  msgid "Learn More"
190
  msgstr ""
191
 
192
- #: google-captcha.php:489
193
  #, php-format
194
  msgid ""
195
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
196
  msgstr ""
197
 
198
- #: google-captcha.php:489 google-captcha.php:982
199
  msgid "FAQ"
200
  msgstr "FAQ"
201
 
202
- #: google-captcha.php:494
203
  #, fuzzy
204
  msgid "Hide reCAPTCHA in Comments form for"
205
  msgstr "für ReCAPTCHA-version"
206
 
207
- #: google-captcha.php:506
208
  #, fuzzy
209
  msgid "reCAPTCHA version"
210
  msgstr "ReCAPTCHA Version:"
211
 
212
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
213
- #: google-captcha.php:512
214
  msgid "version"
215
  msgstr "Version"
216
 
217
- #: google-captcha.php:518 google-captcha.php:531
218
  #, fuzzy
219
  msgid "reCAPTCHA theme"
220
  msgstr "ReCAPTCHA Version:"
221
 
222
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
223
  #, fuzzy
224
  msgid "for version"
225
  msgstr "Version"
226
 
227
- #: google-captcha.php:549
228
  #, fuzzy
229
  msgid "reCAPTCHA language"
230
  msgstr "ReCAPTCHA Version:"
231
 
232
- #: google-captcha.php:556
233
  msgid "Use the current site language"
234
  msgstr ""
235
 
236
- #: google-captcha.php:556
237
  msgid "Using"
238
  msgstr ""
239
 
240
- #: google-captcha.php:562
241
  #, fuzzy
242
  msgid "reCAPTCHA size"
243
  msgstr "ReCAPTCHA Version:"
244
 
245
- #: google-captcha.php:591
246
  msgid "Save Changes"
247
  msgstr "Änderungen speichern"
248
 
249
- #: google-captcha.php:650 google-captcha.php:998
250
  msgid "To use Google Captcha you must get the keys from"
251
  msgstr ""
252
  "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
253
  "bei"
254
 
255
- #: google-captcha.php:651 google-captcha.php:999
256
  msgid "here"
257
  msgstr "hier"
258
 
259
- #: google-captcha.php:652 google-captcha.php:1000
260
  msgid "and enter them on the"
261
  msgstr "und geben Sie sie ein auf"
262
 
263
- #: google-captcha.php:654 google-captcha.php:1002
264
  msgid "plugin setting page"
265
  msgstr "Plugin Einstellungsseite"
266
 
267
- #: google-captcha.php:822 google-captcha.php:851
268
  msgid "Error"
269
  msgstr "Fehler"
270
 
271
- #: google-captcha.php:822 google-captcha.php:881
272
  #, fuzzy
273
  msgid "You have entered an incorrect reCAPTCHA value."
274
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
275
 
276
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
277
  #, fuzzy
278
  msgid ""
279
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -282,7 +302,7 @@ msgstr ""
282
  "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
283
  "\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
284
 
285
- #: google-captcha.php:983
286
  msgid "Support"
287
  msgstr "Support"
288
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:28+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "Google Captcha-Einstellungen"
23
 
24
+ #: google-captcha.php:146
25
+ msgid "Warning"
26
+ msgstr ""
27
+
28
+ #: google-captcha.php:146
29
+ msgid ""
30
+ "It has been found more than one reCAPTCHA in current form. In this case "
31
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
+ "blocks."
33
+ msgstr ""
34
+
35
+ #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
39
 
40
+ #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:318
49
  msgid "Site key"
50
  msgstr "Site-Schlüssel"
51
 
52
+ #: google-captcha.php:323
53
  msgid "Secret Key"
54
  msgstr "Geheimer Schlüssel"
55
 
56
+ #: google-captcha.php:331
57
  msgid "Login form"
58
  msgstr "Login Formular"
59
 
60
+ #: google-captcha.php:332
61
  msgid "Registration form"
62
  msgstr "Registrierungsformular"
63
 
64
+ #: google-captcha.php:333
65
  msgid "Reset password form"
66
  msgstr "Passwort Forumlar zurücksetzen"
67
 
68
+ #: google-captcha.php:334
69
  msgid "Comments form"
70
  msgstr "Kommentarformular"
71
 
72
+ #: google-captcha.php:353
73
  msgid "Enter site key"
74
  msgstr "Geben Sie den Site-Schlüssel ein"
75
 
76
+ #: google-captcha.php:354 google-captcha.php:360
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
80
  "ausgefüllt sind!"
81
 
82
+ #: google-captcha.php:359
83
  msgid "Enter secret key"
84
  msgstr "Geben Sie den geheimen Schlüssel ein"
85
 
86
+ #: google-captcha.php:382
87
  msgid "Settings saved"
88
  msgstr "Einstellungen gespeichert"
89
 
90
+ #: google-captcha.php:388
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "Plugin Einstellungsseite"
94
 
95
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
96
  msgid "Settings"
97
  msgstr "Einstellungen"
98
 
99
+ #: google-captcha.php:406
100
  msgid "Go PRO"
101
  msgstr ""
102
 
103
+ #: google-captcha.php:411
104
  #, fuzzy
105
  msgid ""
106
  "Google Captcha version 2 will not work correctly, since the option "
110
  "\"Allow_url_fopen\" in den PHP-Einstellungen von Ihrem hosting deaktiviert "
111
  "ist."
112
 
113
+ #: google-captcha.php:416
114
  msgid ""
115
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
116
  "version 1 features."
117
  msgstr ""
118
 
119
+ #: google-captcha.php:431
120
  #, fuzzy, php-format
121
  msgid ""
122
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
125
  "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
126
  "kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
127
 
128
+ #: google-captcha.php:437
129
  #, php-format
130
  msgid ""
131
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
134
  "your own form , please use the shortcode %s"
135
  msgstr ""
136
 
137
+ #: google-captcha.php:445
138
  msgid "Authentication"
139
  msgstr "Authentifizierung"
140
 
141
+ #: google-captcha.php:446
142
  #, fuzzy, php-format
143
  msgid "Before you are able to do something, you must to register %shere%s"
144
  msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
145
 
146
+ #: google-captcha.php:447
147
  msgid "Enter site key and secret key, that you get after registration."
148
  msgstr ""
149
  "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
150
  "Registrierung erhalten werden."
151
 
152
+ #: google-captcha.php:459
153
  msgid "Options"
154
  msgstr "Optionen"
155
 
156
+ #: google-captcha.php:462
157
  msgid "Enable reCAPTCHA for"
158
  msgstr ""
159
 
160
+ #: google-captcha.php:466
161
  msgid "WordPress default"
162
  msgstr ""
163
 
164
+ #: google-captcha.php:475
165
  msgid "This option is available only for network or for main blog"
166
  msgstr ""
167
 
168
+ #: google-captcha.php:483
169
  #, fuzzy
170
  msgid "Plugins"
171
  msgstr "Plugins Seite"
172
 
173
+ #: google-captcha.php:491 google-captcha.php:496
174
  #, php-format
175
  msgid "You should %s to use this functionality"
176
  msgstr ""
177
 
178
+ #: google-captcha.php:492
179
  #, fuzzy
180
  msgid "activate"
181
  msgstr "Oberfläche aktivieren"
182
 
183
+ #: google-captcha.php:492
184
  msgid "for network"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:497
188
  msgid "download"
189
  msgstr ""
190
 
191
+ #: google-captcha.php:509 google-captcha.php:586
192
  msgid "Close"
193
  msgstr ""
194
 
195
+ #: google-captcha.php:521 google-captcha.php:622
196
  msgid "Unlock premium options by upgrading to Pro version"
197
  msgstr ""
198
 
199
+ #: google-captcha.php:524 google-captcha.php:625
200
  msgid "Learn More"
201
  msgstr ""
202
 
203
+ #: google-captcha.php:530
204
  #, php-format
205
  msgid ""
206
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
207
  msgstr ""
208
 
209
+ #: google-captcha.php:530 google-captcha.php:1057
210
  msgid "FAQ"
211
  msgstr "FAQ"
212
 
213
+ #: google-captcha.php:535
214
  #, fuzzy
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr "für ReCAPTCHA-version"
217
 
218
+ #: google-captcha.php:547
219
  #, fuzzy
220
  msgid "reCAPTCHA version"
221
  msgstr "ReCAPTCHA Version:"
222
 
223
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
224
+ #: google-captcha.php:553
225
  msgid "version"
226
  msgstr "Version"
227
 
228
+ #: google-captcha.php:559 google-captcha.php:572
229
  #, fuzzy
230
  msgid "reCAPTCHA theme"
231
  msgstr "ReCAPTCHA Version:"
232
 
233
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
234
  #, fuzzy
235
  msgid "for version"
236
  msgstr "Version"
237
 
238
+ #: google-captcha.php:590
239
  #, fuzzy
240
  msgid "reCAPTCHA language"
241
  msgstr "ReCAPTCHA Version:"
242
 
243
+ #: google-captcha.php:597
244
  msgid "Use the current site language"
245
  msgstr ""
246
 
247
+ #: google-captcha.php:597
248
  msgid "Using"
249
  msgstr ""
250
 
251
+ #: google-captcha.php:603
252
  #, fuzzy
253
  msgid "reCAPTCHA size"
254
  msgstr "ReCAPTCHA Version:"
255
 
256
+ #: google-captcha.php:632
257
  msgid "Save Changes"
258
  msgstr "Änderungen speichern"
259
 
260
+ #: google-captcha.php:690 google-captcha.php:1073
261
  msgid "To use Google Captcha you must get the keys from"
262
  msgstr ""
263
  "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
264
  "bei"
265
 
266
+ #: google-captcha.php:691 google-captcha.php:1074
267
  msgid "here"
268
  msgstr "hier"
269
 
270
+ #: google-captcha.php:692 google-captcha.php:1075
271
  msgid "and enter them on the"
272
  msgstr "und geben Sie sie ein auf"
273
 
274
+ #: google-captcha.php:694 google-captcha.php:1077
275
  msgid "plugin setting page"
276
  msgstr "Plugin Einstellungsseite"
277
 
278
+ #: google-captcha.php:885 google-captcha.php:923
279
  msgid "Error"
280
  msgstr "Fehler"
281
 
282
+ #: google-captcha.php:885
283
  #, fuzzy
284
  msgid "You have entered an incorrect reCAPTCHA value."
285
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
286
 
287
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
288
+ #, fuzzy
289
+ msgid "You have entered an incorrect reCAPTCHA value"
290
+ msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
291
+
292
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
293
+ msgid "ERROR"
294
+ msgstr ""
295
+
296
+ #: google-captcha.php:995
297
  #, fuzzy
298
  msgid ""
299
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
302
  "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
303
  "\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
304
 
305
+ #: google-captcha.php:1058
306
  msgid "Support"
307
  msgstr "Support"
308
 
languages/google-captcha-el.mo CHANGED
Binary file
languages/google-captcha-el.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
@@ -16,79 +16,90 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:362
20
  msgid "Google Captcha Settings"
21
  msgstr "Ρυθμίσεις Google Captcha"
22
 
23
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
24
  #, fuzzy
25
  msgid "Error: You have entered an incorrect reCAPTCHA value."
26
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
27
 
28
- #: google-captcha.php:270
29
  msgid "Normal"
30
  msgstr ""
31
 
32
- #: google-captcha.php:271
33
  msgid "Compact"
34
  msgstr ""
35
 
36
- #: google-captcha.php:277
37
  msgid "Site key"
38
  msgstr "Κλειδί ιστοσελίδας"
39
 
40
- #: google-captcha.php:282
41
  msgid "Secret Key"
42
  msgstr "Μυστικό κλειδί"
43
 
44
- #: google-captcha.php:290
45
  msgid "Login form"
46
  msgstr "Φόρμα εισόδου"
47
 
48
- #: google-captcha.php:291
49
  msgid "Registration form"
50
  msgstr "Φόρμα εγγραφής"
51
 
52
- #: google-captcha.php:292
53
  msgid "Reset password form"
54
  msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
55
 
56
- #: google-captcha.php:293
57
  msgid "Comments form"
58
  msgstr "Φόρμα για σχόλια"
59
 
60
- #: google-captcha.php:312
61
  msgid "Enter site key"
62
  msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
63
 
64
- #: google-captcha.php:313 google-captcha.php:319
65
  msgid "WARNING: The captcha will not display while you don't fill key fields."
66
  msgstr ""
67
  "ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
68
  "πεδία."
69
 
70
- #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Εισάγετε το μυστικό κλειδί"
73
 
74
- #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
77
 
78
- #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
82
 
83
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
84
  msgid "Settings"
85
  msgstr "Ρυθμίσεις"
86
 
87
- #: google-captcha.php:365
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
- #: google-captcha.php:370
92
  #, fuzzy
93
  msgid ""
94
  "Google Captcha version 2 will not work correctly, since the option "
@@ -98,13 +109,13 @@ msgstr ""
98
  "\"allow_url_fopen\" είναι απενεργοποιημένη στις ρυθμίσεις PHP του παρόχου "
99
  "φιλοξενίας σας."
100
 
101
- #: google-captcha.php:375
102
  msgid ""
103
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
104
  "version 1 features."
105
  msgstr ""
106
 
107
- #: google-captcha.php:390
108
  #, fuzzy, php-format
109
  msgid ""
110
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -114,7 +125,7 @@ msgstr ""
114
  "αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
115
  "σελίδα σας:"
116
 
117
- #: google-captcha.php:396
118
  #, php-format
119
  msgid ""
120
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -123,157 +134,166 @@ msgid ""
123
  "your own form , please use the shortcode %s"
124
  msgstr ""
125
 
126
- #: google-captcha.php:404
127
  msgid "Authentication"
128
  msgstr "Πιστοποίηση"
129
 
130
- #: google-captcha.php:405
131
  #, fuzzy, php-format
132
  msgid "Before you are able to do something, you must to register %shere%s"
133
  msgstr ""
134
  "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
135
 
136
- #: google-captcha.php:406
137
  msgid "Enter site key and secret key, that you get after registration."
138
  msgstr ""
139
  "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
140
  "παραλάβατε μετά την εγγραφή."
141
 
142
- #: google-captcha.php:418
143
  msgid "Options"
144
  msgstr "Επιλογές"
145
 
146
- #: google-captcha.php:421
147
  msgid "Enable reCAPTCHA for"
148
  msgstr ""
149
 
150
- #: google-captcha.php:425
151
  msgid "WordPress default"
152
  msgstr ""
153
 
154
- #: google-captcha.php:434
155
  msgid "This option is available only for network or for main blog"
156
  msgstr ""
157
 
158
- #: google-captcha.php:442
159
  #, fuzzy
160
  msgid "Plugins"
161
  msgstr "Σελίδα επεκτάσεων"
162
 
163
- #: google-captcha.php:450 google-captcha.php:455
164
  #, php-format
165
  msgid "You should %s to use this functionality"
166
  msgstr ""
167
 
168
- #: google-captcha.php:451
169
  #, fuzzy
170
  msgid "activate"
171
  msgstr "Активировать Contact form"
172
 
173
- #: google-captcha.php:451
174
  msgid "for network"
175
  msgstr ""
176
 
177
- #: google-captcha.php:456
178
  msgid "download"
179
  msgstr ""
180
 
181
- #: google-captcha.php:468 google-captcha.php:545
182
  msgid "Close"
183
  msgstr ""
184
 
185
- #: google-captcha.php:480 google-captcha.php:581
186
  msgid "Unlock premium options by upgrading to Pro version"
187
  msgstr ""
188
 
189
- #: google-captcha.php:483 google-captcha.php:584
190
  msgid "Learn More"
191
  msgstr ""
192
 
193
- #: google-captcha.php:489
194
  #, php-format
195
  msgid ""
196
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
197
  msgstr ""
198
 
199
- #: google-captcha.php:489 google-captcha.php:982
200
  msgid "FAQ"
201
  msgstr "Συχνές Ερωτήσεις"
202
 
203
- #: google-captcha.php:494
204
  #, fuzzy
205
  msgid "Hide reCAPTCHA in Comments form for"
206
  msgstr "για την έκδοση reCAPTCHA"
207
 
208
- #: google-captcha.php:506
209
  #, fuzzy
210
  msgid "reCAPTCHA version"
211
  msgstr "Έκδοση reCAPTCHA:"
212
 
213
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
214
- #: google-captcha.php:512
215
  msgid "version"
216
  msgstr "έκδοση"
217
 
218
- #: google-captcha.php:518 google-captcha.php:531
219
  #, fuzzy
220
  msgid "reCAPTCHA theme"
221
  msgstr "Έκδοση reCAPTCHA:"
222
 
223
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
224
  #, fuzzy
225
  msgid "for version"
226
  msgstr "έκδοση"
227
 
228
- #: google-captcha.php:549
229
  #, fuzzy
230
  msgid "reCAPTCHA language"
231
  msgstr "Έκδοση reCAPTCHA:"
232
 
233
- #: google-captcha.php:556
234
  msgid "Use the current site language"
235
  msgstr ""
236
 
237
- #: google-captcha.php:556
238
  msgid "Using"
239
  msgstr ""
240
 
241
- #: google-captcha.php:562
242
  #, fuzzy
243
  msgid "reCAPTCHA size"
244
  msgstr "Έκδοση reCAPTCHA:"
245
 
246
- #: google-captcha.php:591
247
  msgid "Save Changes"
248
  msgstr "Αποθήκευση αλλαγών"
249
 
250
- #: google-captcha.php:650 google-captcha.php:998
251
  msgid "To use Google Captcha you must get the keys from"
252
  msgstr ""
253
  "Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
254
 
255
- #: google-captcha.php:651 google-captcha.php:999
256
  msgid "here"
257
  msgstr "εδώ"
258
 
259
- #: google-captcha.php:652 google-captcha.php:1000
260
  msgid "and enter them on the"
261
  msgstr "και να τα εισάγετε στη"
262
 
263
- #: google-captcha.php:654 google-captcha.php:1002
264
  msgid "plugin setting page"
265
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
266
 
267
- #: google-captcha.php:822 google-captcha.php:851
268
  msgid "Error"
269
  msgstr ""
270
 
271
- #: google-captcha.php:822 google-captcha.php:881
272
  #, fuzzy
273
  msgid "You have entered an incorrect reCAPTCHA value."
274
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
275
 
276
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
277
  #, fuzzy
278
  msgid ""
279
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -282,7 +302,7 @@ msgstr ""
282
  "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
283
  "στον περιηγητή σας, και δοκιμάστε ξανά."
284
 
285
- #: google-captcha.php:983
286
  msgid "Support"
287
  msgstr "Υποστήριξη"
288
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:28+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:33 google-captcha.php:403
20
  msgid "Google Captcha Settings"
21
  msgstr "Ρυθμίσεις Google Captcha"
22
 
23
+ #: google-captcha.php:146
24
+ msgid "Warning"
25
+ msgstr ""
26
+
27
+ #: google-captcha.php:146
28
+ msgid ""
29
+ "It has been found more than one reCAPTCHA in current form. In this case "
30
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
+ "blocks."
32
+ msgstr ""
33
+
34
+ #: google-captcha.php:150
35
  #, fuzzy
36
  msgid "Error: You have entered an incorrect reCAPTCHA value."
37
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
38
 
39
+ #: google-captcha.php:311
40
  msgid "Normal"
41
  msgstr ""
42
 
43
+ #: google-captcha.php:312
44
  msgid "Compact"
45
  msgstr ""
46
 
47
+ #: google-captcha.php:318
48
  msgid "Site key"
49
  msgstr "Κλειδί ιστοσελίδας"
50
 
51
+ #: google-captcha.php:323
52
  msgid "Secret Key"
53
  msgstr "Μυστικό κλειδί"
54
 
55
+ #: google-captcha.php:331
56
  msgid "Login form"
57
  msgstr "Φόρμα εισόδου"
58
 
59
+ #: google-captcha.php:332
60
  msgid "Registration form"
61
  msgstr "Φόρμα εγγραφής"
62
 
63
+ #: google-captcha.php:333
64
  msgid "Reset password form"
65
  msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
66
 
67
+ #: google-captcha.php:334
68
  msgid "Comments form"
69
  msgstr "Φόρμα για σχόλια"
70
 
71
+ #: google-captcha.php:353
72
  msgid "Enter site key"
73
  msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
74
 
75
+ #: google-captcha.php:354 google-captcha.php:360
76
  msgid "WARNING: The captcha will not display while you don't fill key fields."
77
  msgstr ""
78
  "ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
79
  "πεδία."
80
 
81
+ #: google-captcha.php:359
82
  msgid "Enter secret key"
83
  msgstr "Εισάγετε το μυστικό κλειδί"
84
 
85
+ #: google-captcha.php:382
86
  msgid "Settings saved"
87
  msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
88
 
89
+ #: google-captcha.php:388
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
93
 
94
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
95
  msgid "Settings"
96
  msgstr "Ρυθμίσεις"
97
 
98
+ #: google-captcha.php:406
99
  msgid "Go PRO"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:411
103
  #, fuzzy
104
  msgid ""
105
  "Google Captcha version 2 will not work correctly, since the option "
109
  "\"allow_url_fopen\" είναι απενεργοποιημένη στις ρυθμίσεις PHP του παρόχου "
110
  "φιλοξενίας σας."
111
 
112
+ #: google-captcha.php:416
113
  msgid ""
114
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
115
  "version 1 features."
116
  msgstr ""
117
 
118
+ #: google-captcha.php:431
119
  #, fuzzy, php-format
120
  msgid ""
121
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
125
  "αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
126
  "σελίδα σας:"
127
 
128
+ #: google-captcha.php:437
129
  #, php-format
130
  msgid ""
131
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
134
  "your own form , please use the shortcode %s"
135
  msgstr ""
136
 
137
+ #: google-captcha.php:445
138
  msgid "Authentication"
139
  msgstr "Πιστοποίηση"
140
 
141
+ #: google-captcha.php:446
142
  #, fuzzy, php-format
143
  msgid "Before you are able to do something, you must to register %shere%s"
144
  msgstr ""
145
  "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
146
 
147
+ #: google-captcha.php:447
148
  msgid "Enter site key and secret key, that you get after registration."
149
  msgstr ""
150
  "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
151
  "παραλάβατε μετά την εγγραφή."
152
 
153
+ #: google-captcha.php:459
154
  msgid "Options"
155
  msgstr "Επιλογές"
156
 
157
+ #: google-captcha.php:462
158
  msgid "Enable reCAPTCHA for"
159
  msgstr ""
160
 
161
+ #: google-captcha.php:466
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
+ #: google-captcha.php:475
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
+ #: google-captcha.php:483
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Σελίδα επεκτάσεων"
173
 
174
+ #: google-captcha.php:491 google-captcha.php:496
175
  #, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr ""
178
 
179
+ #: google-captcha.php:492
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "Активировать Contact form"
183
 
184
+ #: google-captcha.php:492
185
  msgid "for network"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:497
189
  msgid "download"
190
  msgstr ""
191
 
192
+ #: google-captcha.php:509 google-captcha.php:586
193
  msgid "Close"
194
  msgstr ""
195
 
196
+ #: google-captcha.php:521 google-captcha.php:622
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr ""
199
 
200
+ #: google-captcha.php:524 google-captcha.php:625
201
  msgid "Learn More"
202
  msgstr ""
203
 
204
+ #: google-captcha.php:530
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
208
  msgstr ""
209
 
210
+ #: google-captcha.php:530 google-captcha.php:1057
211
  msgid "FAQ"
212
  msgstr "Συχνές Ερωτήσεις"
213
 
214
+ #: google-captcha.php:535
215
  #, fuzzy
216
  msgid "Hide reCAPTCHA in Comments form for"
217
  msgstr "για την έκδοση reCAPTCHA"
218
 
219
+ #: google-captcha.php:547
220
  #, fuzzy
221
  msgid "reCAPTCHA version"
222
  msgstr "Έκδοση reCAPTCHA:"
223
 
224
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
225
+ #: google-captcha.php:553
226
  msgid "version"
227
  msgstr "έκδοση"
228
 
229
+ #: google-captcha.php:559 google-captcha.php:572
230
  #, fuzzy
231
  msgid "reCAPTCHA theme"
232
  msgstr "Έκδοση reCAPTCHA:"
233
 
234
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
235
  #, fuzzy
236
  msgid "for version"
237
  msgstr "έκδοση"
238
 
239
+ #: google-captcha.php:590
240
  #, fuzzy
241
  msgid "reCAPTCHA language"
242
  msgstr "Έκδοση reCAPTCHA:"
243
 
244
+ #: google-captcha.php:597
245
  msgid "Use the current site language"
246
  msgstr ""
247
 
248
+ #: google-captcha.php:597
249
  msgid "Using"
250
  msgstr ""
251
 
252
+ #: google-captcha.php:603
253
  #, fuzzy
254
  msgid "reCAPTCHA size"
255
  msgstr "Έκδοση reCAPTCHA:"
256
 
257
+ #: google-captcha.php:632
258
  msgid "Save Changes"
259
  msgstr "Αποθήκευση αλλαγών"
260
 
261
+ #: google-captcha.php:690 google-captcha.php:1073
262
  msgid "To use Google Captcha you must get the keys from"
263
  msgstr ""
264
  "Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
265
 
266
+ #: google-captcha.php:691 google-captcha.php:1074
267
  msgid "here"
268
  msgstr "εδώ"
269
 
270
+ #: google-captcha.php:692 google-captcha.php:1075
271
  msgid "and enter them on the"
272
  msgstr "και να τα εισάγετε στη"
273
 
274
+ #: google-captcha.php:694 google-captcha.php:1077
275
  msgid "plugin setting page"
276
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
277
 
278
+ #: google-captcha.php:885 google-captcha.php:923
279
  msgid "Error"
280
  msgstr ""
281
 
282
+ #: google-captcha.php:885
283
  #, fuzzy
284
  msgid "You have entered an incorrect reCAPTCHA value."
285
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
286
 
287
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
288
+ #, fuzzy
289
+ msgid "You have entered an incorrect reCAPTCHA value"
290
+ msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
291
+
292
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
293
+ msgid "ERROR"
294
+ msgstr ""
295
+
296
+ #: google-captcha.php:995
297
  #, fuzzy
298
  msgid ""
299
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
302
  "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
303
  "στον περιηγητή σας, και δοκιμάστε ξανά."
304
 
305
+ #: google-captcha.php:1058
306
  msgid "Support"
307
  msgstr "Υποστήριξη"
308
 
languages/google-captcha-es_ES.mo CHANGED
Binary file
languages/google-captcha-es_ES.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
@@ -17,93 +17,104 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:362
21
  msgid "Google Captcha Settings"
22
  msgstr "Googe Captcha Ajustes"
23
 
24
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
25
  #, fuzzy
26
  msgid "Error: You have entered an incorrect reCAPTCHA value."
27
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
- #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr ""
40
 
41
- #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr ""
44
 
45
- #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Formulario de acceso"
48
 
49
- #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Formulario de registro"
52
 
53
- #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Formulario de restablecimiento de contraseña"
56
 
57
- #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Formulario de comentarios"
60
 
61
- #: google-captcha.php:312
62
  #, fuzzy
63
  msgid "Enter site key"
64
  msgstr "Introduce la clave privada"
65
 
66
- #: google-captcha.php:313 google-captcha.php:319
67
  msgid "WARNING: The captcha will not display while you don't fill key fields."
68
  msgstr ""
69
  "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
70
  "clave."
71
 
72
- #: google-captcha.php:318
73
  #, fuzzy
74
  msgid "Enter secret key"
75
  msgstr "Introduce la clave privada"
76
 
77
- #: google-captcha.php:341
78
  msgid "Settings saved"
79
  msgstr "Configuración guardada"
80
 
81
- #: google-captcha.php:347
82
  #, fuzzy
83
  msgid "All plugin settings were restored."
84
  msgstr "página de configuración de plugin"
85
 
86
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
87
  msgid "Settings"
88
  msgstr "Ajustes"
89
 
90
- #: google-captcha.php:365
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
- #: google-captcha.php:370
95
  msgid ""
96
  "Google Captcha version 2 will not work correctly, since the option "
97
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
98
  msgstr ""
99
 
100
- #: google-captcha.php:375
101
  msgid ""
102
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
103
  "version 1 features."
104
  msgstr ""
105
 
106
- #: google-captcha.php:390
107
  #, fuzzy, php-format
108
  msgid ""
109
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -112,7 +123,7 @@ msgstr ""
112
  "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
113
  "pega este código corto en tu post o página:"
114
 
115
- #: google-captcha.php:396
116
  #, php-format
117
  msgid ""
118
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -121,150 +132,159 @@ msgid ""
121
  "your own form , please use the shortcode %s"
122
  msgstr ""
123
 
124
- #: google-captcha.php:404
125
  msgid "Authentication"
126
  msgstr "Autentificación"
127
 
128
- #: google-captcha.php:405
129
  #, fuzzy, php-format
130
  msgid "Before you are able to do something, you must to register %shere%s"
131
  msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
132
 
133
- #: google-captcha.php:406
134
  #, fuzzy
135
  msgid "Enter site key and secret key, that you get after registration."
136
  msgstr ""
137
  "Introduzca las claves pública y privada, que se obtiene después de "
138
  "Registrarse."
139
 
140
- #: google-captcha.php:418
141
  msgid "Options"
142
  msgstr "Opciones"
143
 
144
- #: google-captcha.php:421
145
  msgid "Enable reCAPTCHA for"
146
  msgstr ""
147
 
148
- #: google-captcha.php:425
149
  msgid "WordPress default"
150
  msgstr ""
151
 
152
- #: google-captcha.php:434
153
  msgid "This option is available only for network or for main blog"
154
  msgstr ""
155
 
156
- #: google-captcha.php:442
157
  #, fuzzy
158
  msgid "Plugins"
159
  msgstr "Página de Plugins"
160
 
161
- #: google-captcha.php:450 google-captcha.php:455
162
  #, php-format
163
  msgid "You should %s to use this functionality"
164
  msgstr ""
165
 
166
- #: google-captcha.php:451
167
  #, fuzzy
168
  msgid "activate"
169
  msgstr "Tema Activado"
170
 
171
- #: google-captcha.php:451
172
  msgid "for network"
173
  msgstr ""
174
 
175
- #: google-captcha.php:456
176
  msgid "download"
177
  msgstr ""
178
 
179
- #: google-captcha.php:468 google-captcha.php:545
180
  msgid "Close"
181
  msgstr ""
182
 
183
- #: google-captcha.php:480 google-captcha.php:581
184
  msgid "Unlock premium options by upgrading to Pro version"
185
  msgstr ""
186
 
187
- #: google-captcha.php:483 google-captcha.php:584
188
  msgid "Learn More"
189
  msgstr ""
190
 
191
- #: google-captcha.php:489
192
  #, php-format
193
  msgid ""
194
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
195
  msgstr ""
196
 
197
- #: google-captcha.php:489 google-captcha.php:982
198
  msgid "FAQ"
199
  msgstr "Preguntas Frecuentes"
200
 
201
- #: google-captcha.php:494
202
  msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr ""
204
 
205
- #: google-captcha.php:506
206
  msgid "reCAPTCHA version"
207
  msgstr ""
208
 
209
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
210
- #: google-captcha.php:512
211
  msgid "version"
212
  msgstr ""
213
 
214
- #: google-captcha.php:518 google-captcha.php:531
215
  msgid "reCAPTCHA theme"
216
  msgstr ""
217
 
218
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
219
  msgid "for version"
220
  msgstr ""
221
 
222
- #: google-captcha.php:549
223
  msgid "reCAPTCHA language"
224
  msgstr ""
225
 
226
- #: google-captcha.php:556
227
  msgid "Use the current site language"
228
  msgstr ""
229
 
230
- #: google-captcha.php:556
231
  msgid "Using"
232
  msgstr ""
233
 
234
- #: google-captcha.php:562
235
  msgid "reCAPTCHA size"
236
  msgstr ""
237
 
238
- #: google-captcha.php:591
239
  msgid "Save Changes"
240
  msgstr "Guardar Cambios"
241
 
242
- #: google-captcha.php:650 google-captcha.php:998
243
  msgid "To use Google Captcha you must get the keys from"
244
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
245
 
246
- #: google-captcha.php:651 google-captcha.php:999
247
  msgid "here"
248
  msgstr "aquí"
249
 
250
- #: google-captcha.php:652 google-captcha.php:1000
251
  msgid "and enter them on the"
252
  msgstr "e introducirlas en"
253
 
254
- #: google-captcha.php:654 google-captcha.php:1002
255
  msgid "plugin setting page"
256
  msgstr "página de configuración de plugin"
257
 
258
- #: google-captcha.php:822 google-captcha.php:851
259
  msgid "Error"
260
  msgstr ""
261
 
262
- #: google-captcha.php:822 google-captcha.php:881
263
  #, fuzzy
264
  msgid "You have entered an incorrect reCAPTCHA value."
265
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
266
 
267
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
268
  #, fuzzy
269
  msgid ""
270
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -273,7 +293,7 @@ msgstr ""
273
  "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
274
  "Regresar de su navegador y vuelva a intentarlo."
275
 
276
- #: google-captcha.php:983
277
  msgid "Support"
278
  msgstr "Soporte"
279
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:28+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "Googe Captcha Ajustes"
23
 
24
+ #: google-captcha.php:146
25
+ msgid "Warning"
26
+ msgstr ""
27
+
28
+ #: google-captcha.php:146
29
+ msgid ""
30
+ "It has been found more than one reCAPTCHA in current form. In this case "
31
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
+ "blocks."
33
+ msgstr ""
34
+
35
+ #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
39
 
40
+ #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:318
49
  msgid "Site key"
50
  msgstr ""
51
 
52
+ #: google-captcha.php:323
53
  msgid "Secret Key"
54
  msgstr ""
55
 
56
+ #: google-captcha.php:331
57
  msgid "Login form"
58
  msgstr "Formulario de acceso"
59
 
60
+ #: google-captcha.php:332
61
  msgid "Registration form"
62
  msgstr "Formulario de registro"
63
 
64
+ #: google-captcha.php:333
65
  msgid "Reset password form"
66
  msgstr "Formulario de restablecimiento de contraseña"
67
 
68
+ #: google-captcha.php:334
69
  msgid "Comments form"
70
  msgstr "Formulario de comentarios"
71
 
72
+ #: google-captcha.php:353
73
  #, fuzzy
74
  msgid "Enter site key"
75
  msgstr "Introduce la clave privada"
76
 
77
+ #: google-captcha.php:354 google-captcha.php:360
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
81
  "clave."
82
 
83
+ #: google-captcha.php:359
84
  #, fuzzy
85
  msgid "Enter secret key"
86
  msgstr "Introduce la clave privada"
87
 
88
+ #: google-captcha.php:382
89
  msgid "Settings saved"
90
  msgstr "Configuración guardada"
91
 
92
+ #: google-captcha.php:388
93
  #, fuzzy
94
  msgid "All plugin settings were restored."
95
  msgstr "página de configuración de plugin"
96
 
97
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
98
  msgid "Settings"
99
  msgstr "Ajustes"
100
 
101
+ #: google-captcha.php:406
102
  msgid "Go PRO"
103
  msgstr ""
104
 
105
+ #: google-captcha.php:411
106
  msgid ""
107
  "Google Captcha version 2 will not work correctly, since the option "
108
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
109
  msgstr ""
110
 
111
+ #: google-captcha.php:416
112
  msgid ""
113
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
114
  "version 1 features."
115
  msgstr ""
116
 
117
+ #: google-captcha.php:431
118
  #, fuzzy, php-format
119
  msgid ""
120
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
123
  "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
124
  "pega este código corto en tu post o página:"
125
 
126
+ #: google-captcha.php:437
127
  #, php-format
128
  msgid ""
129
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
132
  "your own form , please use the shortcode %s"
133
  msgstr ""
134
 
135
+ #: google-captcha.php:445
136
  msgid "Authentication"
137
  msgstr "Autentificación"
138
 
139
+ #: google-captcha.php:446
140
  #, fuzzy, php-format
141
  msgid "Before you are able to do something, you must to register %shere%s"
142
  msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
143
 
144
+ #: google-captcha.php:447
145
  #, fuzzy
146
  msgid "Enter site key and secret key, that you get after registration."
147
  msgstr ""
148
  "Introduzca las claves pública y privada, que se obtiene después de "
149
  "Registrarse."
150
 
151
+ #: google-captcha.php:459
152
  msgid "Options"
153
  msgstr "Opciones"
154
 
155
+ #: google-captcha.php:462
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
+ #: google-captcha.php:466
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
+ #: google-captcha.php:475
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
+ #: google-captcha.php:483
168
  #, fuzzy
169
  msgid "Plugins"
170
  msgstr "Página de Plugins"
171
 
172
+ #: google-captcha.php:491 google-captcha.php:496
173
  #, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr ""
176
 
177
+ #: google-captcha.php:492
178
  #, fuzzy
179
  msgid "activate"
180
  msgstr "Tema Activado"
181
 
182
+ #: google-captcha.php:492
183
  msgid "for network"
184
  msgstr ""
185
 
186
+ #: google-captcha.php:497
187
  msgid "download"
188
  msgstr ""
189
 
190
+ #: google-captcha.php:509 google-captcha.php:586
191
  msgid "Close"
192
  msgstr ""
193
 
194
+ #: google-captcha.php:521 google-captcha.php:622
195
  msgid "Unlock premium options by upgrading to Pro version"
196
  msgstr ""
197
 
198
+ #: google-captcha.php:524 google-captcha.php:625
199
  msgid "Learn More"
200
  msgstr ""
201
 
202
+ #: google-captcha.php:530
203
  #, php-format
204
  msgid ""
205
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
206
  msgstr ""
207
 
208
+ #: google-captcha.php:530 google-captcha.php:1057
209
  msgid "FAQ"
210
  msgstr "Preguntas Frecuentes"
211
 
212
+ #: google-captcha.php:535
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr ""
215
 
216
+ #: google-captcha.php:547
217
  msgid "reCAPTCHA version"
218
  msgstr ""
219
 
220
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
221
+ #: google-captcha.php:553
222
  msgid "version"
223
  msgstr ""
224
 
225
+ #: google-captcha.php:559 google-captcha.php:572
226
  msgid "reCAPTCHA theme"
227
  msgstr ""
228
 
229
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
230
  msgid "for version"
231
  msgstr ""
232
 
233
+ #: google-captcha.php:590
234
  msgid "reCAPTCHA language"
235
  msgstr ""
236
 
237
+ #: google-captcha.php:597
238
  msgid "Use the current site language"
239
  msgstr ""
240
 
241
+ #: google-captcha.php:597
242
  msgid "Using"
243
  msgstr ""
244
 
245
+ #: google-captcha.php:603
246
  msgid "reCAPTCHA size"
247
  msgstr ""
248
 
249
+ #: google-captcha.php:632
250
  msgid "Save Changes"
251
  msgstr "Guardar Cambios"
252
 
253
+ #: google-captcha.php:690 google-captcha.php:1073
254
  msgid "To use Google Captcha you must get the keys from"
255
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
256
 
257
+ #: google-captcha.php:691 google-captcha.php:1074
258
  msgid "here"
259
  msgstr "aquí"
260
 
261
+ #: google-captcha.php:692 google-captcha.php:1075
262
  msgid "and enter them on the"
263
  msgstr "e introducirlas en"
264
 
265
+ #: google-captcha.php:694 google-captcha.php:1077
266
  msgid "plugin setting page"
267
  msgstr "página de configuración de plugin"
268
 
269
+ #: google-captcha.php:885 google-captcha.php:923
270
  msgid "Error"
271
  msgstr ""
272
 
273
+ #: google-captcha.php:885
274
  #, fuzzy
275
  msgid "You have entered an incorrect reCAPTCHA value."
276
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
277
 
278
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
279
+ #, fuzzy
280
+ msgid "You have entered an incorrect reCAPTCHA value"
281
+ msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
282
+
283
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
284
+ msgid "ERROR"
285
+ msgstr ""
286
+
287
+ #: google-captcha.php:995
288
  #, fuzzy
289
  msgid ""
290
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
293
  "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
294
  "Regresar de su navegador y vuelva a intentarlo."
295
 
296
+ #: google-captcha.php:1058
297
  msgid "Support"
298
  msgstr "Soporte"
299
 
languages/google-captcha-fa_IR.mo CHANGED
Binary file
languages/google-captcha-fa_IR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
- "PO-Revision-Date: 2015-12-10 10:02+0300\n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
9
  "Language: fa_IR\n"
10
  "MIME-Version: 1.0\n"
@@ -21,78 +21,89 @@ msgstr ""
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: google-captcha.php:34 google-captcha.php:362
25
  msgid "Google Captcha Settings"
26
  msgstr "تنظیمات Google Captcha"
27
 
28
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
29
  #, fuzzy
30
  msgid "Error: You have entered an incorrect reCAPTCHA value."
31
  msgstr "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
32
 
33
- #: google-captcha.php:270
34
  msgid "Normal"
35
  msgstr "عادی"
36
 
37
- #: google-captcha.php:271
38
  msgid "Compact"
39
  msgstr "فشرده"
40
 
41
- #: google-captcha.php:277
42
  msgid "Site key"
43
  msgstr "کلید سایت (site key در تنظیمات گوگل)"
44
 
45
- #: google-captcha.php:282
46
  msgid "Secret Key"
47
  msgstr "کلید سری (secret key در تنظیمات گوگل)"
48
 
49
- #: google-captcha.php:290
50
  msgid "Login form"
51
  msgstr "فرم ورود"
52
 
53
- #: google-captcha.php:291
54
  msgid "Registration form"
55
  msgstr "فرم ثبت نام"
56
 
57
- #: google-captcha.php:292
58
  msgid "Reset password form"
59
  msgstr "فرم فراموش رمز عبور"
60
 
61
- #: google-captcha.php:293
62
  msgid "Comments form"
63
  msgstr "فرم دیدگاه ها"
64
 
65
- #: google-captcha.php:312
66
  msgid "Enter site key"
67
  msgstr "کلید سایت را وارد کنید"
68
 
69
- #: google-captcha.php:313 google-captcha.php:319
70
  msgid "WARNING: The captcha will not display while you don't fill key fields."
71
  msgstr ""
72
  "تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
73
  "نخواهد شد."
74
 
75
- #: google-captcha.php:318
76
  msgid "Enter secret key"
77
  msgstr "کلید سری را وارد کنید"
78
 
79
- #: google-captcha.php:341
80
  msgid "Settings saved"
81
  msgstr "تنظیمات ذخیره شدند"
82
 
83
- #: google-captcha.php:347
84
  msgid "All plugin settings were restored."
85
  msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
86
 
87
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
88
  msgid "Settings"
89
  msgstr "تنظیمات"
90
 
91
- #: google-captcha.php:365
92
  msgid "Go PRO"
93
  msgstr "ارتقاء به نسخه حرفه ای"
94
 
95
- #: google-captcha.php:370
96
  #, fuzzy
97
  msgid ""
98
  "Google Captcha version 2 will not work correctly, since the option "
@@ -101,13 +112,13 @@ msgstr ""
101
  "Google Captcha نسخه 2 به درستی کار نخواهد کرد چون گزینه \"allow_url_fopen\" "
102
  "در تنظیمات PHP هاست شما غیرفعال شده است."
103
 
104
- #: google-captcha.php:375
105
  msgid ""
106
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
107
  "version 1 features."
108
  msgstr ""
109
 
110
- #: google-captcha.php:390
111
  #, fuzzy, php-format
112
  msgid ""
113
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -116,7 +127,7 @@ msgstr ""
116
  "اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
117
  "کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
118
 
119
- #: google-captcha.php:396
120
  #, php-format
121
  msgid ""
122
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -125,145 +136,154 @@ msgid ""
125
  "your own form , please use the shortcode %s"
126
  msgstr ""
127
 
128
- #: google-captcha.php:404
129
  msgid "Authentication"
130
  msgstr "تایید هویت"
131
 
132
- #: google-captcha.php:405
133
  #, fuzzy, php-format
134
  msgid "Before you are able to do something, you must to register %shere%s"
135
  msgstr "قبل از این که قادر به انجام کاری باشید، باید ثبت نام کنید %s در %s"
136
 
137
- #: google-captcha.php:406
138
  msgid "Enter site key and secret key, that you get after registration."
139
  msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
140
 
141
- #: google-captcha.php:418
142
  msgid "Options"
143
  msgstr "تنظیمات"
144
 
145
- #: google-captcha.php:421
146
  msgid "Enable reCAPTCHA for"
147
  msgstr "فعال کردن reCAPTCHA برای"
148
 
149
- #: google-captcha.php:425
150
  msgid "WordPress default"
151
  msgstr ""
152
 
153
- #: google-captcha.php:434
154
  msgid "This option is available only for network or for main blog"
155
  msgstr ""
156
 
157
- #: google-captcha.php:442
158
  msgid "Plugins"
159
  msgstr ""
160
 
161
- #: google-captcha.php:450 google-captcha.php:455
162
  #, fuzzy, php-format
163
  msgid "You should %s to use this functionality"
164
  msgstr "تا از این قابلیت استفاده کنید"
165
 
166
- #: google-captcha.php:451
167
  msgid "activate"
168
  msgstr "فعال کنید"
169
 
170
- #: google-captcha.php:451
171
  msgid "for network"
172
  msgstr ""
173
 
174
- #: google-captcha.php:456
175
  msgid "download"
176
  msgstr "دانلود"
177
 
178
- #: google-captcha.php:468 google-captcha.php:545
179
  msgid "Close"
180
  msgstr "بستن"
181
 
182
- #: google-captcha.php:480 google-captcha.php:581
183
  msgid "Unlock premium options by upgrading to Pro version"
184
  msgstr "گزینه های اضافی را با آپگرید کردن به نسخه حرفه ای باز کنید"
185
 
186
- #: google-captcha.php:483 google-captcha.php:584
187
  msgid "Learn More"
188
  msgstr "بیشتر بدانید"
189
 
190
- #: google-captcha.php:489
191
  #, php-format
192
  msgid ""
193
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
194
  msgstr ""
195
 
196
- #: google-captcha.php:489 google-captcha.php:982
197
  msgid "FAQ"
198
  msgstr "سوالات متداول"
199
 
200
- #: google-captcha.php:494
201
  msgid "Hide reCAPTCHA in Comments form for"
202
  msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
203
 
204
- #: google-captcha.php:506
205
  msgid "reCAPTCHA version"
206
  msgstr "نسخه reCAPTCHA"
207
 
208
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
209
- #: google-captcha.php:512
210
  msgid "version"
211
  msgstr "نسخه"
212
 
213
- #: google-captcha.php:518 google-captcha.php:531
214
  msgid "reCAPTCHA theme"
215
  msgstr "پوسته reCAPTCHA"
216
 
217
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
218
  msgid "for version"
219
  msgstr "برای نسخه"
220
 
221
- #: google-captcha.php:549
222
  msgid "reCAPTCHA language"
223
  msgstr "زبان reCAPTCHA "
224
 
225
- #: google-captcha.php:556
226
  msgid "Use the current site language"
227
  msgstr "از زبان کنونی سایت استفاده کن"
228
 
229
- #: google-captcha.php:556
230
  msgid "Using"
231
  msgstr "استفاده کردن"
232
 
233
- #: google-captcha.php:562
234
  msgid "reCAPTCHA size"
235
  msgstr "اندازه reCAPTCHA"
236
 
237
- #: google-captcha.php:591
238
  msgid "Save Changes"
239
  msgstr "ذخیره کردن تنظیمات"
240
 
241
- #: google-captcha.php:650 google-captcha.php:998
242
  msgid "To use Google Captcha you must get the keys from"
243
  msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
244
 
245
- #: google-captcha.php:651 google-captcha.php:999
246
  msgid "here"
247
  msgstr "اینجا"
248
 
249
- #: google-captcha.php:652 google-captcha.php:1000
250
  msgid "and enter them on the"
251
  msgstr "و آنها را وارد کنید در"
252
 
253
- #: google-captcha.php:654 google-captcha.php:1002
254
  msgid "plugin setting page"
255
  msgstr "صفحه تنظیمات افزونه"
256
 
257
- #: google-captcha.php:822 google-captcha.php:851
258
  msgid "Error"
259
  msgstr "خطا"
260
 
261
- #: google-captcha.php:822 google-captcha.php:881
262
  #, fuzzy
263
  msgid "You have entered an incorrect reCAPTCHA value."
264
  msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
265
 
266
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
267
  #, fuzzy
268
  msgid ""
269
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -272,7 +292,7 @@ msgstr ""
272
  "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
273
  "دوباره تلاش کنید."
274
 
275
- #: google-captcha.php:983
276
  msgid "Support"
277
  msgstr "پشتیبانی"
278
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
+ "PO-Revision-Date: 2016-02-24 12:29+0300\n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
9
  "Language: fa_IR\n"
10
  "MIME-Version: 1.0\n"
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: google-captcha.php:33 google-captcha.php:403
25
  msgid "Google Captcha Settings"
26
  msgstr "تنظیمات Google Captcha"
27
 
28
+ #: google-captcha.php:146
29
+ msgid "Warning"
30
+ msgstr ""
31
+
32
+ #: google-captcha.php:146
33
+ msgid ""
34
+ "It has been found more than one reCAPTCHA in current form. In this case "
35
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
36
+ "blocks."
37
+ msgstr ""
38
+
39
+ #: google-captcha.php:150
40
  #, fuzzy
41
  msgid "Error: You have entered an incorrect reCAPTCHA value."
42
  msgstr "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
43
 
44
+ #: google-captcha.php:311
45
  msgid "Normal"
46
  msgstr "عادی"
47
 
48
+ #: google-captcha.php:312
49
  msgid "Compact"
50
  msgstr "فشرده"
51
 
52
+ #: google-captcha.php:318
53
  msgid "Site key"
54
  msgstr "کلید سایت (site key در تنظیمات گوگل)"
55
 
56
+ #: google-captcha.php:323
57
  msgid "Secret Key"
58
  msgstr "کلید سری (secret key در تنظیمات گوگل)"
59
 
60
+ #: google-captcha.php:331
61
  msgid "Login form"
62
  msgstr "فرم ورود"
63
 
64
+ #: google-captcha.php:332
65
  msgid "Registration form"
66
  msgstr "فرم ثبت نام"
67
 
68
+ #: google-captcha.php:333
69
  msgid "Reset password form"
70
  msgstr "فرم فراموش رمز عبور"
71
 
72
+ #: google-captcha.php:334
73
  msgid "Comments form"
74
  msgstr "فرم دیدگاه ها"
75
 
76
+ #: google-captcha.php:353
77
  msgid "Enter site key"
78
  msgstr "کلید سایت را وارد کنید"
79
 
80
+ #: google-captcha.php:354 google-captcha.php:360
81
  msgid "WARNING: The captcha will not display while you don't fill key fields."
82
  msgstr ""
83
  "تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
84
  "نخواهد شد."
85
 
86
+ #: google-captcha.php:359
87
  msgid "Enter secret key"
88
  msgstr "کلید سری را وارد کنید"
89
 
90
+ #: google-captcha.php:382
91
  msgid "Settings saved"
92
  msgstr "تنظیمات ذخیره شدند"
93
 
94
+ #: google-captcha.php:388
95
  msgid "All plugin settings were restored."
96
  msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
97
 
98
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
99
  msgid "Settings"
100
  msgstr "تنظیمات"
101
 
102
+ #: google-captcha.php:406
103
  msgid "Go PRO"
104
  msgstr "ارتقاء به نسخه حرفه ای"
105
 
106
+ #: google-captcha.php:411
107
  #, fuzzy
108
  msgid ""
109
  "Google Captcha version 2 will not work correctly, since the option "
112
  "Google Captcha نسخه 2 به درستی کار نخواهد کرد چون گزینه \"allow_url_fopen\" "
113
  "در تنظیمات PHP هاست شما غیرفعال شده است."
114
 
115
+ #: google-captcha.php:416
116
  msgid ""
117
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
118
  "version 1 features."
119
  msgstr ""
120
 
121
+ #: google-captcha.php:431
122
  #, fuzzy, php-format
123
  msgid ""
124
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
127
  "اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
128
  "کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
129
 
130
+ #: google-captcha.php:437
131
  #, php-format
132
  msgid ""
133
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
136
  "your own form , please use the shortcode %s"
137
  msgstr ""
138
 
139
+ #: google-captcha.php:445
140
  msgid "Authentication"
141
  msgstr "تایید هویت"
142
 
143
+ #: google-captcha.php:446
144
  #, fuzzy, php-format
145
  msgid "Before you are able to do something, you must to register %shere%s"
146
  msgstr "قبل از این که قادر به انجام کاری باشید، باید ثبت نام کنید %s در %s"
147
 
148
+ #: google-captcha.php:447
149
  msgid "Enter site key and secret key, that you get after registration."
150
  msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
151
 
152
+ #: google-captcha.php:459
153
  msgid "Options"
154
  msgstr "تنظیمات"
155
 
156
+ #: google-captcha.php:462
157
  msgid "Enable reCAPTCHA for"
158
  msgstr "فعال کردن reCAPTCHA برای"
159
 
160
+ #: google-captcha.php:466
161
  msgid "WordPress default"
162
  msgstr ""
163
 
164
+ #: google-captcha.php:475
165
  msgid "This option is available only for network or for main blog"
166
  msgstr ""
167
 
168
+ #: google-captcha.php:483
169
  msgid "Plugins"
170
  msgstr ""
171
 
172
+ #: google-captcha.php:491 google-captcha.php:496
173
  #, fuzzy, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr "تا از این قابلیت استفاده کنید"
176
 
177
+ #: google-captcha.php:492
178
  msgid "activate"
179
  msgstr "فعال کنید"
180
 
181
+ #: google-captcha.php:492
182
  msgid "for network"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:497
186
  msgid "download"
187
  msgstr "دانلود"
188
 
189
+ #: google-captcha.php:509 google-captcha.php:586
190
  msgid "Close"
191
  msgstr "بستن"
192
 
193
+ #: google-captcha.php:521 google-captcha.php:622
194
  msgid "Unlock premium options by upgrading to Pro version"
195
  msgstr "گزینه های اضافی را با آپگرید کردن به نسخه حرفه ای باز کنید"
196
 
197
+ #: google-captcha.php:524 google-captcha.php:625
198
  msgid "Learn More"
199
  msgstr "بیشتر بدانید"
200
 
201
+ #: google-captcha.php:530
202
  #, php-format
203
  msgid ""
204
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
205
  msgstr ""
206
 
207
+ #: google-captcha.php:530 google-captcha.php:1057
208
  msgid "FAQ"
209
  msgstr "سوالات متداول"
210
 
211
+ #: google-captcha.php:535
212
  msgid "Hide reCAPTCHA in Comments form for"
213
  msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
214
 
215
+ #: google-captcha.php:547
216
  msgid "reCAPTCHA version"
217
  msgstr "نسخه reCAPTCHA"
218
 
219
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
220
+ #: google-captcha.php:553
221
  msgid "version"
222
  msgstr "نسخه"
223
 
224
+ #: google-captcha.php:559 google-captcha.php:572
225
  msgid "reCAPTCHA theme"
226
  msgstr "پوسته reCAPTCHA"
227
 
228
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
229
  msgid "for version"
230
  msgstr "برای نسخه"
231
 
232
+ #: google-captcha.php:590
233
  msgid "reCAPTCHA language"
234
  msgstr "زبان reCAPTCHA "
235
 
236
+ #: google-captcha.php:597
237
  msgid "Use the current site language"
238
  msgstr "از زبان کنونی سایت استفاده کن"
239
 
240
+ #: google-captcha.php:597
241
  msgid "Using"
242
  msgstr "استفاده کردن"
243
 
244
+ #: google-captcha.php:603
245
  msgid "reCAPTCHA size"
246
  msgstr "اندازه reCAPTCHA"
247
 
248
+ #: google-captcha.php:632
249
  msgid "Save Changes"
250
  msgstr "ذخیره کردن تنظیمات"
251
 
252
+ #: google-captcha.php:690 google-captcha.php:1073
253
  msgid "To use Google Captcha you must get the keys from"
254
  msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
255
 
256
+ #: google-captcha.php:691 google-captcha.php:1074
257
  msgid "here"
258
  msgstr "اینجا"
259
 
260
+ #: google-captcha.php:692 google-captcha.php:1075
261
  msgid "and enter them on the"
262
  msgstr "و آنها را وارد کنید در"
263
 
264
+ #: google-captcha.php:694 google-captcha.php:1077
265
  msgid "plugin setting page"
266
  msgstr "صفحه تنظیمات افزونه"
267
 
268
+ #: google-captcha.php:885 google-captcha.php:923
269
  msgid "Error"
270
  msgstr "خطا"
271
 
272
+ #: google-captcha.php:885
273
  #, fuzzy
274
  msgid "You have entered an incorrect reCAPTCHA value."
275
  msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
276
 
277
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
278
+ #, fuzzy
279
+ msgid "You have entered an incorrect reCAPTCHA value"
280
+ msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
281
+
282
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
283
+ msgid "ERROR"
284
+ msgstr ""
285
+
286
+ #: google-captcha.php:995
287
  #, fuzzy
288
  msgid ""
289
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
292
  "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
293
  "دوباره تلاش کنید."
294
 
295
+ #: google-captcha.php:1058
296
  msgid "Support"
297
  msgstr "پشتیبانی"
298
 
languages/google-captcha-fr_FR.mo CHANGED
Binary file
languages/google-captcha-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
@@ -17,79 +17,90 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:362
21
  msgid "Google Captcha Settings"
22
  msgstr "Configuration Google Captcha"
23
 
24
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
25
  #, fuzzy
26
  msgid "Error: You have entered an incorrect reCAPTCHA value."
27
  msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
- #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Clé du site"
40
 
41
- #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Clé secrète"
44
 
45
- #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Formulaire de connexion"
48
 
49
- #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Formulaire d'enregistrement"
52
 
53
- #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Formulaire de réinitialisation de mot de passe"
56
 
57
- #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Formulaire de commentaire"
60
 
61
- #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Saisissez la clé du site"
64
 
65
- #: google-captcha.php:313 google-captcha.php:319
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
  msgstr ""
68
  "ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
69
  "les clés"
70
 
71
- #: google-captcha.php:318
72
  msgid "Enter secret key"
73
  msgstr "Saisissez la clé secrète"
74
 
75
- #: google-captcha.php:341
76
  msgid "Settings saved"
77
  msgstr "Configuration enregistrée"
78
 
79
- #: google-captcha.php:347
80
  #, fuzzy
81
  msgid "All plugin settings were restored."
82
  msgstr "Tous les paramètre sont restaurés"
83
 
84
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
85
  msgid "Settings"
86
  msgstr "Configuration"
87
 
88
- #: google-captcha.php:365
89
  msgid "Go PRO"
90
  msgstr "Version PRO"
91
 
92
- #: google-captcha.php:370
93
  #, fuzzy
94
  msgid ""
95
  "Google Captcha version 2 will not work correctly, since the option "
@@ -99,13 +110,13 @@ msgstr ""
99
  "\"allow_url_fopen\" est désactivée dans la configuration PHP de votre "
100
  "hébergement"
101
 
102
- #: google-captcha.php:375
103
  msgid ""
104
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
105
  "version 1 features."
106
  msgstr ""
107
 
108
- #: google-captcha.php:390
109
  #, fuzzy, php-format
110
  msgid ""
111
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -114,7 +125,7 @@ msgstr ""
114
  "Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
115
  "collez simplement ce code:"
116
 
117
- #: google-captcha.php:396
118
  #, php-format
119
  msgid ""
120
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -123,151 +134,160 @@ msgid ""
123
  "your own form , please use the shortcode %s"
124
  msgstr ""
125
 
126
- #: google-captcha.php:404
127
  msgid "Authentication"
128
  msgstr "Authentification"
129
 
130
- #: google-captcha.php:405
131
  #, fuzzy, php-format
132
  msgid "Before you are able to do something, you must to register %shere%s"
133
  msgstr ""
134
  "Avant de pouvoir faire quoi que ce soit, vous devez vous enregistrer %s ici "
135
  "%s"
136
 
137
- #: google-captcha.php:406
138
  msgid "Enter site key and secret key, that you get after registration."
139
  msgstr ""
140
  "Saisissez la clé du site et la clé secrète que vous avez obtenues après "
141
  "enregistrement"
142
 
143
- #: google-captcha.php:418
144
  msgid "Options"
145
  msgstr "Options"
146
 
147
- #: google-captcha.php:421
148
  msgid "Enable reCAPTCHA for"
149
  msgstr "Activer reCAPTCHA pour"
150
 
151
- #: google-captcha.php:425
152
  msgid "WordPress default"
153
  msgstr ""
154
 
155
- #: google-captcha.php:434
156
  msgid "This option is available only for network or for main blog"
157
  msgstr ""
158
 
159
- #: google-captcha.php:442
160
  #, fuzzy
161
  msgid "Plugins"
162
  msgstr "Plugins Seite"
163
 
164
- #: google-captcha.php:450 google-captcha.php:455
165
  #, fuzzy, php-format
166
  msgid "You should %s to use this functionality"
167
  msgstr "pour utiliser cette fonctionnalité"
168
 
169
- #: google-captcha.php:451
170
  #, fuzzy
171
  msgid "activate"
172
  msgstr "activer"
173
 
174
- #: google-captcha.php:451
175
  msgid "for network"
176
  msgstr ""
177
 
178
- #: google-captcha.php:456
179
  msgid "download"
180
  msgstr "télécharger"
181
 
182
- #: google-captcha.php:468 google-captcha.php:545
183
  msgid "Close"
184
  msgstr "Fermer"
185
 
186
- #: google-captcha.php:480 google-captcha.php:581
187
  msgid "Unlock premium options by upgrading to Pro version"
188
  msgstr "Débloquez les options premium en mettant à jour vers la version Pro"
189
 
190
- #: google-captcha.php:483 google-captcha.php:584
191
  msgid "Learn More"
192
  msgstr "En savoir plus"
193
 
194
- #: google-captcha.php:489
195
  #, php-format
196
  msgid ""
197
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
198
  msgstr ""
199
 
200
- #: google-captcha.php:489 google-captcha.php:982
201
  msgid "FAQ"
202
  msgstr "FAQ"
203
 
204
- #: google-captcha.php:494
205
  msgid "Hide reCAPTCHA in Comments form for"
206
  msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
207
 
208
- #: google-captcha.php:506
209
  msgid "reCAPTCHA version"
210
  msgstr "Version reCAPTCHA"
211
 
212
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
213
- #: google-captcha.php:512
214
  msgid "version"
215
  msgstr "Version"
216
 
217
- #: google-captcha.php:518 google-captcha.php:531
218
  msgid "reCAPTCHA theme"
219
  msgstr "Thème reCAPTCHA"
220
 
221
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
222
  msgid "for version"
223
  msgstr "pour la version"
224
 
225
- #: google-captcha.php:549
226
  msgid "reCAPTCHA language"
227
  msgstr "Langue reCAPTCHA"
228
 
229
- #: google-captcha.php:556
230
  msgid "Use the current site language"
231
  msgstr "Utiliser le langage courant du site"
232
 
233
- #: google-captcha.php:556
234
  msgid "Using"
235
  msgstr "Utilisant"
236
 
237
- #: google-captcha.php:562
238
  msgid "reCAPTCHA size"
239
  msgstr "Taille ReCAPTCHA"
240
 
241
- #: google-captcha.php:591
242
  msgid "Save Changes"
243
  msgstr "Enregistrer les modifications"
244
 
245
- #: google-captcha.php:650 google-captcha.php:998
246
  msgid "To use Google Captcha you must get the keys from"
247
  msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
248
 
249
- #: google-captcha.php:651 google-captcha.php:999
250
  msgid "here"
251
  msgstr "ici"
252
 
253
- #: google-captcha.php:652 google-captcha.php:1000
254
  msgid "and enter them on the"
255
  msgstr "et les saisir sur la"
256
 
257
- #: google-captcha.php:654 google-captcha.php:1002
258
  msgid "plugin setting page"
259
  msgstr "page de configuration de l'extension"
260
 
261
- #: google-captcha.php:822 google-captcha.php:851
262
  msgid "Error"
263
  msgstr "Erreur"
264
 
265
- #: google-captcha.php:822 google-captcha.php:881
266
  #, fuzzy
267
  msgid "You have entered an incorrect reCAPTCHA value."
268
  msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
269
 
270
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
271
  #, fuzzy
272
  msgid ""
273
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -276,7 +296,7 @@ msgstr ""
276
  "Erreur: Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le "
277
  "bouton \"Revenir en arrière\" de votre navigateur et essayez à nouveau"
278
 
279
- #: google-captcha.php:983
280
  msgid "Support"
281
  msgstr "Support"
282
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "Configuration Google Captcha"
23
 
24
+ #: google-captcha.php:146
25
+ msgid "Warning"
26
+ msgstr ""
27
+
28
+ #: google-captcha.php:146
29
+ msgid ""
30
+ "It has been found more than one reCAPTCHA in current form. In this case "
31
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
+ "blocks."
33
+ msgstr ""
34
+
35
+ #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
39
 
40
+ #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:318
49
  msgid "Site key"
50
  msgstr "Clé du site"
51
 
52
+ #: google-captcha.php:323
53
  msgid "Secret Key"
54
  msgstr "Clé secrète"
55
 
56
+ #: google-captcha.php:331
57
  msgid "Login form"
58
  msgstr "Formulaire de connexion"
59
 
60
+ #: google-captcha.php:332
61
  msgid "Registration form"
62
  msgstr "Formulaire d'enregistrement"
63
 
64
+ #: google-captcha.php:333
65
  msgid "Reset password form"
66
  msgstr "Formulaire de réinitialisation de mot de passe"
67
 
68
+ #: google-captcha.php:334
69
  msgid "Comments form"
70
  msgstr "Formulaire de commentaire"
71
 
72
+ #: google-captcha.php:353
73
  msgid "Enter site key"
74
  msgstr "Saisissez la clé du site"
75
 
76
+ #: google-captcha.php:354 google-captcha.php:360
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
80
  "les clés"
81
 
82
+ #: google-captcha.php:359
83
  msgid "Enter secret key"
84
  msgstr "Saisissez la clé secrète"
85
 
86
+ #: google-captcha.php:382
87
  msgid "Settings saved"
88
  msgstr "Configuration enregistrée"
89
 
90
+ #: google-captcha.php:388
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "Tous les paramètre sont restaurés"
94
 
95
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
96
  msgid "Settings"
97
  msgstr "Configuration"
98
 
99
+ #: google-captcha.php:406
100
  msgid "Go PRO"
101
  msgstr "Version PRO"
102
 
103
+ #: google-captcha.php:411
104
  #, fuzzy
105
  msgid ""
106
  "Google Captcha version 2 will not work correctly, since the option "
110
  "\"allow_url_fopen\" est désactivée dans la configuration PHP de votre "
111
  "hébergement"
112
 
113
+ #: google-captcha.php:416
114
  msgid ""
115
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
116
  "version 1 features."
117
  msgstr ""
118
 
119
+ #: google-captcha.php:431
120
  #, fuzzy, php-format
121
  msgid ""
122
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
125
  "Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
126
  "collez simplement ce code:"
127
 
128
+ #: google-captcha.php:437
129
  #, php-format
130
  msgid ""
131
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
134
  "your own form , please use the shortcode %s"
135
  msgstr ""
136
 
137
+ #: google-captcha.php:445
138
  msgid "Authentication"
139
  msgstr "Authentification"
140
 
141
+ #: google-captcha.php:446
142
  #, fuzzy, php-format
143
  msgid "Before you are able to do something, you must to register %shere%s"
144
  msgstr ""
145
  "Avant de pouvoir faire quoi que ce soit, vous devez vous enregistrer %s ici "
146
  "%s"
147
 
148
+ #: google-captcha.php:447
149
  msgid "Enter site key and secret key, that you get after registration."
150
  msgstr ""
151
  "Saisissez la clé du site et la clé secrète que vous avez obtenues après "
152
  "enregistrement"
153
 
154
+ #: google-captcha.php:459
155
  msgid "Options"
156
  msgstr "Options"
157
 
158
+ #: google-captcha.php:462
159
  msgid "Enable reCAPTCHA for"
160
  msgstr "Activer reCAPTCHA pour"
161
 
162
+ #: google-captcha.php:466
163
  msgid "WordPress default"
164
  msgstr ""
165
 
166
+ #: google-captcha.php:475
167
  msgid "This option is available only for network or for main blog"
168
  msgstr ""
169
 
170
+ #: google-captcha.php:483
171
  #, fuzzy
172
  msgid "Plugins"
173
  msgstr "Plugins Seite"
174
 
175
+ #: google-captcha.php:491 google-captcha.php:496
176
  #, fuzzy, php-format
177
  msgid "You should %s to use this functionality"
178
  msgstr "pour utiliser cette fonctionnalité"
179
 
180
+ #: google-captcha.php:492
181
  #, fuzzy
182
  msgid "activate"
183
  msgstr "activer"
184
 
185
+ #: google-captcha.php:492
186
  msgid "for network"
187
  msgstr ""
188
 
189
+ #: google-captcha.php:497
190
  msgid "download"
191
  msgstr "télécharger"
192
 
193
+ #: google-captcha.php:509 google-captcha.php:586
194
  msgid "Close"
195
  msgstr "Fermer"
196
 
197
+ #: google-captcha.php:521 google-captcha.php:622
198
  msgid "Unlock premium options by upgrading to Pro version"
199
  msgstr "Débloquez les options premium en mettant à jour vers la version Pro"
200
 
201
+ #: google-captcha.php:524 google-captcha.php:625
202
  msgid "Learn More"
203
  msgstr "En savoir plus"
204
 
205
+ #: google-captcha.php:530
206
  #, php-format
207
  msgid ""
208
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
209
  msgstr ""
210
 
211
+ #: google-captcha.php:530 google-captcha.php:1057
212
  msgid "FAQ"
213
  msgstr "FAQ"
214
 
215
+ #: google-captcha.php:535
216
  msgid "Hide reCAPTCHA in Comments form for"
217
  msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
218
 
219
+ #: google-captcha.php:547
220
  msgid "reCAPTCHA version"
221
  msgstr "Version reCAPTCHA"
222
 
223
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
224
+ #: google-captcha.php:553
225
  msgid "version"
226
  msgstr "Version"
227
 
228
+ #: google-captcha.php:559 google-captcha.php:572
229
  msgid "reCAPTCHA theme"
230
  msgstr "Thème reCAPTCHA"
231
 
232
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
233
  msgid "for version"
234
  msgstr "pour la version"
235
 
236
+ #: google-captcha.php:590
237
  msgid "reCAPTCHA language"
238
  msgstr "Langue reCAPTCHA"
239
 
240
+ #: google-captcha.php:597
241
  msgid "Use the current site language"
242
  msgstr "Utiliser le langage courant du site"
243
 
244
+ #: google-captcha.php:597
245
  msgid "Using"
246
  msgstr "Utilisant"
247
 
248
+ #: google-captcha.php:603
249
  msgid "reCAPTCHA size"
250
  msgstr "Taille ReCAPTCHA"
251
 
252
+ #: google-captcha.php:632
253
  msgid "Save Changes"
254
  msgstr "Enregistrer les modifications"
255
 
256
+ #: google-captcha.php:690 google-captcha.php:1073
257
  msgid "To use Google Captcha you must get the keys from"
258
  msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
259
 
260
+ #: google-captcha.php:691 google-captcha.php:1074
261
  msgid "here"
262
  msgstr "ici"
263
 
264
+ #: google-captcha.php:692 google-captcha.php:1075
265
  msgid "and enter them on the"
266
  msgstr "et les saisir sur la"
267
 
268
+ #: google-captcha.php:694 google-captcha.php:1077
269
  msgid "plugin setting page"
270
  msgstr "page de configuration de l'extension"
271
 
272
+ #: google-captcha.php:885 google-captcha.php:923
273
  msgid "Error"
274
  msgstr "Erreur"
275
 
276
+ #: google-captcha.php:885
277
  #, fuzzy
278
  msgid "You have entered an incorrect reCAPTCHA value."
279
  msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
280
 
281
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
282
+ #, fuzzy
283
+ msgid "You have entered an incorrect reCAPTCHA value"
284
+ msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
285
+
286
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
287
+ msgid "ERROR"
288
+ msgstr ""
289
+
290
+ #: google-captcha.php:995
291
  #, fuzzy
292
  msgid ""
293
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
296
  "Erreur: Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le "
297
  "bouton \"Revenir en arrière\" de votre navigateur et essayez à nouveau"
298
 
299
+ #: google-captcha.php:1058
300
  msgid "Support"
301
  msgstr "Support"
302
 
languages/google-captcha-hi.mo CHANGED
Binary file
languages/google-captcha-hi.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Development Logics Solutions Pvt Ltd "
9
  "<contact@developmentlogics.com>\n"
10
  "Language: hi\n"
@@ -18,77 +18,88 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:34 google-captcha.php:362
22
  msgid "Google Captcha Settings"
23
  msgstr "गूगल कॅप्चा सेटिंग्स"
24
 
25
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
26
  #, fuzzy
27
  msgid "Error: You have entered an incorrect reCAPTCHA value."
28
  msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
29
 
30
- #: google-captcha.php:270
31
  msgid "Normal"
32
  msgstr ""
33
 
34
- #: google-captcha.php:271
35
  msgid "Compact"
36
  msgstr ""
37
 
38
- #: google-captcha.php:277
39
  msgid "Site key"
40
  msgstr "साइट कुंजी "
41
 
42
- #: google-captcha.php:282
43
  msgid "Secret Key"
44
  msgstr "गुप्त कुंजी"
45
 
46
- #: google-captcha.php:290
47
  msgid "Login form"
48
  msgstr "प्रवेश फार्म"
49
 
50
- #: google-captcha.php:291
51
  msgid "Registration form"
52
  msgstr "पंजीकरण फॉर्म"
53
 
54
- #: google-captcha.php:292
55
  msgid "Reset password form"
56
  msgstr "पुन: पासवर्ड फार्म"
57
 
58
- #: google-captcha.php:293
59
  msgid "Comments form"
60
  msgstr "टिप्पणियां फार्म"
61
 
62
- #: google-captcha.php:312
63
  msgid "Enter site key"
64
  msgstr "दर्ज साइट कुंजी "
65
 
66
- #: google-captcha.php:313 google-captcha.php:319
67
  msgid "WARNING: The captcha will not display while you don't fill key fields."
68
  msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
69
 
70
- #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "दर्ज गुप्त कुंजी"
73
 
74
- #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "सेटिंग्स सुरक्षित"
77
 
78
- #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
82
 
83
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
84
  msgid "Settings"
85
  msgstr "सेटिंग्स"
86
 
87
- #: google-captcha.php:365
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
- #: google-captcha.php:370
92
  #, fuzzy
93
  msgid ""
94
  "Google Captcha version 2 will not work correctly, since the option "
@@ -97,13 +108,13 @@ msgstr ""
97
  "गूगल कैप्चा संस्करण 2 सही ढंग से काम नहीं करेगा, क्यूंकि विकल्प \"allow_url_fopen\" आपके "
98
  "होस्टिंग के पीएचपी सेटिंग में अक्षम है ।"
99
 
100
- #: google-captcha.php:375
101
  msgid ""
102
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
103
  "version 1 features."
104
  msgstr ""
105
 
106
- #: google-captcha.php:390
107
  #, fuzzy, php-format
108
  msgid ""
109
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -112,7 +123,7 @@ msgstr ""
112
  "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
113
  "पोस्ट पर कॉपी और पेस्ट करेँ ।"
114
 
115
- #: google-captcha.php:396
116
  #, php-format
117
  msgid ""
118
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -121,153 +132,162 @@ msgid ""
121
  "your own form , please use the shortcode %s"
122
  msgstr ""
123
 
124
- #: google-captcha.php:404
125
  msgid "Authentication"
126
  msgstr "प्रमाणीकरण"
127
 
128
- #: google-captcha.php:405
129
  #, fuzzy, php-format
130
  msgid "Before you are able to do something, you must to register %shere%s"
131
  msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
132
 
133
- #: google-captcha.php:406
134
  msgid "Enter site key and secret key, that you get after registration."
135
  msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
136
 
137
- #: google-captcha.php:418
138
  msgid "Options"
139
  msgstr "विकल्प"
140
 
141
- #: google-captcha.php:421
142
  msgid "Enable reCAPTCHA for"
143
  msgstr ""
144
 
145
- #: google-captcha.php:425
146
  #, fuzzy
147
  msgid "WordPress default"
148
  msgstr "वर्डप्रेस संस्करण"
149
 
150
- #: google-captcha.php:434
151
  msgid "This option is available only for network or for main blog"
152
  msgstr ""
153
 
154
- #: google-captcha.php:442
155
  msgid "Plugins"
156
  msgstr "प्लगइन्स"
157
 
158
- #: google-captcha.php:450 google-captcha.php:455
159
  #, php-format
160
  msgid "You should %s to use this functionality"
161
  msgstr ""
162
 
163
- #: google-captcha.php:451
164
  #, fuzzy
165
  msgid "activate"
166
  msgstr "सक्रिय"
167
 
168
- #: google-captcha.php:451
169
  msgid "for network"
170
  msgstr ""
171
 
172
- #: google-captcha.php:456
173
  msgid "download"
174
  msgstr ""
175
 
176
- #: google-captcha.php:468 google-captcha.php:545
177
  msgid "Close"
178
  msgstr ""
179
 
180
- #: google-captcha.php:480 google-captcha.php:581
181
  msgid "Unlock premium options by upgrading to Pro version"
182
  msgstr ""
183
 
184
- #: google-captcha.php:483 google-captcha.php:584
185
  msgid "Learn More"
186
  msgstr ""
187
 
188
- #: google-captcha.php:489
189
  #, php-format
190
  msgid ""
191
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
192
  msgstr ""
193
 
194
- #: google-captcha.php:489 google-captcha.php:982
195
  msgid "FAQ"
196
  msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
197
 
198
- #: google-captcha.php:494
199
  #, fuzzy
200
  msgid "Hide reCAPTCHA in Comments form for"
201
  msgstr "रीकैप्चा संस्करण के लिए"
202
 
203
- #: google-captcha.php:506
204
  #, fuzzy
205
  msgid "reCAPTCHA version"
206
  msgstr "रीकैप्चा संस्करण:"
207
 
208
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
209
- #: google-captcha.php:512
210
  msgid "version"
211
  msgstr "संस्करण"
212
 
213
- #: google-captcha.php:518 google-captcha.php:531
214
  #, fuzzy
215
  msgid "reCAPTCHA theme"
216
  msgstr "रीकैप्चा संस्करण:"
217
 
218
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
219
  #, fuzzy
220
  msgid "for version"
221
  msgstr "संस्करण"
222
 
223
- #: google-captcha.php:549
224
  #, fuzzy
225
  msgid "reCAPTCHA language"
226
  msgstr "रीकैप्चा संस्करण:"
227
 
228
- #: google-captcha.php:556
229
  msgid "Use the current site language"
230
  msgstr ""
231
 
232
- #: google-captcha.php:556
233
  msgid "Using"
234
  msgstr ""
235
 
236
- #: google-captcha.php:562
237
  #, fuzzy
238
  msgid "reCAPTCHA size"
239
  msgstr "रीकैप्चा संस्करण:"
240
 
241
- #: google-captcha.php:591
242
  msgid "Save Changes"
243
  msgstr "परिवर्तनों को सुरक्षित करें"
244
 
245
- #: google-captcha.php:650 google-captcha.php:998
246
  msgid "To use Google Captcha you must get the keys from"
247
  msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
248
 
249
- #: google-captcha.php:651 google-captcha.php:999
250
  msgid "here"
251
  msgstr "यहाँ से "
252
 
253
- #: google-captcha.php:652 google-captcha.php:1000
254
  msgid "and enter them on the"
255
  msgstr "और उन्हें दर्ज करें "
256
 
257
- #: google-captcha.php:654 google-captcha.php:1002
258
  msgid "plugin setting page"
259
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
260
 
261
- #: google-captcha.php:822 google-captcha.php:851
262
  msgid "Error"
263
  msgstr "त्रुटि"
264
 
265
- #: google-captcha.php:822 google-captcha.php:881
266
  #, fuzzy
267
  msgid "You have entered an incorrect reCAPTCHA value."
268
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
269
 
270
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
271
  #, fuzzy
272
  msgid ""
273
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -276,7 +296,7 @@ msgstr ""
276
  "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
277
  "कोशिश करें।"
278
 
279
- #: google-captcha.php:983
280
  msgid "Support"
281
  msgstr "सहयोग"
282
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Development Logics Solutions Pvt Ltd "
9
  "<contact@developmentlogics.com>\n"
10
  "Language: hi\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:33 google-captcha.php:403
22
  msgid "Google Captcha Settings"
23
  msgstr "गूगल कॅप्चा सेटिंग्स"
24
 
25
+ #: google-captcha.php:146
26
+ msgid "Warning"
27
+ msgstr ""
28
+
29
+ #: google-captcha.php:146
30
+ msgid ""
31
+ "It has been found more than one reCAPTCHA in current form. In this case "
32
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
33
+ "blocks."
34
+ msgstr ""
35
+
36
+ #: google-captcha.php:150
37
  #, fuzzy
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
40
 
41
+ #: google-captcha.php:311
42
  msgid "Normal"
43
  msgstr ""
44
 
45
+ #: google-captcha.php:312
46
  msgid "Compact"
47
  msgstr ""
48
 
49
+ #: google-captcha.php:318
50
  msgid "Site key"
51
  msgstr "साइट कुंजी "
52
 
53
+ #: google-captcha.php:323
54
  msgid "Secret Key"
55
  msgstr "गुप्त कुंजी"
56
 
57
+ #: google-captcha.php:331
58
  msgid "Login form"
59
  msgstr "प्रवेश फार्म"
60
 
61
+ #: google-captcha.php:332
62
  msgid "Registration form"
63
  msgstr "पंजीकरण फॉर्म"
64
 
65
+ #: google-captcha.php:333
66
  msgid "Reset password form"
67
  msgstr "पुन: पासवर्ड फार्म"
68
 
69
+ #: google-captcha.php:334
70
  msgid "Comments form"
71
  msgstr "टिप्पणियां फार्म"
72
 
73
+ #: google-captcha.php:353
74
  msgid "Enter site key"
75
  msgstr "दर्ज साइट कुंजी "
76
 
77
+ #: google-captcha.php:354 google-captcha.php:360
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
80
 
81
+ #: google-captcha.php:359
82
  msgid "Enter secret key"
83
  msgstr "दर्ज गुप्त कुंजी"
84
 
85
+ #: google-captcha.php:382
86
  msgid "Settings saved"
87
  msgstr "सेटिंग्स सुरक्षित"
88
 
89
+ #: google-captcha.php:388
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
93
 
94
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
95
  msgid "Settings"
96
  msgstr "सेटिंग्स"
97
 
98
+ #: google-captcha.php:406
99
  msgid "Go PRO"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:411
103
  #, fuzzy
104
  msgid ""
105
  "Google Captcha version 2 will not work correctly, since the option "
108
  "गूगल कैप्चा संस्करण 2 सही ढंग से काम नहीं करेगा, क्यूंकि विकल्प \"allow_url_fopen\" आपके "
109
  "होस्टिंग के पीएचपी सेटिंग में अक्षम है ।"
110
 
111
+ #: google-captcha.php:416
112
  msgid ""
113
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
114
  "version 1 features."
115
  msgstr ""
116
 
117
+ #: google-captcha.php:431
118
  #, fuzzy, php-format
119
  msgid ""
120
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
123
  "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
124
  "पोस्ट पर कॉपी और पेस्ट करेँ ।"
125
 
126
+ #: google-captcha.php:437
127
  #, php-format
128
  msgid ""
129
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
132
  "your own form , please use the shortcode %s"
133
  msgstr ""
134
 
135
+ #: google-captcha.php:445
136
  msgid "Authentication"
137
  msgstr "प्रमाणीकरण"
138
 
139
+ #: google-captcha.php:446
140
  #, fuzzy, php-format
141
  msgid "Before you are able to do something, you must to register %shere%s"
142
  msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
143
 
144
+ #: google-captcha.php:447
145
  msgid "Enter site key and secret key, that you get after registration."
146
  msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
147
 
148
+ #: google-captcha.php:459
149
  msgid "Options"
150
  msgstr "विकल्प"
151
 
152
+ #: google-captcha.php:462
153
  msgid "Enable reCAPTCHA for"
154
  msgstr ""
155
 
156
+ #: google-captcha.php:466
157
  #, fuzzy
158
  msgid "WordPress default"
159
  msgstr "वर्डप्रेस संस्करण"
160
 
161
+ #: google-captcha.php:475
162
  msgid "This option is available only for network or for main blog"
163
  msgstr ""
164
 
165
+ #: google-captcha.php:483
166
  msgid "Plugins"
167
  msgstr "प्लगइन्स"
168
 
169
+ #: google-captcha.php:491 google-captcha.php:496
170
  #, php-format
171
  msgid "You should %s to use this functionality"
172
  msgstr ""
173
 
174
+ #: google-captcha.php:492
175
  #, fuzzy
176
  msgid "activate"
177
  msgstr "सक्रिय"
178
 
179
+ #: google-captcha.php:492
180
  msgid "for network"
181
  msgstr ""
182
 
183
+ #: google-captcha.php:497
184
  msgid "download"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:509 google-captcha.php:586
188
  msgid "Close"
189
  msgstr ""
190
 
191
+ #: google-captcha.php:521 google-captcha.php:622
192
  msgid "Unlock premium options by upgrading to Pro version"
193
  msgstr ""
194
 
195
+ #: google-captcha.php:524 google-captcha.php:625
196
  msgid "Learn More"
197
  msgstr ""
198
 
199
+ #: google-captcha.php:530
200
  #, php-format
201
  msgid ""
202
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
203
  msgstr ""
204
 
205
+ #: google-captcha.php:530 google-captcha.php:1057
206
  msgid "FAQ"
207
  msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
208
 
209
+ #: google-captcha.php:535
210
  #, fuzzy
211
  msgid "Hide reCAPTCHA in Comments form for"
212
  msgstr "रीकैप्चा संस्करण के लिए"
213
 
214
+ #: google-captcha.php:547
215
  #, fuzzy
216
  msgid "reCAPTCHA version"
217
  msgstr "रीकैप्चा संस्करण:"
218
 
219
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
220
+ #: google-captcha.php:553
221
  msgid "version"
222
  msgstr "संस्करण"
223
 
224
+ #: google-captcha.php:559 google-captcha.php:572
225
  #, fuzzy
226
  msgid "reCAPTCHA theme"
227
  msgstr "रीकैप्चा संस्करण:"
228
 
229
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
230
  #, fuzzy
231
  msgid "for version"
232
  msgstr "संस्करण"
233
 
234
+ #: google-captcha.php:590
235
  #, fuzzy
236
  msgid "reCAPTCHA language"
237
  msgstr "रीकैप्चा संस्करण:"
238
 
239
+ #: google-captcha.php:597
240
  msgid "Use the current site language"
241
  msgstr ""
242
 
243
+ #: google-captcha.php:597
244
  msgid "Using"
245
  msgstr ""
246
 
247
+ #: google-captcha.php:603
248
  #, fuzzy
249
  msgid "reCAPTCHA size"
250
  msgstr "रीकैप्चा संस्करण:"
251
 
252
+ #: google-captcha.php:632
253
  msgid "Save Changes"
254
  msgstr "परिवर्तनों को सुरक्षित करें"
255
 
256
+ #: google-captcha.php:690 google-captcha.php:1073
257
  msgid "To use Google Captcha you must get the keys from"
258
  msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
259
 
260
+ #: google-captcha.php:691 google-captcha.php:1074
261
  msgid "here"
262
  msgstr "यहाँ से "
263
 
264
+ #: google-captcha.php:692 google-captcha.php:1075
265
  msgid "and enter them on the"
266
  msgstr "और उन्हें दर्ज करें "
267
 
268
+ #: google-captcha.php:694 google-captcha.php:1077
269
  msgid "plugin setting page"
270
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
271
 
272
+ #: google-captcha.php:885 google-captcha.php:923
273
  msgid "Error"
274
  msgstr "त्रुटि"
275
 
276
+ #: google-captcha.php:885
277
  #, fuzzy
278
  msgid "You have entered an incorrect reCAPTCHA value."
279
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
280
 
281
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
282
+ #, fuzzy
283
+ msgid "You have entered an incorrect reCAPTCHA value"
284
+ msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
285
+
286
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
287
+ msgid "ERROR"
288
+ msgstr ""
289
+
290
+ #: google-captcha.php:995
291
  #, fuzzy
292
  msgid ""
293
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
296
  "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
297
  "कोशिश करें।"
298
 
299
+ #: google-captcha.php:1058
300
  msgid "Support"
301
  msgstr "सहयोग"
302
 
languages/google-captcha-it_IT.mo CHANGED
Binary file
languages/google-captcha-it_IT.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Istvan <wart17@hotmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
@@ -17,78 +17,89 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:362
21
  msgid "Google Captcha Settings"
22
  msgstr "Impostazioni Google Captcha"
23
 
24
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
25
  #, fuzzy
26
  msgid "Error: You have entered an incorrect reCAPTCHA value."
27
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
- #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Chiave del sito"
40
 
41
- #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Chiave segreta"
44
 
45
- #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Form di accesso"
48
 
49
- #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Form di registrazione"
52
 
53
- #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Form per resettare la password"
56
 
57
- #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Form dei commenti"
60
 
61
- #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Introduci la Chiave del sito"
64
 
65
- #: google-captcha.php:313 google-captcha.php:319
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
  msgstr ""
68
  "ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
69
 
70
- #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Introduci la Chiave segreta"
73
 
74
- #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Impostazioni salvate"
77
 
78
- #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "pagina di configurazione del plugin"
82
 
83
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
84
  msgid "Settings"
85
  msgstr "Impostazioni"
86
 
87
- #: google-captcha.php:365
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
- #: google-captcha.php:370
92
  #, fuzzy
93
  msgid ""
94
  "Google Captcha version 2 will not work correctly, since the option "
@@ -97,13 +108,13 @@ msgstr ""
97
  "Google Captcha versione 2 non funzionerà correttamente perchè l'opzione "
98
  "\"allow_url_fopen\" è disabilitata nelle impostazioni PHP del tuo hosting."
99
 
100
- #: google-captcha.php:375
101
  msgid ""
102
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
103
  "version 1 features."
104
  msgstr ""
105
 
106
- #: google-captcha.php:390
107
  #, fuzzy, php-format
108
  msgid ""
109
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -112,7 +123,7 @@ msgstr ""
112
  "Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
113
  "copiare ed incollare questo codice nel tuo post o pagina:"
114
 
115
- #: google-captcha.php:396
116
  #, php-format
117
  msgid ""
118
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -121,155 +132,164 @@ msgid ""
121
  "your own form , please use the shortcode %s"
122
  msgstr ""
123
 
124
- #: google-captcha.php:404
125
  msgid "Authentication"
126
  msgstr "Autenticazione"
127
 
128
- #: google-captcha.php:405
129
  #, fuzzy, php-format
130
  msgid "Before you are able to do something, you must to register %shere%s"
131
  msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
132
 
133
- #: google-captcha.php:406
134
  msgid "Enter site key and secret key, that you get after registration."
135
  msgstr ""
136
  "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la "
137
  "registrazione."
138
 
139
- #: google-captcha.php:418
140
  msgid "Options"
141
  msgstr "Opzioni"
142
 
143
- #: google-captcha.php:421
144
  msgid "Enable reCAPTCHA for"
145
  msgstr ""
146
 
147
- #: google-captcha.php:425
148
  msgid "WordPress default"
149
  msgstr ""
150
 
151
- #: google-captcha.php:434
152
  msgid "This option is available only for network or for main blog"
153
  msgstr ""
154
 
155
- #: google-captcha.php:442
156
  #, fuzzy
157
  msgid "Plugins"
158
  msgstr "Pagina dei plugins"
159
 
160
- #: google-captcha.php:450 google-captcha.php:455
161
  #, php-format
162
  msgid "You should %s to use this functionality"
163
  msgstr ""
164
 
165
- #: google-captcha.php:451
166
  #, fuzzy
167
  msgid "activate"
168
  msgstr "Tema Activado"
169
 
170
- #: google-captcha.php:451
171
  msgid "for network"
172
  msgstr ""
173
 
174
- #: google-captcha.php:456
175
  msgid "download"
176
  msgstr ""
177
 
178
- #: google-captcha.php:468 google-captcha.php:545
179
  msgid "Close"
180
  msgstr ""
181
 
182
- #: google-captcha.php:480 google-captcha.php:581
183
  msgid "Unlock premium options by upgrading to Pro version"
184
  msgstr ""
185
 
186
- #: google-captcha.php:483 google-captcha.php:584
187
  msgid "Learn More"
188
  msgstr ""
189
 
190
- #: google-captcha.php:489
191
  #, php-format
192
  msgid ""
193
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
194
  msgstr ""
195
 
196
- #: google-captcha.php:489 google-captcha.php:982
197
  msgid "FAQ"
198
  msgstr "Domande frequenti"
199
 
200
- #: google-captcha.php:494
201
  #, fuzzy
202
  msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr "per reCAPTCHA versione"
204
 
205
- #: google-captcha.php:506
206
  #, fuzzy
207
  msgid "reCAPTCHA version"
208
  msgstr "reCAPTCHA versione:"
209
 
210
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
211
- #: google-captcha.php:512
212
  msgid "version"
213
  msgstr "versione"
214
 
215
- #: google-captcha.php:518 google-captcha.php:531
216
  #, fuzzy
217
  msgid "reCAPTCHA theme"
218
  msgstr "reCAPTCHA versione:"
219
 
220
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
221
  #, fuzzy
222
  msgid "for version"
223
  msgstr "versione"
224
 
225
- #: google-captcha.php:549
226
  #, fuzzy
227
  msgid "reCAPTCHA language"
228
  msgstr "reCAPTCHA versione:"
229
 
230
- #: google-captcha.php:556
231
  msgid "Use the current site language"
232
  msgstr ""
233
 
234
- #: google-captcha.php:556
235
  msgid "Using"
236
  msgstr ""
237
 
238
- #: google-captcha.php:562
239
  #, fuzzy
240
  msgid "reCAPTCHA size"
241
  msgstr "reCAPTCHA versione:"
242
 
243
- #: google-captcha.php:591
244
  msgid "Save Changes"
245
  msgstr "Salva modifiche"
246
 
247
- #: google-captcha.php:650 google-captcha.php:998
248
  msgid "To use Google Captcha you must get the keys from"
249
  msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
250
 
251
- #: google-captcha.php:651 google-captcha.php:999
252
  msgid "here"
253
  msgstr "qui"
254
 
255
- #: google-captcha.php:652 google-captcha.php:1000
256
  msgid "and enter them on the"
257
  msgstr "ed introducili in"
258
 
259
- #: google-captcha.php:654 google-captcha.php:1002
260
  msgid "plugin setting page"
261
  msgstr "pagina di configurazione del plugin"
262
 
263
- #: google-captcha.php:822 google-captcha.php:851
264
  msgid "Error"
265
  msgstr ""
266
 
267
- #: google-captcha.php:822 google-captcha.php:881
268
  #, fuzzy
269
  msgid "You have entered an incorrect reCAPTCHA value."
270
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
271
 
272
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
273
  #, fuzzy
274
  msgid ""
275
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -278,7 +298,7 @@ msgstr ""
278
  "Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
279
  "Indietro del tuo browser e riprova."
280
 
281
- #: google-captcha.php:983
282
  msgid "Support"
283
  msgstr "Supporto"
284
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Istvan <wart17@hotmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "Impostazioni Google Captcha"
23
 
24
+ #: google-captcha.php:146
25
+ msgid "Warning"
26
+ msgstr ""
27
+
28
+ #: google-captcha.php:146
29
+ msgid ""
30
+ "It has been found more than one reCAPTCHA in current form. In this case "
31
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
+ "blocks."
33
+ msgstr ""
34
+
35
+ #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
39
 
40
+ #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:318
49
  msgid "Site key"
50
  msgstr "Chiave del sito"
51
 
52
+ #: google-captcha.php:323
53
  msgid "Secret Key"
54
  msgstr "Chiave segreta"
55
 
56
+ #: google-captcha.php:331
57
  msgid "Login form"
58
  msgstr "Form di accesso"
59
 
60
+ #: google-captcha.php:332
61
  msgid "Registration form"
62
  msgstr "Form di registrazione"
63
 
64
+ #: google-captcha.php:333
65
  msgid "Reset password form"
66
  msgstr "Form per resettare la password"
67
 
68
+ #: google-captcha.php:334
69
  msgid "Comments form"
70
  msgstr "Form dei commenti"
71
 
72
+ #: google-captcha.php:353
73
  msgid "Enter site key"
74
  msgstr "Introduci la Chiave del sito"
75
 
76
+ #: google-captcha.php:354 google-captcha.php:360
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
80
 
81
+ #: google-captcha.php:359
82
  msgid "Enter secret key"
83
  msgstr "Introduci la Chiave segreta"
84
 
85
+ #: google-captcha.php:382
86
  msgid "Settings saved"
87
  msgstr "Impostazioni salvate"
88
 
89
+ #: google-captcha.php:388
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "pagina di configurazione del plugin"
93
 
94
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
95
  msgid "Settings"
96
  msgstr "Impostazioni"
97
 
98
+ #: google-captcha.php:406
99
  msgid "Go PRO"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:411
103
  #, fuzzy
104
  msgid ""
105
  "Google Captcha version 2 will not work correctly, since the option "
108
  "Google Captcha versione 2 non funzionerà correttamente perchè l'opzione "
109
  "\"allow_url_fopen\" è disabilitata nelle impostazioni PHP del tuo hosting."
110
 
111
+ #: google-captcha.php:416
112
  msgid ""
113
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
114
  "version 1 features."
115
  msgstr ""
116
 
117
+ #: google-captcha.php:431
118
  #, fuzzy, php-format
119
  msgid ""
120
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
123
  "Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
124
  "copiare ed incollare questo codice nel tuo post o pagina:"
125
 
126
+ #: google-captcha.php:437
127
  #, php-format
128
  msgid ""
129
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
132
  "your own form , please use the shortcode %s"
133
  msgstr ""
134
 
135
+ #: google-captcha.php:445
136
  msgid "Authentication"
137
  msgstr "Autenticazione"
138
 
139
+ #: google-captcha.php:446
140
  #, fuzzy, php-format
141
  msgid "Before you are able to do something, you must to register %shere%s"
142
  msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
143
 
144
+ #: google-captcha.php:447
145
  msgid "Enter site key and secret key, that you get after registration."
146
  msgstr ""
147
  "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la "
148
  "registrazione."
149
 
150
+ #: google-captcha.php:459
151
  msgid "Options"
152
  msgstr "Opzioni"
153
 
154
+ #: google-captcha.php:462
155
  msgid "Enable reCAPTCHA for"
156
  msgstr ""
157
 
158
+ #: google-captcha.php:466
159
  msgid "WordPress default"
160
  msgstr ""
161
 
162
+ #: google-captcha.php:475
163
  msgid "This option is available only for network or for main blog"
164
  msgstr ""
165
 
166
+ #: google-captcha.php:483
167
  #, fuzzy
168
  msgid "Plugins"
169
  msgstr "Pagina dei plugins"
170
 
171
+ #: google-captcha.php:491 google-captcha.php:496
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
+ #: google-captcha.php:492
177
  #, fuzzy
178
  msgid "activate"
179
  msgstr "Tema Activado"
180
 
181
+ #: google-captcha.php:492
182
  msgid "for network"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:497
186
  msgid "download"
187
  msgstr ""
188
 
189
+ #: google-captcha.php:509 google-captcha.php:586
190
  msgid "Close"
191
  msgstr ""
192
 
193
+ #: google-captcha.php:521 google-captcha.php:622
194
  msgid "Unlock premium options by upgrading to Pro version"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:524 google-captcha.php:625
198
  msgid "Learn More"
199
  msgstr ""
200
 
201
+ #: google-captcha.php:530
202
  #, php-format
203
  msgid ""
204
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
205
  msgstr ""
206
 
207
+ #: google-captcha.php:530 google-captcha.php:1057
208
  msgid "FAQ"
209
  msgstr "Domande frequenti"
210
 
211
+ #: google-captcha.php:535
212
  #, fuzzy
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr "per reCAPTCHA versione"
215
 
216
+ #: google-captcha.php:547
217
  #, fuzzy
218
  msgid "reCAPTCHA version"
219
  msgstr "reCAPTCHA versione:"
220
 
221
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
222
+ #: google-captcha.php:553
223
  msgid "version"
224
  msgstr "versione"
225
 
226
+ #: google-captcha.php:559 google-captcha.php:572
227
  #, fuzzy
228
  msgid "reCAPTCHA theme"
229
  msgstr "reCAPTCHA versione:"
230
 
231
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
232
  #, fuzzy
233
  msgid "for version"
234
  msgstr "versione"
235
 
236
+ #: google-captcha.php:590
237
  #, fuzzy
238
  msgid "reCAPTCHA language"
239
  msgstr "reCAPTCHA versione:"
240
 
241
+ #: google-captcha.php:597
242
  msgid "Use the current site language"
243
  msgstr ""
244
 
245
+ #: google-captcha.php:597
246
  msgid "Using"
247
  msgstr ""
248
 
249
+ #: google-captcha.php:603
250
  #, fuzzy
251
  msgid "reCAPTCHA size"
252
  msgstr "reCAPTCHA versione:"
253
 
254
+ #: google-captcha.php:632
255
  msgid "Save Changes"
256
  msgstr "Salva modifiche"
257
 
258
+ #: google-captcha.php:690 google-captcha.php:1073
259
  msgid "To use Google Captcha you must get the keys from"
260
  msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
261
 
262
+ #: google-captcha.php:691 google-captcha.php:1074
263
  msgid "here"
264
  msgstr "qui"
265
 
266
+ #: google-captcha.php:692 google-captcha.php:1075
267
  msgid "and enter them on the"
268
  msgstr "ed introducili in"
269
 
270
+ #: google-captcha.php:694 google-captcha.php:1077
271
  msgid "plugin setting page"
272
  msgstr "pagina di configurazione del plugin"
273
 
274
+ #: google-captcha.php:885 google-captcha.php:923
275
  msgid "Error"
276
  msgstr ""
277
 
278
+ #: google-captcha.php:885
279
  #, fuzzy
280
  msgid "You have entered an incorrect reCAPTCHA value."
281
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
282
 
283
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
284
+ #, fuzzy
285
+ msgid "You have entered an incorrect reCAPTCHA value"
286
+ msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
287
+
288
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
289
+ msgid "ERROR"
290
+ msgstr ""
291
+
292
+ #: google-captcha.php:995
293
  #, fuzzy
294
  msgid ""
295
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
298
  "Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
299
  "Indietro del tuo browser e riprova."
300
 
301
+ #: google-captcha.php:1058
302
  msgid "Support"
303
  msgstr "Supporto"
304
 
languages/google-captcha-pl_PL.mo CHANGED
Binary file
languages/google-captcha-pl_PL.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
@@ -18,93 +18,104 @@ msgstr ""
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:34 google-captcha.php:362
22
  msgid "Google Captcha Settings"
23
  msgstr "Ustawienia Google Captcha"
24
 
25
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
26
  #, fuzzy
27
  msgid "Error: You have entered an incorrect reCAPTCHA value."
28
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
29
 
30
- #: google-captcha.php:270
31
  msgid "Normal"
32
  msgstr ""
33
 
34
- #: google-captcha.php:271
35
  msgid "Compact"
36
  msgstr ""
37
 
38
- #: google-captcha.php:277
39
  msgid "Site key"
40
  msgstr ""
41
 
42
- #: google-captcha.php:282
43
  msgid "Secret Key"
44
  msgstr ""
45
 
46
- #: google-captcha.php:290
47
  msgid "Login form"
48
  msgstr "Formularz logowania"
49
 
50
- #: google-captcha.php:291
51
  msgid "Registration form"
52
  msgstr "Formularz rejestracji"
53
 
54
- #: google-captcha.php:292
55
  msgid "Reset password form"
56
  msgstr "Formularz odzyskiwania hasła"
57
 
58
- #: google-captcha.php:293
59
  msgid "Comments form"
60
  msgstr "Formularz komentarza"
61
 
62
- #: google-captcha.php:312
63
  #, fuzzy
64
  msgid "Enter site key"
65
  msgstr "Wprowadź klucz prywatny"
66
 
67
- #: google-captcha.php:313 google-captcha.php:319
68
  msgid "WARNING: The captcha will not display while you don't fill key fields."
69
  msgstr ""
70
  "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
71
  "kluczy."
72
 
73
- #: google-captcha.php:318
74
  #, fuzzy
75
  msgid "Enter secret key"
76
  msgstr "Wprowadź klucz prywatny"
77
 
78
- #: google-captcha.php:341
79
  msgid "Settings saved"
80
  msgstr "Ustawienia zapisane"
81
 
82
- #: google-captcha.php:347
83
  #, fuzzy
84
  msgid "All plugin settings were restored."
85
  msgstr "stronie ustawień wtyczki"
86
 
87
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
88
  msgid "Settings"
89
  msgstr "Ustawienia"
90
 
91
- #: google-captcha.php:365
92
  msgid "Go PRO"
93
  msgstr ""
94
 
95
- #: google-captcha.php:370
96
  msgid ""
97
  "Google Captcha version 2 will not work correctly, since the option "
98
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
99
  msgstr ""
100
 
101
- #: google-captcha.php:375
102
  msgid ""
103
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
104
  "version 1 features."
105
  msgstr ""
106
 
107
- #: google-captcha.php:390
108
  #, fuzzy, php-format
109
  msgid ""
110
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -113,7 +124,7 @@ msgstr ""
113
  "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
114
  "prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
115
 
116
- #: google-captcha.php:396
117
  #, php-format
118
  msgid ""
119
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -122,149 +133,158 @@ msgid ""
122
  "your own form , please use the shortcode %s"
123
  msgstr ""
124
 
125
- #: google-captcha.php:404
126
  msgid "Authentication"
127
  msgstr "Uwierzytelnianie"
128
 
129
- #: google-captcha.php:405
130
  #, fuzzy, php-format
131
  msgid "Before you are able to do something, you must to register %shere%s"
132
  msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
133
 
134
- #: google-captcha.php:406
135
  #, fuzzy
136
  msgid "Enter site key and secret key, that you get after registration."
137
  msgstr ""
138
  "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
139
 
140
- #: google-captcha.php:418
141
  msgid "Options"
142
  msgstr "Opcje"
143
 
144
- #: google-captcha.php:421
145
  msgid "Enable reCAPTCHA for"
146
  msgstr ""
147
 
148
- #: google-captcha.php:425
149
  msgid "WordPress default"
150
  msgstr ""
151
 
152
- #: google-captcha.php:434
153
  msgid "This option is available only for network or for main blog"
154
  msgstr ""
155
 
156
- #: google-captcha.php:442
157
  #, fuzzy
158
  msgid "Plugins"
159
  msgstr "Strona Wtyczki"
160
 
161
- #: google-captcha.php:450 google-captcha.php:455
162
  #, php-format
163
  msgid "You should %s to use this functionality"
164
  msgstr ""
165
 
166
- #: google-captcha.php:451
167
  #, fuzzy
168
  msgid "activate"
169
  msgstr "Motyw aktywny"
170
 
171
- #: google-captcha.php:451
172
  msgid "for network"
173
  msgstr ""
174
 
175
- #: google-captcha.php:456
176
  msgid "download"
177
  msgstr ""
178
 
179
- #: google-captcha.php:468 google-captcha.php:545
180
  msgid "Close"
181
  msgstr ""
182
 
183
- #: google-captcha.php:480 google-captcha.php:581
184
  msgid "Unlock premium options by upgrading to Pro version"
185
  msgstr ""
186
 
187
- #: google-captcha.php:483 google-captcha.php:584
188
  msgid "Learn More"
189
  msgstr ""
190
 
191
- #: google-captcha.php:489
192
  #, php-format
193
  msgid ""
194
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
195
  msgstr ""
196
 
197
- #: google-captcha.php:489 google-captcha.php:982
198
  msgid "FAQ"
199
  msgstr "FAQ"
200
 
201
- #: google-captcha.php:494
202
  msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr ""
204
 
205
- #: google-captcha.php:506
206
  msgid "reCAPTCHA version"
207
  msgstr ""
208
 
209
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
210
- #: google-captcha.php:512
211
  msgid "version"
212
  msgstr ""
213
 
214
- #: google-captcha.php:518 google-captcha.php:531
215
  msgid "reCAPTCHA theme"
216
  msgstr ""
217
 
218
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
219
  msgid "for version"
220
  msgstr ""
221
 
222
- #: google-captcha.php:549
223
  msgid "reCAPTCHA language"
224
  msgstr ""
225
 
226
- #: google-captcha.php:556
227
  msgid "Use the current site language"
228
  msgstr ""
229
 
230
- #: google-captcha.php:556
231
  msgid "Using"
232
  msgstr ""
233
 
234
- #: google-captcha.php:562
235
  msgid "reCAPTCHA size"
236
  msgstr ""
237
 
238
- #: google-captcha.php:591
239
  msgid "Save Changes"
240
  msgstr "Zapisz zmiany"
241
 
242
- #: google-captcha.php:650 google-captcha.php:998
243
  msgid "To use Google Captcha you must get the keys from"
244
  msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
245
 
246
- #: google-captcha.php:651 google-captcha.php:999
247
  msgid "here"
248
  msgstr "stąd"
249
 
250
- #: google-captcha.php:652 google-captcha.php:1000
251
  msgid "and enter them on the"
252
  msgstr "i wprowadzić je na"
253
 
254
- #: google-captcha.php:654 google-captcha.php:1002
255
  msgid "plugin setting page"
256
  msgstr "stronie ustawień wtyczki"
257
 
258
- #: google-captcha.php:822 google-captcha.php:851
259
  msgid "Error"
260
  msgstr ""
261
 
262
- #: google-captcha.php:822 google-captcha.php:881
263
  #, fuzzy
264
  msgid "You have entered an incorrect reCAPTCHA value."
265
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
266
 
267
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
268
  #, fuzzy
269
  msgid ""
270
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -273,7 +293,7 @@ msgstr ""
273
  "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
274
  "pasku przeglądarki i spróbuj ponownie."
275
 
276
- #: google-captcha.php:983
277
  msgid "Support"
278
  msgstr "Wsparcie"
279
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:33 google-captcha.php:403
22
  msgid "Google Captcha Settings"
23
  msgstr "Ustawienia Google Captcha"
24
 
25
+ #: google-captcha.php:146
26
+ msgid "Warning"
27
+ msgstr ""
28
+
29
+ #: google-captcha.php:146
30
+ msgid ""
31
+ "It has been found more than one reCAPTCHA in current form. In this case "
32
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
33
+ "blocks."
34
+ msgstr ""
35
+
36
+ #: google-captcha.php:150
37
  #, fuzzy
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
40
 
41
+ #: google-captcha.php:311
42
  msgid "Normal"
43
  msgstr ""
44
 
45
+ #: google-captcha.php:312
46
  msgid "Compact"
47
  msgstr ""
48
 
49
+ #: google-captcha.php:318
50
  msgid "Site key"
51
  msgstr ""
52
 
53
+ #: google-captcha.php:323
54
  msgid "Secret Key"
55
  msgstr ""
56
 
57
+ #: google-captcha.php:331
58
  msgid "Login form"
59
  msgstr "Formularz logowania"
60
 
61
+ #: google-captcha.php:332
62
  msgid "Registration form"
63
  msgstr "Formularz rejestracji"
64
 
65
+ #: google-captcha.php:333
66
  msgid "Reset password form"
67
  msgstr "Formularz odzyskiwania hasła"
68
 
69
+ #: google-captcha.php:334
70
  msgid "Comments form"
71
  msgstr "Formularz komentarza"
72
 
73
+ #: google-captcha.php:353
74
  #, fuzzy
75
  msgid "Enter site key"
76
  msgstr "Wprowadź klucz prywatny"
77
 
78
+ #: google-captcha.php:354 google-captcha.php:360
79
  msgid "WARNING: The captcha will not display while you don't fill key fields."
80
  msgstr ""
81
  "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
82
  "kluczy."
83
 
84
+ #: google-captcha.php:359
85
  #, fuzzy
86
  msgid "Enter secret key"
87
  msgstr "Wprowadź klucz prywatny"
88
 
89
+ #: google-captcha.php:382
90
  msgid "Settings saved"
91
  msgstr "Ustawienia zapisane"
92
 
93
+ #: google-captcha.php:388
94
  #, fuzzy
95
  msgid "All plugin settings were restored."
96
  msgstr "stronie ustawień wtyczki"
97
 
98
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
99
  msgid "Settings"
100
  msgstr "Ustawienia"
101
 
102
+ #: google-captcha.php:406
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:411
107
  msgid ""
108
  "Google Captcha version 2 will not work correctly, since the option "
109
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
110
  msgstr ""
111
 
112
+ #: google-captcha.php:416
113
  msgid ""
114
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
115
  "version 1 features."
116
  msgstr ""
117
 
118
+ #: google-captcha.php:431
119
  #, fuzzy, php-format
120
  msgid ""
121
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
124
  "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
125
  "prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
126
 
127
+ #: google-captcha.php:437
128
  #, php-format
129
  msgid ""
130
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
133
  "your own form , please use the shortcode %s"
134
  msgstr ""
135
 
136
+ #: google-captcha.php:445
137
  msgid "Authentication"
138
  msgstr "Uwierzytelnianie"
139
 
140
+ #: google-captcha.php:446
141
  #, fuzzy, php-format
142
  msgid "Before you are able to do something, you must to register %shere%s"
143
  msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
144
 
145
+ #: google-captcha.php:447
146
  #, fuzzy
147
  msgid "Enter site key and secret key, that you get after registration."
148
  msgstr ""
149
  "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
150
 
151
+ #: google-captcha.php:459
152
  msgid "Options"
153
  msgstr "Opcje"
154
 
155
+ #: google-captcha.php:462
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
+ #: google-captcha.php:466
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
+ #: google-captcha.php:475
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
+ #: google-captcha.php:483
168
  #, fuzzy
169
  msgid "Plugins"
170
  msgstr "Strona Wtyczki"
171
 
172
+ #: google-captcha.php:491 google-captcha.php:496
173
  #, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr ""
176
 
177
+ #: google-captcha.php:492
178
  #, fuzzy
179
  msgid "activate"
180
  msgstr "Motyw aktywny"
181
 
182
+ #: google-captcha.php:492
183
  msgid "for network"
184
  msgstr ""
185
 
186
+ #: google-captcha.php:497
187
  msgid "download"
188
  msgstr ""
189
 
190
+ #: google-captcha.php:509 google-captcha.php:586
191
  msgid "Close"
192
  msgstr ""
193
 
194
+ #: google-captcha.php:521 google-captcha.php:622
195
  msgid "Unlock premium options by upgrading to Pro version"
196
  msgstr ""
197
 
198
+ #: google-captcha.php:524 google-captcha.php:625
199
  msgid "Learn More"
200
  msgstr ""
201
 
202
+ #: google-captcha.php:530
203
  #, php-format
204
  msgid ""
205
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
206
  msgstr ""
207
 
208
+ #: google-captcha.php:530 google-captcha.php:1057
209
  msgid "FAQ"
210
  msgstr "FAQ"
211
 
212
+ #: google-captcha.php:535
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr ""
215
 
216
+ #: google-captcha.php:547
217
  msgid "reCAPTCHA version"
218
  msgstr ""
219
 
220
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
221
+ #: google-captcha.php:553
222
  msgid "version"
223
  msgstr ""
224
 
225
+ #: google-captcha.php:559 google-captcha.php:572
226
  msgid "reCAPTCHA theme"
227
  msgstr ""
228
 
229
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
230
  msgid "for version"
231
  msgstr ""
232
 
233
+ #: google-captcha.php:590
234
  msgid "reCAPTCHA language"
235
  msgstr ""
236
 
237
+ #: google-captcha.php:597
238
  msgid "Use the current site language"
239
  msgstr ""
240
 
241
+ #: google-captcha.php:597
242
  msgid "Using"
243
  msgstr ""
244
 
245
+ #: google-captcha.php:603
246
  msgid "reCAPTCHA size"
247
  msgstr ""
248
 
249
+ #: google-captcha.php:632
250
  msgid "Save Changes"
251
  msgstr "Zapisz zmiany"
252
 
253
+ #: google-captcha.php:690 google-captcha.php:1073
254
  msgid "To use Google Captcha you must get the keys from"
255
  msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
256
 
257
+ #: google-captcha.php:691 google-captcha.php:1074
258
  msgid "here"
259
  msgstr "stąd"
260
 
261
+ #: google-captcha.php:692 google-captcha.php:1075
262
  msgid "and enter them on the"
263
  msgstr "i wprowadzić je na"
264
 
265
+ #: google-captcha.php:694 google-captcha.php:1077
266
  msgid "plugin setting page"
267
  msgstr "stronie ustawień wtyczki"
268
 
269
+ #: google-captcha.php:885 google-captcha.php:923
270
  msgid "Error"
271
  msgstr ""
272
 
273
+ #: google-captcha.php:885
274
  #, fuzzy
275
  msgid "You have entered an incorrect reCAPTCHA value."
276
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
277
 
278
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
279
+ #, fuzzy
280
+ msgid "You have entered an incorrect reCAPTCHA value"
281
+ msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
282
+
283
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
284
+ msgid "ERROR"
285
+ msgstr ""
286
+
287
+ #: google-captcha.php:995
288
  #, fuzzy
289
  msgid ""
290
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
293
  "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
294
  "pasku przeglądarki i spróbuj ponownie."
295
 
296
+ #: google-captcha.php:1058
297
  msgid "Support"
298
  msgstr "Wsparcie"
299
 
languages/google-captcha-pt_BR.mo CHANGED
Binary file
languages/google-captcha-pt_BR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
9
  "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
@@ -17,94 +17,105 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:362
21
  msgid "Google Captcha Settings"
22
  msgstr "Configurações Google Captcha"
23
 
24
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
25
  #, fuzzy
26
  msgid "Error: You have entered an incorrect reCAPTCHA value."
27
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
- #: google-captcha.php:277
38
  #, fuzzy
39
  msgid "Site key"
40
  msgstr "URL do site"
41
 
42
- #: google-captcha.php:282
43
  msgid "Secret Key"
44
  msgstr ""
45
 
46
- #: google-captcha.php:290
47
  msgid "Login form"
48
  msgstr "Formulário de login"
49
 
50
- #: google-captcha.php:291
51
  msgid "Registration form"
52
  msgstr "Formulário de registro"
53
 
54
- #: google-captcha.php:292
55
  msgid "Reset password form"
56
  msgstr "Formulário de alterar senha"
57
 
58
- #: google-captcha.php:293
59
  msgid "Comments form"
60
  msgstr "Fomulário de comentários"
61
 
62
- #: google-captcha.php:312
63
  #, fuzzy
64
  msgid "Enter site key"
65
  msgstr "Digite a chave privada"
66
 
67
- #: google-captcha.php:313 google-captcha.php:319
68
  msgid "WARNING: The captcha will not display while you don't fill key fields."
69
  msgstr ""
70
  "AVISO: O captcha não será exibido enquanto você não preencher os campos-"
71
  "chave."
72
 
73
- #: google-captcha.php:318
74
  #, fuzzy
75
  msgid "Enter secret key"
76
  msgstr "Digite a chave privada"
77
 
78
- #: google-captcha.php:341
79
  msgid "Settings saved"
80
  msgstr "Configurações salvas"
81
 
82
- #: google-captcha.php:347
83
  #, fuzzy
84
  msgid "All plugin settings were restored."
85
  msgstr "página de configuração do plugin"
86
 
87
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
88
  msgid "Settings"
89
  msgstr "Configurações"
90
 
91
- #: google-captcha.php:365
92
  msgid "Go PRO"
93
  msgstr ""
94
 
95
- #: google-captcha.php:370
96
  msgid ""
97
  "Google Captcha version 2 will not work correctly, since the option "
98
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
99
  msgstr ""
100
 
101
- #: google-captcha.php:375
102
  msgid ""
103
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
104
  "version 1 features."
105
  msgstr ""
106
 
107
- #: google-captcha.php:390
108
  #, fuzzy, php-format
109
  msgid ""
110
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -113,7 +124,7 @@ msgstr ""
113
  "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
114
  "copiar e colar este shortcode para o seu post ou página:"
115
 
116
- #: google-captcha.php:396
117
  #, php-format
118
  msgid ""
119
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -122,155 +133,164 @@ msgid ""
122
  "your own form , please use the shortcode %s"
123
  msgstr ""
124
 
125
- #: google-captcha.php:404
126
  msgid "Authentication"
127
  msgstr "Autenticação"
128
 
129
- #: google-captcha.php:405
130
  #, fuzzy, php-format
131
  msgid "Before you are able to do something, you must to register %shere%s"
132
  msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
133
 
134
- #: google-captcha.php:406
135
  #, fuzzy
136
  msgid "Enter site key and secret key, that you get after registration."
137
  msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
138
 
139
- #: google-captcha.php:418
140
  msgid "Options"
141
  msgstr "Opções"
142
 
143
- #: google-captcha.php:421
144
  msgid "Enable reCAPTCHA for"
145
  msgstr ""
146
 
147
- #: google-captcha.php:425
148
  #, fuzzy
149
  msgid "WordPress default"
150
  msgstr "Versão do WordPress"
151
 
152
- #: google-captcha.php:434
153
  msgid "This option is available only for network or for main blog"
154
  msgstr ""
155
 
156
- #: google-captcha.php:442
157
  msgid "Plugins"
158
  msgstr "Plugins"
159
 
160
- #: google-captcha.php:450 google-captcha.php:455
161
  #, php-format
162
  msgid "You should %s to use this functionality"
163
  msgstr ""
164
 
165
- #: google-captcha.php:451
166
  #, fuzzy
167
  msgid "activate"
168
  msgstr "Ativar"
169
 
170
- #: google-captcha.php:451
171
  msgid "for network"
172
  msgstr ""
173
 
174
- #: google-captcha.php:456
175
  msgid "download"
176
  msgstr ""
177
 
178
- #: google-captcha.php:468 google-captcha.php:545
179
  msgid "Close"
180
  msgstr ""
181
 
182
- #: google-captcha.php:480 google-captcha.php:581
183
  msgid "Unlock premium options by upgrading to Pro version"
184
  msgstr ""
185
 
186
- #: google-captcha.php:483 google-captcha.php:584
187
  msgid "Learn More"
188
  msgstr ""
189
 
190
- #: google-captcha.php:489
191
  #, php-format
192
  msgid ""
193
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
194
  msgstr ""
195
 
196
- #: google-captcha.php:489 google-captcha.php:982
197
  msgid "FAQ"
198
  msgstr "FAQ"
199
 
200
- #: google-captcha.php:494
201
  #, fuzzy
202
  msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr "Versão do PHP"
204
 
205
- #: google-captcha.php:506
206
  #, fuzzy
207
  msgid "reCAPTCHA version"
208
  msgstr "Versão do PHP"
209
 
210
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
211
- #: google-captcha.php:512
212
  #, fuzzy
213
  msgid "version"
214
  msgstr "Versão do PHP"
215
 
216
- #: google-captcha.php:518 google-captcha.php:531
217
  #, fuzzy
218
  msgid "reCAPTCHA theme"
219
  msgstr "Versão do PHP"
220
 
221
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
222
  #, fuzzy
223
  msgid "for version"
224
  msgstr "Versão do PHP"
225
 
226
- #: google-captcha.php:549
227
  #, fuzzy
228
  msgid "reCAPTCHA language"
229
  msgstr "Versão do PHP"
230
 
231
- #: google-captcha.php:556
232
  msgid "Use the current site language"
233
  msgstr ""
234
 
235
- #: google-captcha.php:556
236
  msgid "Using"
237
  msgstr ""
238
 
239
- #: google-captcha.php:562
240
  #, fuzzy
241
  msgid "reCAPTCHA size"
242
  msgstr "Versão do PHP"
243
 
244
- #: google-captcha.php:591
245
  msgid "Save Changes"
246
  msgstr "Salvar alterações"
247
 
248
- #: google-captcha.php:650 google-captcha.php:998
249
  msgid "To use Google Captcha you must get the keys from"
250
  msgstr "Para usar o Google Captcha é necessário obter as chaves de"
251
 
252
- #: google-captcha.php:651 google-captcha.php:999
253
  msgid "here"
254
  msgstr "aqui"
255
 
256
- #: google-captcha.php:652 google-captcha.php:1000
257
  msgid "and enter them on the"
258
  msgstr "e inserí-los no"
259
 
260
- #: google-captcha.php:654 google-captcha.php:1002
261
  msgid "plugin setting page"
262
  msgstr "página de configuração do plugin"
263
 
264
- #: google-captcha.php:822 google-captcha.php:851
265
  msgid "Error"
266
  msgstr ""
267
 
268
- #: google-captcha.php:822 google-captcha.php:881
269
  #, fuzzy
270
  msgid "You have entered an incorrect reCAPTCHA value."
271
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
272
 
273
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
274
  #, fuzzy
275
  msgid ""
276
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -279,7 +299,7 @@ msgstr ""
279
  "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
280
  "seu navegador e tente novamente."
281
 
282
- #: google-captcha.php:983
283
  msgid "Support"
284
  msgstr "Suporte"
285
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
9
  "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "Configurações Google Captcha"
23
 
24
+ #: google-captcha.php:146
25
+ msgid "Warning"
26
+ msgstr ""
27
+
28
+ #: google-captcha.php:146
29
+ msgid ""
30
+ "It has been found more than one reCAPTCHA in current form. In this case "
31
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
+ "blocks."
33
+ msgstr ""
34
+
35
+ #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
39
 
40
+ #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:318
49
  #, fuzzy
50
  msgid "Site key"
51
  msgstr "URL do site"
52
 
53
+ #: google-captcha.php:323
54
  msgid "Secret Key"
55
  msgstr ""
56
 
57
+ #: google-captcha.php:331
58
  msgid "Login form"
59
  msgstr "Formulário de login"
60
 
61
+ #: google-captcha.php:332
62
  msgid "Registration form"
63
  msgstr "Formulário de registro"
64
 
65
+ #: google-captcha.php:333
66
  msgid "Reset password form"
67
  msgstr "Formulário de alterar senha"
68
 
69
+ #: google-captcha.php:334
70
  msgid "Comments form"
71
  msgstr "Fomulário de comentários"
72
 
73
+ #: google-captcha.php:353
74
  #, fuzzy
75
  msgid "Enter site key"
76
  msgstr "Digite a chave privada"
77
 
78
+ #: google-captcha.php:354 google-captcha.php:360
79
  msgid "WARNING: The captcha will not display while you don't fill key fields."
80
  msgstr ""
81
  "AVISO: O captcha não será exibido enquanto você não preencher os campos-"
82
  "chave."
83
 
84
+ #: google-captcha.php:359
85
  #, fuzzy
86
  msgid "Enter secret key"
87
  msgstr "Digite a chave privada"
88
 
89
+ #: google-captcha.php:382
90
  msgid "Settings saved"
91
  msgstr "Configurações salvas"
92
 
93
+ #: google-captcha.php:388
94
  #, fuzzy
95
  msgid "All plugin settings were restored."
96
  msgstr "página de configuração do plugin"
97
 
98
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
99
  msgid "Settings"
100
  msgstr "Configurações"
101
 
102
+ #: google-captcha.php:406
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:411
107
  msgid ""
108
  "Google Captcha version 2 will not work correctly, since the option "
109
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
110
  msgstr ""
111
 
112
+ #: google-captcha.php:416
113
  msgid ""
114
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
115
  "version 1 features."
116
  msgstr ""
117
 
118
+ #: google-captcha.php:431
119
  #, fuzzy, php-format
120
  msgid ""
121
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
124
  "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
125
  "copiar e colar este shortcode para o seu post ou página:"
126
 
127
+ #: google-captcha.php:437
128
  #, php-format
129
  msgid ""
130
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
133
  "your own form , please use the shortcode %s"
134
  msgstr ""
135
 
136
+ #: google-captcha.php:445
137
  msgid "Authentication"
138
  msgstr "Autenticação"
139
 
140
+ #: google-captcha.php:446
141
  #, fuzzy, php-format
142
  msgid "Before you are able to do something, you must to register %shere%s"
143
  msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
144
 
145
+ #: google-captcha.php:447
146
  #, fuzzy
147
  msgid "Enter site key and secret key, that you get after registration."
148
  msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
149
 
150
+ #: google-captcha.php:459
151
  msgid "Options"
152
  msgstr "Opções"
153
 
154
+ #: google-captcha.php:462
155
  msgid "Enable reCAPTCHA for"
156
  msgstr ""
157
 
158
+ #: google-captcha.php:466
159
  #, fuzzy
160
  msgid "WordPress default"
161
  msgstr "Versão do WordPress"
162
 
163
+ #: google-captcha.php:475
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
+ #: google-captcha.php:483
168
  msgid "Plugins"
169
  msgstr "Plugins"
170
 
171
+ #: google-captcha.php:491 google-captcha.php:496
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
+ #: google-captcha.php:492
177
  #, fuzzy
178
  msgid "activate"
179
  msgstr "Ativar"
180
 
181
+ #: google-captcha.php:492
182
  msgid "for network"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:497
186
  msgid "download"
187
  msgstr ""
188
 
189
+ #: google-captcha.php:509 google-captcha.php:586
190
  msgid "Close"
191
  msgstr ""
192
 
193
+ #: google-captcha.php:521 google-captcha.php:622
194
  msgid "Unlock premium options by upgrading to Pro version"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:524 google-captcha.php:625
198
  msgid "Learn More"
199
  msgstr ""
200
 
201
+ #: google-captcha.php:530
202
  #, php-format
203
  msgid ""
204
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
205
  msgstr ""
206
 
207
+ #: google-captcha.php:530 google-captcha.php:1057
208
  msgid "FAQ"
209
  msgstr "FAQ"
210
 
211
+ #: google-captcha.php:535
212
  #, fuzzy
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr "Versão do PHP"
215
 
216
+ #: google-captcha.php:547
217
  #, fuzzy
218
  msgid "reCAPTCHA version"
219
  msgstr "Versão do PHP"
220
 
221
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
222
+ #: google-captcha.php:553
223
  #, fuzzy
224
  msgid "version"
225
  msgstr "Versão do PHP"
226
 
227
+ #: google-captcha.php:559 google-captcha.php:572
228
  #, fuzzy
229
  msgid "reCAPTCHA theme"
230
  msgstr "Versão do PHP"
231
 
232
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
233
  #, fuzzy
234
  msgid "for version"
235
  msgstr "Versão do PHP"
236
 
237
+ #: google-captcha.php:590
238
  #, fuzzy
239
  msgid "reCAPTCHA language"
240
  msgstr "Versão do PHP"
241
 
242
+ #: google-captcha.php:597
243
  msgid "Use the current site language"
244
  msgstr ""
245
 
246
+ #: google-captcha.php:597
247
  msgid "Using"
248
  msgstr ""
249
 
250
+ #: google-captcha.php:603
251
  #, fuzzy
252
  msgid "reCAPTCHA size"
253
  msgstr "Versão do PHP"
254
 
255
+ #: google-captcha.php:632
256
  msgid "Save Changes"
257
  msgstr "Salvar alterações"
258
 
259
+ #: google-captcha.php:690 google-captcha.php:1073
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr "Para usar o Google Captcha é necessário obter as chaves de"
262
 
263
+ #: google-captcha.php:691 google-captcha.php:1074
264
  msgid "here"
265
  msgstr "aqui"
266
 
267
+ #: google-captcha.php:692 google-captcha.php:1075
268
  msgid "and enter them on the"
269
  msgstr "e inserí-los no"
270
 
271
+ #: google-captcha.php:694 google-captcha.php:1077
272
  msgid "plugin setting page"
273
  msgstr "página de configuração do plugin"
274
 
275
+ #: google-captcha.php:885 google-captcha.php:923
276
  msgid "Error"
277
  msgstr ""
278
 
279
+ #: google-captcha.php:885
280
  #, fuzzy
281
  msgid "You have entered an incorrect reCAPTCHA value."
282
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
283
 
284
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
285
+ #, fuzzy
286
+ msgid "You have entered an incorrect reCAPTCHA value"
287
+ msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
288
+
289
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
290
+ msgid "ERROR"
291
+ msgstr ""
292
+
293
+ #: google-captcha.php:995
294
  #, fuzzy
295
  msgid ""
296
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
299
  "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
300
  "seu navegador e tente novamente."
301
 
302
+ #: google-captcha.php:1058
303
  msgid "Support"
304
  msgstr "Suporte"
305
 
languages/google-captcha-ru_RU.mo CHANGED
Binary file
languages/google-captcha-ru_RU.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
@@ -16,77 +16,91 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:362
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки Google Captcha"
22
 
23
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Error: You have entered an incorrect reCAPTCHA value."
25
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
26
 
27
- #: google-captcha.php:270
28
  msgid "Normal"
29
  msgstr "Нормальный"
30
 
31
- #: google-captcha.php:271
32
  msgid "Compact"
33
  msgstr "Компактный"
34
 
35
- #: google-captcha.php:277
36
  msgid "Site key"
37
  msgstr "Ключ"
38
 
39
- #: google-captcha.php:282
40
  msgid "Secret Key"
41
  msgstr "Секретный ключ"
42
 
43
- #: google-captcha.php:290
44
  msgid "Login form"
45
  msgstr "Форма логина"
46
 
47
- #: google-captcha.php:291
48
  msgid "Registration form"
49
  msgstr "Форма регистрации"
50
 
51
- #: google-captcha.php:292
52
  msgid "Reset password form"
53
  msgstr "Форма восстановления пароля"
54
 
55
- #: google-captcha.php:293
56
  msgid "Comments form"
57
  msgstr "Форма комментариев"
58
 
59
- #: google-captcha.php:312
60
  msgid "Enter site key"
61
  msgstr "Введите ключ"
62
 
63
- #: google-captcha.php:313 google-captcha.php:319
64
  msgid "WARNING: The captcha will not display while you don't fill key fields."
65
  msgstr ""
66
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
67
  "ключевые поля."
68
 
69
- #: google-captcha.php:318
70
  msgid "Enter secret key"
71
  msgstr "Введите секретный ключ"
72
 
73
- #: google-captcha.php:341
74
  msgid "Settings saved"
75
  msgstr "Настройки сохранены"
76
 
77
- #: google-captcha.php:347
78
  msgid "All plugin settings were restored."
79
  msgstr "Настройки плагина были восстановлены."
80
 
81
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
82
  msgid "Settings"
83
  msgstr "Настройки"
84
 
85
- #: google-captcha.php:365
86
  msgid "Go PRO"
87
  msgstr "Перейти на PRO версию"
88
 
89
- #: google-captcha.php:370
90
  msgid ""
91
  "Google Captcha version 2 will not work correctly, since the option "
92
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
@@ -95,7 +109,7 @@ msgstr ""
95
  "опция \"allow_url_fopen\". Пожалуйста, обратитесь в службу поддержки вашего "
96
  "хостинга."
97
 
98
- #: google-captcha.php:375
99
  msgid ""
100
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
101
  "version 1 features."
@@ -103,7 +117,7 @@ msgstr ""
103
  "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
104
  "отображаться только одна reCAPTCHA."
105
 
106
- #: google-captcha.php:390
107
  #, php-format
108
  msgid ""
109
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -112,7 +126,7 @@ msgstr ""
112
  "Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
113
  "пост, то используйте кнопку %s"
114
 
115
- #: google-captcha.php:396
116
  #, php-format
117
  msgid ""
118
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -125,71 +139,71 @@ msgstr ""
125
  "кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
126
  "вашу собственную форму, пожалуйста, используйте шорткод %s"
127
 
128
- #: google-captcha.php:404
129
  msgid "Authentication"
130
  msgstr "Идентификация"
131
 
132
- #: google-captcha.php:405
133
  #, php-format
134
  msgid "Before you are able to do something, you must to register %shere%s"
135
  msgstr ""
136
  "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться "
137
  "%sздесь%s"
138
 
139
- #: google-captcha.php:406
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
142
 
143
- #: google-captcha.php:418
144
  msgid "Options"
145
  msgstr "Опции"
146
 
147
- #: google-captcha.php:421
148
  msgid "Enable reCAPTCHA for"
149
  msgstr "Включить reCAPTCHA для"
150
 
151
- #: google-captcha.php:425
152
  msgid "WordPress default"
153
  msgstr "Стандартных форм WordPress"
154
 
155
- #: google-captcha.php:434
156
  msgid "This option is available only for network or for main blog"
157
  msgstr "Эта опция доступна только для сети или для основного блога"
158
 
159
- #: google-captcha.php:442
160
  msgid "Plugins"
161
  msgstr "Плагинов"
162
 
163
- #: google-captcha.php:450 google-captcha.php:455
164
  #, php-format
165
  msgid "You should %s to use this functionality"
166
  msgstr "Чтобы использовать этот функционал %s"
167
 
168
- #: google-captcha.php:451
169
  msgid "activate"
170
  msgstr "активируйте"
171
 
172
- #: google-captcha.php:451
173
  msgid "for network"
174
  msgstr "для сети"
175
 
176
- #: google-captcha.php:456
177
  msgid "download"
178
  msgstr "загрузить"
179
 
180
- #: google-captcha.php:468 google-captcha.php:545
181
  msgid "Close"
182
  msgstr "Закрыть"
183
 
184
- #: google-captcha.php:480 google-captcha.php:581
185
  msgid "Unlock premium options by upgrading to Pro version"
186
  msgstr "Активируйте премиум опции обновившись до Pro версии"
187
 
188
- #: google-captcha.php:483 google-captcha.php:584
189
  msgid "Learn More"
190
  msgstr "Подробнее"
191
 
192
- #: google-captcha.php:489
193
  #, php-format
194
  msgid ""
195
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
@@ -197,76 +211,84 @@ msgstr ""
197
  "Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
198
  "смотрите %s"
199
 
200
- #: google-captcha.php:489 google-captcha.php:982
201
  msgid "FAQ"
202
  msgstr "FAQ"
203
 
204
- #: google-captcha.php:494
205
  msgid "Hide reCAPTCHA in Comments form for"
206
  msgstr "Скрыть reCAPTCHA в Форма комментариев для"
207
 
208
- #: google-captcha.php:506
209
  msgid "reCAPTCHA version"
210
  msgstr "Версия reCAPTCHA"
211
 
212
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
213
- #: google-captcha.php:512
214
  msgid "version"
215
  msgstr "версия"
216
 
217
- #: google-captcha.php:518 google-captcha.php:531
218
  msgid "reCAPTCHA theme"
219
  msgstr "Тема reCAPTCHA"
220
 
221
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
222
  msgid "for version"
223
  msgstr "для версии"
224
 
225
- #: google-captcha.php:549
226
  msgid "reCAPTCHA language"
227
  msgstr "Язык reCAPTCHA"
228
 
229
- #: google-captcha.php:556
230
  msgid "Use the current site language"
231
  msgstr "Использовать текущий язык сайта"
232
 
233
- #: google-captcha.php:556
234
  msgid "Using"
235
  msgstr "Используя"
236
 
237
- #: google-captcha.php:562
238
  msgid "reCAPTCHA size"
239
  msgstr "Размер reCAPTCHA"
240
 
241
- #: google-captcha.php:591
242
  msgid "Save Changes"
243
  msgstr "Сохранить изменения"
244
 
245
- #: google-captcha.php:650 google-captcha.php:998
246
  msgid "To use Google Captcha you must get the keys from"
247
  msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
248
 
249
- #: google-captcha.php:651 google-captcha.php:999
250
  msgid "here"
251
  msgstr "здесь"
252
 
253
- #: google-captcha.php:652 google-captcha.php:1000
254
  msgid "and enter them on the"
255
  msgstr "и вставить их на"
256
 
257
- #: google-captcha.php:654 google-captcha.php:1002
258
  msgid "plugin setting page"
259
  msgstr "страницу настроек плагина"
260
 
261
- #: google-captcha.php:822 google-captcha.php:851
262
  msgid "Error"
263
  msgstr "Ошибка"
264
 
265
- #: google-captcha.php:822 google-captcha.php:881
266
  msgid "You have entered an incorrect reCAPTCHA value."
267
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
268
 
269
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
270
  msgid ""
271
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
272
  "browser, and try again."
@@ -274,7 +296,7 @@ msgstr ""
274
  "Ошибка: Вы ввели неверное значение reCAPTCHA. Нажмите копку НАЗАД в своем "
275
  "браузере и попытайтесь снова."
276
 
277
- #: google-captcha.php:983
278
  msgid "Support"
279
  msgstr "Поддержка"
280
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:33 google-captcha.php:403
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки Google Captcha"
22
 
23
+ #: google-captcha.php:146
24
+ msgid "Warning"
25
+ msgstr "Внимание"
26
+
27
+ #: google-captcha.php:146
28
+ msgid ""
29
+ "It has been found more than one reCAPTCHA in current form. In this case "
30
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
+ "blocks."
32
+ msgstr ""
33
+ "В текущем блоке найдено более одного блока reCAPTCHA. В этом случае "
34
+ "reCAPTCHA не будет работать корректно. Пожалуйста, удалите все лишние блоки "
35
+ "reCAPTCHA."
36
+
37
+ #: google-captcha.php:150
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
40
 
41
+ #: google-captcha.php:311
42
  msgid "Normal"
43
  msgstr "Нормальный"
44
 
45
+ #: google-captcha.php:312
46
  msgid "Compact"
47
  msgstr "Компактный"
48
 
49
+ #: google-captcha.php:318
50
  msgid "Site key"
51
  msgstr "Ключ"
52
 
53
+ #: google-captcha.php:323
54
  msgid "Secret Key"
55
  msgstr "Секретный ключ"
56
 
57
+ #: google-captcha.php:331
58
  msgid "Login form"
59
  msgstr "Форма логина"
60
 
61
+ #: google-captcha.php:332
62
  msgid "Registration form"
63
  msgstr "Форма регистрации"
64
 
65
+ #: google-captcha.php:333
66
  msgid "Reset password form"
67
  msgstr "Форма восстановления пароля"
68
 
69
+ #: google-captcha.php:334
70
  msgid "Comments form"
71
  msgstr "Форма комментариев"
72
 
73
+ #: google-captcha.php:353
74
  msgid "Enter site key"
75
  msgstr "Введите ключ"
76
 
77
+ #: google-captcha.php:354 google-captcha.php:360
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
81
  "ключевые поля."
82
 
83
+ #: google-captcha.php:359
84
  msgid "Enter secret key"
85
  msgstr "Введите секретный ключ"
86
 
87
+ #: google-captcha.php:382
88
  msgid "Settings saved"
89
  msgstr "Настройки сохранены"
90
 
91
+ #: google-captcha.php:388
92
  msgid "All plugin settings were restored."
93
  msgstr "Настройки плагина были восстановлены."
94
 
95
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
96
  msgid "Settings"
97
  msgstr "Настройки"
98
 
99
+ #: google-captcha.php:406
100
  msgid "Go PRO"
101
  msgstr "Перейти на PRO версию"
102
 
103
+ #: google-captcha.php:411
104
  msgid ""
105
  "Google Captcha version 2 will not work correctly, since the option "
106
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
109
  "опция \"allow_url_fopen\". Пожалуйста, обратитесь в службу поддержки вашего "
110
  "хостинга."
111
 
112
+ #: google-captcha.php:416
113
  msgid ""
114
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
115
  "version 1 features."
117
  "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
118
  "отображаться только одна reCAPTCHA."
119
 
120
+ #: google-captcha.php:431
121
  #, php-format
122
  msgid ""
123
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
126
  "Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
127
  "пост, то используйте кнопку %s"
128
 
129
+ #: google-captcha.php:437
130
  #, php-format
131
  msgid ""
132
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
139
  "кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
140
  "вашу собственную форму, пожалуйста, используйте шорткод %s"
141
 
142
+ #: google-captcha.php:445
143
  msgid "Authentication"
144
  msgstr "Идентификация"
145
 
146
+ #: google-captcha.php:446
147
  #, php-format
148
  msgid "Before you are able to do something, you must to register %shere%s"
149
  msgstr ""
150
  "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться "
151
  "%sздесь%s"
152
 
153
+ #: google-captcha.php:447
154
  msgid "Enter site key and secret key, that you get after registration."
155
  msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
156
 
157
+ #: google-captcha.php:459
158
  msgid "Options"
159
  msgstr "Опции"
160
 
161
+ #: google-captcha.php:462
162
  msgid "Enable reCAPTCHA for"
163
  msgstr "Включить reCAPTCHA для"
164
 
165
+ #: google-captcha.php:466
166
  msgid "WordPress default"
167
  msgstr "Стандартных форм WordPress"
168
 
169
+ #: google-captcha.php:475
170
  msgid "This option is available only for network or for main blog"
171
  msgstr "Эта опция доступна только для сети или для основного блога"
172
 
173
+ #: google-captcha.php:483
174
  msgid "Plugins"
175
  msgstr "Плагинов"
176
 
177
+ #: google-captcha.php:491 google-captcha.php:496
178
  #, php-format
179
  msgid "You should %s to use this functionality"
180
  msgstr "Чтобы использовать этот функционал %s"
181
 
182
+ #: google-captcha.php:492
183
  msgid "activate"
184
  msgstr "активируйте"
185
 
186
+ #: google-captcha.php:492
187
  msgid "for network"
188
  msgstr "для сети"
189
 
190
+ #: google-captcha.php:497
191
  msgid "download"
192
  msgstr "загрузить"
193
 
194
+ #: google-captcha.php:509 google-captcha.php:586
195
  msgid "Close"
196
  msgstr "Закрыть"
197
 
198
+ #: google-captcha.php:521 google-captcha.php:622
199
  msgid "Unlock premium options by upgrading to Pro version"
200
  msgstr "Активируйте премиум опции обновившись до Pro версии"
201
 
202
+ #: google-captcha.php:524 google-captcha.php:625
203
  msgid "Learn More"
204
  msgstr "Подробнее"
205
 
206
+ #: google-captcha.php:530
207
  #, php-format
208
  msgid ""
209
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
211
  "Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
212
  "смотрите %s"
213
 
214
+ #: google-captcha.php:530 google-captcha.php:1057
215
  msgid "FAQ"
216
  msgstr "FAQ"
217
 
218
+ #: google-captcha.php:535
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr "Скрыть reCAPTCHA в Форма комментариев для"
221
 
222
+ #: google-captcha.php:547
223
  msgid "reCAPTCHA version"
224
  msgstr "Версия reCAPTCHA"
225
 
226
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
227
+ #: google-captcha.php:553
228
  msgid "version"
229
  msgstr "версия"
230
 
231
+ #: google-captcha.php:559 google-captcha.php:572
232
  msgid "reCAPTCHA theme"
233
  msgstr "Тема reCAPTCHA"
234
 
235
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
236
  msgid "for version"
237
  msgstr "для версии"
238
 
239
+ #: google-captcha.php:590
240
  msgid "reCAPTCHA language"
241
  msgstr "Язык reCAPTCHA"
242
 
243
+ #: google-captcha.php:597
244
  msgid "Use the current site language"
245
  msgstr "Использовать текущий язык сайта"
246
 
247
+ #: google-captcha.php:597
248
  msgid "Using"
249
  msgstr "Используя"
250
 
251
+ #: google-captcha.php:603
252
  msgid "reCAPTCHA size"
253
  msgstr "Размер reCAPTCHA"
254
 
255
+ #: google-captcha.php:632
256
  msgid "Save Changes"
257
  msgstr "Сохранить изменения"
258
 
259
+ #: google-captcha.php:690 google-captcha.php:1073
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
262
 
263
+ #: google-captcha.php:691 google-captcha.php:1074
264
  msgid "here"
265
  msgstr "здесь"
266
 
267
+ #: google-captcha.php:692 google-captcha.php:1075
268
  msgid "and enter them on the"
269
  msgstr "и вставить их на"
270
 
271
+ #: google-captcha.php:694 google-captcha.php:1077
272
  msgid "plugin setting page"
273
  msgstr "страницу настроек плагина"
274
 
275
+ #: google-captcha.php:885 google-captcha.php:923
276
  msgid "Error"
277
  msgstr "Ошибка"
278
 
279
+ #: google-captcha.php:885
280
  msgid "You have entered an incorrect reCAPTCHA value."
281
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
282
 
283
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
284
+ msgid "You have entered an incorrect reCAPTCHA value"
285
+ msgstr "Вы ввели неверное значение reCAPTCHA."
286
+
287
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
288
+ msgid "ERROR"
289
+ msgstr "ОШИБКА"
290
+
291
+ #: google-captcha.php:995
292
  msgid ""
293
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
294
  "browser, and try again."
296
  "Ошибка: Вы ввели неверное значение reCAPTCHA. Нажмите копку НАЗАД в своем "
297
  "браузере и попытайтесь снова."
298
 
299
+ #: google-captcha.php:1058
300
  msgid "Support"
301
  msgstr "Поддержка"
302
 
languages/google-captcha-uk.mo CHANGED
Binary file
languages/google-captcha-uk.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
@@ -16,78 +16,92 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:362
20
  msgid "Google Captcha Settings"
21
  msgstr "Налаштування Google Captcha"
22
 
23
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Error: You have entered an incorrect reCAPTCHA value."
25
  msgstr ""
26
  "Помилка: Ви ввели невірне значення Captcha.Помилка: Ви ввели невірне "
27
  "значення reCAPTCHA."
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr "Нормальний"
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr "Компактний"
36
 
37
- #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Ключ сайту"
40
 
41
- #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Секретний ключ"
44
 
45
- #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Форма логіну"
48
 
49
- #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Форма реєстрації"
52
 
53
- #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Форма відновлення паролю"
56
 
57
- #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Форма коментарів"
60
 
61
- #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Введіть ключ сайту"
64
 
65
- #: google-captcha.php:313 google-captcha.php:319
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
  msgstr ""
68
  "УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
69
 
70
- #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Введіть секретний ключ"
73
 
74
- #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Налаштування збережено"
77
 
78
- #: google-captcha.php:347
79
  msgid "All plugin settings were restored."
80
  msgstr "Налаштування плагіна були відновлені."
81
 
82
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
83
  msgid "Settings"
84
  msgstr "Налаштування"
85
 
86
- #: google-captcha.php:365
87
  msgid "Go PRO"
88
  msgstr "Перейти на PRO версію"
89
 
90
- #: google-captcha.php:370
91
  msgid ""
92
  "Google Captcha version 2 will not work correctly, since the option "
93
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
@@ -96,7 +110,7 @@ msgstr ""
96
  "\"allow_url_fopen \". Будь ласка, зверніться в службу підтримки вашого "
97
  "хостингу."
98
 
99
- #: google-captcha.php:375
100
  msgid ""
101
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
102
  "version 1 features."
@@ -104,7 +118,7 @@ msgstr ""
104
  "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
105
  "відображатися тільки одна reCAPTCHA."
106
 
107
- #: google-captcha.php:390
108
  #, php-format
109
  msgid ""
110
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -113,7 +127,7 @@ msgstr ""
113
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
114
  "то використовуйте кнопку %s"
115
 
116
- #: google-captcha.php:396
117
  #, php-format
118
  msgid ""
119
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -126,69 +140,69 @@ msgstr ""
126
  "кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
127
  "вашу власну форму, будь ласка, використовуйте шорткод %s"
128
 
129
- #: google-captcha.php:404
130
  msgid "Authentication"
131
  msgstr "Ідентифікація"
132
 
133
- #: google-captcha.php:405
134
  #, php-format
135
  msgid "Before you are able to do something, you must to register %shere%s"
136
  msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %sтут%s"
137
 
138
- #: google-captcha.php:406
139
  msgid "Enter site key and secret key, that you get after registration."
140
  msgstr "Введіть відкритий і секретний ключі, які ви отримали після реєстрації."
141
 
142
- #: google-captcha.php:418
143
  msgid "Options"
144
  msgstr "Опції"
145
 
146
- #: google-captcha.php:421
147
  msgid "Enable reCAPTCHA for"
148
  msgstr "Включити reCAPTCHA для"
149
 
150
- #: google-captcha.php:425
151
  msgid "WordPress default"
152
  msgstr "Стандартних форм WordPress"
153
 
154
- #: google-captcha.php:434
155
  msgid "This option is available only for network or for main blog"
156
  msgstr "Ця опція доступна тільки для мережі або для основного блогу"
157
 
158
- #: google-captcha.php:442
159
  msgid "Plugins"
160
  msgstr "Плагінів"
161
 
162
- #: google-captcha.php:450 google-captcha.php:455
163
  #, php-format
164
  msgid "You should %s to use this functionality"
165
  msgstr "Щоб використовувати цей функціонал %s"
166
 
167
- #: google-captcha.php:451
168
  msgid "activate"
169
  msgstr "активувати"
170
 
171
- #: google-captcha.php:451
172
  msgid "for network"
173
  msgstr "для мережі"
174
 
175
- #: google-captcha.php:456
176
  msgid "download"
177
  msgstr "завантажити"
178
 
179
- #: google-captcha.php:468 google-captcha.php:545
180
  msgid "Close"
181
  msgstr "Закрити"
182
 
183
- #: google-captcha.php:480 google-captcha.php:581
184
  msgid "Unlock premium options by upgrading to Pro version"
185
  msgstr "Активуйте преміум опції оновившись до Pro версії"
186
 
187
- #: google-captcha.php:483 google-captcha.php:584
188
  msgid "Learn More"
189
  msgstr "Детальніше"
190
 
191
- #: google-captcha.php:489
192
  #, php-format
193
  msgid ""
194
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
@@ -196,76 +210,84 @@ msgstr ""
196
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
197
  "%s"
198
 
199
- #: google-captcha.php:489 google-captcha.php:982
200
  msgid "FAQ"
201
  msgstr "FAQ"
202
 
203
- #: google-captcha.php:494
204
  msgid "Hide reCAPTCHA in Comments form for"
205
  msgstr "Приховати reCAPTCHA у Форма коментарів для"
206
 
207
- #: google-captcha.php:506
208
  msgid "reCAPTCHA version"
209
  msgstr "Версія reCAPTCHA"
210
 
211
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
212
- #: google-captcha.php:512
213
  msgid "version"
214
  msgstr "версія"
215
 
216
- #: google-captcha.php:518 google-captcha.php:531
217
  msgid "reCAPTCHA theme"
218
  msgstr "reCAPTCHA theme"
219
 
220
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
221
  msgid "for version"
222
  msgstr "для версії"
223
 
224
- #: google-captcha.php:549
225
  msgid "reCAPTCHA language"
226
  msgstr "Мова reCAPTCHA"
227
 
228
- #: google-captcha.php:556
229
  msgid "Use the current site language"
230
  msgstr "Використовувати поточну мову сайту"
231
 
232
- #: google-captcha.php:556
233
  msgid "Using"
234
  msgstr "Використовуючи"
235
 
236
- #: google-captcha.php:562
237
  msgid "reCAPTCHA size"
238
  msgstr "Розмір reCAPTCHA"
239
 
240
- #: google-captcha.php:591
241
  msgid "Save Changes"
242
  msgstr "Зберегти зміни"
243
 
244
- #: google-captcha.php:650 google-captcha.php:998
245
  msgid "To use Google Captcha you must get the keys from"
246
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
247
 
248
- #: google-captcha.php:651 google-captcha.php:999
249
  msgid "here"
250
  msgstr "тут"
251
 
252
- #: google-captcha.php:652 google-captcha.php:1000
253
  msgid "and enter them on the"
254
  msgstr "і вставте їх у"
255
 
256
- #: google-captcha.php:654 google-captcha.php:1002
257
  msgid "plugin setting page"
258
  msgstr "сторінку налаштувань плагіну"
259
 
260
- #: google-captcha.php:822 google-captcha.php:851
261
  msgid "Error"
262
  msgstr "Помилка"
263
 
264
- #: google-captcha.php:822 google-captcha.php:881
265
  msgid "You have entered an incorrect reCAPTCHA value."
266
  msgstr "Ви ввели невірне значення reCAPTCHA."
267
 
268
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
269
  msgid ""
270
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
271
  "browser, and try again."
@@ -273,7 +295,7 @@ msgstr ""
273
  "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері "
274
  "та спробуйте знову."
275
 
276
- #: google-captcha.php:983
277
  msgid "Support"
278
  msgstr "Техпідтримка"
279
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:33 google-captcha.php:403
20
  msgid "Google Captcha Settings"
21
  msgstr "Налаштування Google Captcha"
22
 
23
+ #: google-captcha.php:146
24
+ msgid "Warning"
25
+ msgstr "Увага"
26
+
27
+ #: google-captcha.php:146
28
+ msgid ""
29
+ "It has been found more than one reCAPTCHA in current form. In this case "
30
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
+ "blocks."
32
+ msgstr ""
33
+ "В поточній формі знайдено більш ніж один блок reCAPTCHA. В цьому разі "
34
+ "reCAPTCHA не буде працювати коректно. Будь-ласка видаліть усі зайві блоки "
35
+ "reCAPTCHA."
36
+
37
+ #: google-captcha.php:150
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr ""
40
  "Помилка: Ви ввели невірне значення Captcha.Помилка: Ви ввели невірне "
41
  "значення reCAPTCHA."
42
 
43
+ #: google-captcha.php:311
44
  msgid "Normal"
45
  msgstr "Нормальний"
46
 
47
+ #: google-captcha.php:312
48
  msgid "Compact"
49
  msgstr "Компактний"
50
 
51
+ #: google-captcha.php:318
52
  msgid "Site key"
53
  msgstr "Ключ сайту"
54
 
55
+ #: google-captcha.php:323
56
  msgid "Secret Key"
57
  msgstr "Секретний ключ"
58
 
59
+ #: google-captcha.php:331
60
  msgid "Login form"
61
  msgstr "Форма логіну"
62
 
63
+ #: google-captcha.php:332
64
  msgid "Registration form"
65
  msgstr "Форма реєстрації"
66
 
67
+ #: google-captcha.php:333
68
  msgid "Reset password form"
69
  msgstr "Форма відновлення паролю"
70
 
71
+ #: google-captcha.php:334
72
  msgid "Comments form"
73
  msgstr "Форма коментарів"
74
 
75
+ #: google-captcha.php:353
76
  msgid "Enter site key"
77
  msgstr "Введіть ключ сайту"
78
 
79
+ #: google-captcha.php:354 google-captcha.php:360
80
  msgid "WARNING: The captcha will not display while you don't fill key fields."
81
  msgstr ""
82
  "УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
83
 
84
+ #: google-captcha.php:359
85
  msgid "Enter secret key"
86
  msgstr "Введіть секретний ключ"
87
 
88
+ #: google-captcha.php:382
89
  msgid "Settings saved"
90
  msgstr "Налаштування збережено"
91
 
92
+ #: google-captcha.php:388
93
  msgid "All plugin settings were restored."
94
  msgstr "Налаштування плагіна були відновлені."
95
 
96
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
97
  msgid "Settings"
98
  msgstr "Налаштування"
99
 
100
+ #: google-captcha.php:406
101
  msgid "Go PRO"
102
  msgstr "Перейти на PRO версію"
103
 
104
+ #: google-captcha.php:411
105
  msgid ""
106
  "Google Captcha version 2 will not work correctly, since the option "
107
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
110
  "\"allow_url_fopen \". Будь ласка, зверніться в службу підтримки вашого "
111
  "хостингу."
112
 
113
+ #: google-captcha.php:416
114
  msgid ""
115
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
116
  "version 1 features."
118
  "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
119
  "відображатися тільки одна reCAPTCHA."
120
 
121
+ #: google-captcha.php:431
122
  #, php-format
123
  msgid ""
124
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
127
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
128
  "то використовуйте кнопку %s"
129
 
130
+ #: google-captcha.php:437
131
  #, php-format
132
  msgid ""
133
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
140
  "кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
141
  "вашу власну форму, будь ласка, використовуйте шорткод %s"
142
 
143
+ #: google-captcha.php:445
144
  msgid "Authentication"
145
  msgstr "Ідентифікація"
146
 
147
+ #: google-captcha.php:446
148
  #, php-format
149
  msgid "Before you are able to do something, you must to register %shere%s"
150
  msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %sтут%s"
151
 
152
+ #: google-captcha.php:447
153
  msgid "Enter site key and secret key, that you get after registration."
154
  msgstr "Введіть відкритий і секретний ключі, які ви отримали після реєстрації."
155
 
156
+ #: google-captcha.php:459
157
  msgid "Options"
158
  msgstr "Опції"
159
 
160
+ #: google-captcha.php:462
161
  msgid "Enable reCAPTCHA for"
162
  msgstr "Включити reCAPTCHA для"
163
 
164
+ #: google-captcha.php:466
165
  msgid "WordPress default"
166
  msgstr "Стандартних форм WordPress"
167
 
168
+ #: google-captcha.php:475
169
  msgid "This option is available only for network or for main blog"
170
  msgstr "Ця опція доступна тільки для мережі або для основного блогу"
171
 
172
+ #: google-captcha.php:483
173
  msgid "Plugins"
174
  msgstr "Плагінів"
175
 
176
+ #: google-captcha.php:491 google-captcha.php:496
177
  #, php-format
178
  msgid "You should %s to use this functionality"
179
  msgstr "Щоб використовувати цей функціонал %s"
180
 
181
+ #: google-captcha.php:492
182
  msgid "activate"
183
  msgstr "активувати"
184
 
185
+ #: google-captcha.php:492
186
  msgid "for network"
187
  msgstr "для мережі"
188
 
189
+ #: google-captcha.php:497
190
  msgid "download"
191
  msgstr "завантажити"
192
 
193
+ #: google-captcha.php:509 google-captcha.php:586
194
  msgid "Close"
195
  msgstr "Закрити"
196
 
197
+ #: google-captcha.php:521 google-captcha.php:622
198
  msgid "Unlock premium options by upgrading to Pro version"
199
  msgstr "Активуйте преміум опції оновившись до Pro версії"
200
 
201
+ #: google-captcha.php:524 google-captcha.php:625
202
  msgid "Learn More"
203
  msgstr "Детальніше"
204
 
205
+ #: google-captcha.php:530
206
  #, php-format
207
  msgid ""
208
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
210
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
211
  "%s"
212
 
213
+ #: google-captcha.php:530 google-captcha.php:1057
214
  msgid "FAQ"
215
  msgstr "FAQ"
216
 
217
+ #: google-captcha.php:535
218
  msgid "Hide reCAPTCHA in Comments form for"
219
  msgstr "Приховати reCAPTCHA у Форма коментарів для"
220
 
221
+ #: google-captcha.php:547
222
  msgid "reCAPTCHA version"
223
  msgstr "Версія reCAPTCHA"
224
 
225
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
226
+ #: google-captcha.php:553
227
  msgid "version"
228
  msgstr "версія"
229
 
230
+ #: google-captcha.php:559 google-captcha.php:572
231
  msgid "reCAPTCHA theme"
232
  msgstr "reCAPTCHA theme"
233
 
234
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
235
  msgid "for version"
236
  msgstr "для версії"
237
 
238
+ #: google-captcha.php:590
239
  msgid "reCAPTCHA language"
240
  msgstr "Мова reCAPTCHA"
241
 
242
+ #: google-captcha.php:597
243
  msgid "Use the current site language"
244
  msgstr "Використовувати поточну мову сайту"
245
 
246
+ #: google-captcha.php:597
247
  msgid "Using"
248
  msgstr "Використовуючи"
249
 
250
+ #: google-captcha.php:603
251
  msgid "reCAPTCHA size"
252
  msgstr "Розмір reCAPTCHA"
253
 
254
+ #: google-captcha.php:632
255
  msgid "Save Changes"
256
  msgstr "Зберегти зміни"
257
 
258
+ #: google-captcha.php:690 google-captcha.php:1073
259
  msgid "To use Google Captcha you must get the keys from"
260
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
261
 
262
+ #: google-captcha.php:691 google-captcha.php:1074
263
  msgid "here"
264
  msgstr "тут"
265
 
266
+ #: google-captcha.php:692 google-captcha.php:1075
267
  msgid "and enter them on the"
268
  msgstr "і вставте їх у"
269
 
270
+ #: google-captcha.php:694 google-captcha.php:1077
271
  msgid "plugin setting page"
272
  msgstr "сторінку налаштувань плагіну"
273
 
274
+ #: google-captcha.php:885 google-captcha.php:923
275
  msgid "Error"
276
  msgstr "Помилка"
277
 
278
+ #: google-captcha.php:885
279
  msgid "You have entered an incorrect reCAPTCHA value."
280
  msgstr "Ви ввели невірне значення reCAPTCHA."
281
 
282
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
283
+ msgid "You have entered an incorrect reCAPTCHA value"
284
+ msgstr "Ви ввели невірне значення reCAPTCHA"
285
+
286
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
287
+ msgid "ERROR"
288
+ msgstr "ПОМИЛКА"
289
+
290
+ #: google-captcha.php:995
291
  msgid ""
292
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
293
  "browser, and try again."
295
  "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері "
296
  "та спробуйте знову."
297
 
298
+ #: google-captcha.php:1058
299
  msgid "Support"
300
  msgstr "Техпідтримка"
301
 
languages/google-captcha-zh_TW.mo CHANGED
Binary file
languages/google-captcha-zh_TW.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Nick Lai <nick20080808@gmail.com>\n"
9
  "Language: zh_TW\n"
10
  "MIME-Version: 1.0\n"
@@ -17,91 +17,102 @@ msgstr ""
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:362
21
  msgid "Google Captcha Settings"
22
  msgstr "reCAPTCHA 驗證碼設置"
23
 
24
- #: google-captcha.php:166
 
 
 
 
 
 
 
 
 
 
 
25
  #, fuzzy
26
  msgid "Error: You have entered an incorrect reCAPTCHA value."
27
  msgstr "錯誤:您輸入的驗證碼不正確。"
28
 
29
- #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
- #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
- #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr ""
40
 
41
- #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr ""
44
 
45
- #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "登入頁"
48
 
49
- #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "用戶註冊頁"
52
 
53
- #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "重設密碼頁"
56
 
57
- #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "發表迴響框"
60
 
61
- #: google-captcha.php:312
62
  #, fuzzy
63
  msgid "Enter site key"
64
  msgstr "輸入私有密鑰"
65
 
66
- #: google-captcha.php:313 google-captcha.php:319
67
  msgid "WARNING: The captcha will not display while you don't fill key fields."
68
  msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
69
 
70
- #: google-captcha.php:318
71
  #, fuzzy
72
  msgid "Enter secret key"
73
  msgstr "輸入私有密鑰"
74
 
75
- #: google-captcha.php:341
76
  msgid "Settings saved"
77
  msgstr "設定已儲存"
78
 
79
- #: google-captcha.php:347
80
  #, fuzzy
81
  msgid "All plugin settings were restored."
82
  msgstr "外掛設置頁"
83
 
84
- #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
85
  msgid "Settings"
86
  msgstr "設定"
87
 
88
- #: google-captcha.php:365
89
  msgid "Go PRO"
90
  msgstr ""
91
 
92
- #: google-captcha.php:370
93
  msgid ""
94
  "Google Captcha version 2 will not work correctly, since the option "
95
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
96
  msgstr ""
97
 
98
- #: google-captcha.php:375
99
  msgid ""
100
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
101
  "version 1 features."
102
  msgstr ""
103
 
104
- #: google-captcha.php:390
105
  #, fuzzy, php-format
106
  msgid ""
107
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -109,7 +120,7 @@ msgid ""
109
  msgstr ""
110
  "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
111
 
112
- #: google-captcha.php:396
113
  #, php-format
114
  msgid ""
115
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -118,155 +129,164 @@ msgid ""
118
  "your own form , please use the shortcode %s"
119
  msgstr ""
120
 
121
- #: google-captcha.php:404
122
  msgid "Authentication"
123
  msgstr "身份驗證"
124
 
125
- #: google-captcha.php:405
126
  #, fuzzy, php-format
127
  msgid "Before you are able to do something, you must to register %shere%s"
128
  msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
129
 
130
- #: google-captcha.php:406
131
  #, fuzzy
132
  msgid "Enter site key and secret key, that you get after registration."
133
  msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
134
 
135
- #: google-captcha.php:418
136
  msgid "Options"
137
  msgstr "選項"
138
 
139
- #: google-captcha.php:421
140
  msgid "Enable reCAPTCHA for"
141
  msgstr ""
142
 
143
- #: google-captcha.php:425
144
  msgid "WordPress default"
145
  msgstr ""
146
 
147
- #: google-captcha.php:434
148
  msgid "This option is available only for network or for main blog"
149
  msgstr ""
150
 
151
- #: google-captcha.php:442
152
  #, fuzzy
153
  msgid "Plugins"
154
  msgstr "外掛頁面"
155
 
156
- #: google-captcha.php:450 google-captcha.php:455
157
  #, php-format
158
  msgid "You should %s to use this functionality"
159
  msgstr ""
160
 
161
- #: google-captcha.php:451
162
  #, fuzzy
163
  msgid "activate"
164
  msgstr "Активировать Contact form"
165
 
166
- #: google-captcha.php:451
167
  msgid "for network"
168
  msgstr ""
169
 
170
- #: google-captcha.php:456
171
  msgid "download"
172
  msgstr ""
173
 
174
- #: google-captcha.php:468 google-captcha.php:545
175
  msgid "Close"
176
  msgstr ""
177
 
178
- #: google-captcha.php:480 google-captcha.php:581
179
  msgid "Unlock premium options by upgrading to Pro version"
180
  msgstr ""
181
 
182
- #: google-captcha.php:483 google-captcha.php:584
183
  msgid "Learn More"
184
  msgstr ""
185
 
186
- #: google-captcha.php:489
187
  #, php-format
188
  msgid ""
189
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
190
  msgstr ""
191
 
192
- #: google-captcha.php:489 google-captcha.php:982
193
  msgid "FAQ"
194
  msgstr "常見問題"
195
 
196
- #: google-captcha.php:494
197
  msgid "Hide reCAPTCHA in Comments form for"
198
  msgstr ""
199
 
200
- #: google-captcha.php:506
201
  msgid "reCAPTCHA version"
202
  msgstr ""
203
 
204
- #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
205
- #: google-captcha.php:512
206
  msgid "version"
207
  msgstr ""
208
 
209
- #: google-captcha.php:518 google-captcha.php:531
210
  msgid "reCAPTCHA theme"
211
  msgstr ""
212
 
213
- #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
214
  msgid "for version"
215
  msgstr ""
216
 
217
- #: google-captcha.php:549
218
  msgid "reCAPTCHA language"
219
  msgstr ""
220
 
221
- #: google-captcha.php:556
222
  msgid "Use the current site language"
223
  msgstr ""
224
 
225
- #: google-captcha.php:556
226
  msgid "Using"
227
  msgstr ""
228
 
229
- #: google-captcha.php:562
230
  msgid "reCAPTCHA size"
231
  msgstr ""
232
 
233
- #: google-captcha.php:591
234
  msgid "Save Changes"
235
  msgstr "儲存變更"
236
 
237
- #: google-captcha.php:650 google-captcha.php:998
238
  msgid "To use Google Captcha you must get the keys from"
239
  msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
240
 
241
- #: google-captcha.php:651 google-captcha.php:999
242
  msgid "here"
243
  msgstr "點我"
244
 
245
- #: google-captcha.php:652 google-captcha.php:1000
246
  msgid "and enter them on the"
247
  msgstr "然後將他們輸入到"
248
 
249
- #: google-captcha.php:654 google-captcha.php:1002
250
  msgid "plugin setting page"
251
  msgstr "外掛設置頁"
252
 
253
- #: google-captcha.php:822 google-captcha.php:851
254
  msgid "Error"
255
  msgstr ""
256
 
257
- #: google-captcha.php:822 google-captcha.php:881
258
  #, fuzzy
259
  msgid "You have entered an incorrect reCAPTCHA value."
260
  msgstr "錯誤:您輸入的驗證碼不正確。"
261
 
262
- #: google-captcha.php:851
 
 
 
 
 
 
 
 
 
263
  #, fuzzy
264
  msgid ""
265
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
266
  "browser, and try again."
267
  msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
268
 
269
- #: google-captcha.php:983
270
  msgid "Support"
271
  msgstr "支援"
272
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Nick Lai <nick20080808@gmail.com>\n"
9
  "Language: zh_TW\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "reCAPTCHA 驗證碼設置"
23
 
24
+ #: google-captcha.php:146
25
+ msgid "Warning"
26
+ msgstr ""
27
+
28
+ #: google-captcha.php:146
29
+ msgid ""
30
+ "It has been found more than one reCAPTCHA in current form. In this case "
31
+ "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
+ "blocks."
33
+ msgstr ""
34
+
35
+ #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "錯誤:您輸入的驗證碼不正確。"
39
 
40
+ #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:318
49
  msgid "Site key"
50
  msgstr ""
51
 
52
+ #: google-captcha.php:323
53
  msgid "Secret Key"
54
  msgstr ""
55
 
56
+ #: google-captcha.php:331
57
  msgid "Login form"
58
  msgstr "登入頁"
59
 
60
+ #: google-captcha.php:332
61
  msgid "Registration form"
62
  msgstr "用戶註冊頁"
63
 
64
+ #: google-captcha.php:333
65
  msgid "Reset password form"
66
  msgstr "重設密碼頁"
67
 
68
+ #: google-captcha.php:334
69
  msgid "Comments form"
70
  msgstr "發表迴響框"
71
 
72
+ #: google-captcha.php:353
73
  #, fuzzy
74
  msgid "Enter site key"
75
  msgstr "輸入私有密鑰"
76
 
77
+ #: google-captcha.php:354 google-captcha.php:360
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
80
 
81
+ #: google-captcha.php:359
82
  #, fuzzy
83
  msgid "Enter secret key"
84
  msgstr "輸入私有密鑰"
85
 
86
+ #: google-captcha.php:382
87
  msgid "Settings saved"
88
  msgstr "設定已儲存"
89
 
90
+ #: google-captcha.php:388
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "外掛設置頁"
94
 
95
+ #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
96
  msgid "Settings"
97
  msgstr "設定"
98
 
99
+ #: google-captcha.php:406
100
  msgid "Go PRO"
101
  msgstr ""
102
 
103
+ #: google-captcha.php:411
104
  msgid ""
105
  "Google Captcha version 2 will not work correctly, since the option "
106
  "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
107
  msgstr ""
108
 
109
+ #: google-captcha.php:416
110
  msgid ""
111
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
112
  "version 1 features."
113
  msgstr ""
114
 
115
+ #: google-captcha.php:431
116
  #, fuzzy, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
120
  msgstr ""
121
  "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
122
 
123
+ #: google-captcha.php:437
124
  #, php-format
125
  msgid ""
126
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
129
  "your own form , please use the shortcode %s"
130
  msgstr ""
131
 
132
+ #: google-captcha.php:445
133
  msgid "Authentication"
134
  msgstr "身份驗證"
135
 
136
+ #: google-captcha.php:446
137
  #, fuzzy, php-format
138
  msgid "Before you are able to do something, you must to register %shere%s"
139
  msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
140
 
141
+ #: google-captcha.php:447
142
  #, fuzzy
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
145
 
146
+ #: google-captcha.php:459
147
  msgid "Options"
148
  msgstr "選項"
149
 
150
+ #: google-captcha.php:462
151
  msgid "Enable reCAPTCHA for"
152
  msgstr ""
153
 
154
+ #: google-captcha.php:466
155
  msgid "WordPress default"
156
  msgstr ""
157
 
158
+ #: google-captcha.php:475
159
  msgid "This option is available only for network or for main blog"
160
  msgstr ""
161
 
162
+ #: google-captcha.php:483
163
  #, fuzzy
164
  msgid "Plugins"
165
  msgstr "外掛頁面"
166
 
167
+ #: google-captcha.php:491 google-captcha.php:496
168
  #, php-format
169
  msgid "You should %s to use this functionality"
170
  msgstr ""
171
 
172
+ #: google-captcha.php:492
173
  #, fuzzy
174
  msgid "activate"
175
  msgstr "Активировать Contact form"
176
 
177
+ #: google-captcha.php:492
178
  msgid "for network"
179
  msgstr ""
180
 
181
+ #: google-captcha.php:497
182
  msgid "download"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:509 google-captcha.php:586
186
  msgid "Close"
187
  msgstr ""
188
 
189
+ #: google-captcha.php:521 google-captcha.php:622
190
  msgid "Unlock premium options by upgrading to Pro version"
191
  msgstr ""
192
 
193
+ #: google-captcha.php:524 google-captcha.php:625
194
  msgid "Learn More"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:530
198
  #, php-format
199
  msgid ""
200
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
201
  msgstr ""
202
 
203
+ #: google-captcha.php:530 google-captcha.php:1057
204
  msgid "FAQ"
205
  msgstr "常見問題"
206
 
207
+ #: google-captcha.php:535
208
  msgid "Hide reCAPTCHA in Comments form for"
209
  msgstr ""
210
 
211
+ #: google-captcha.php:547
212
  msgid "reCAPTCHA version"
213
  msgstr ""
214
 
215
+ #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
216
+ #: google-captcha.php:553
217
  msgid "version"
218
  msgstr ""
219
 
220
+ #: google-captcha.php:559 google-captcha.php:572
221
  msgid "reCAPTCHA theme"
222
  msgstr ""
223
 
224
+ #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
225
  msgid "for version"
226
  msgstr ""
227
 
228
+ #: google-captcha.php:590
229
  msgid "reCAPTCHA language"
230
  msgstr ""
231
 
232
+ #: google-captcha.php:597
233
  msgid "Use the current site language"
234
  msgstr ""
235
 
236
+ #: google-captcha.php:597
237
  msgid "Using"
238
  msgstr ""
239
 
240
+ #: google-captcha.php:603
241
  msgid "reCAPTCHA size"
242
  msgstr ""
243
 
244
+ #: google-captcha.php:632
245
  msgid "Save Changes"
246
  msgstr "儲存變更"
247
 
248
+ #: google-captcha.php:690 google-captcha.php:1073
249
  msgid "To use Google Captcha you must get the keys from"
250
  msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
251
 
252
+ #: google-captcha.php:691 google-captcha.php:1074
253
  msgid "here"
254
  msgstr "點我"
255
 
256
+ #: google-captcha.php:692 google-captcha.php:1075
257
  msgid "and enter them on the"
258
  msgstr "然後將他們輸入到"
259
 
260
+ #: google-captcha.php:694 google-captcha.php:1077
261
  msgid "plugin setting page"
262
  msgstr "外掛設置頁"
263
 
264
+ #: google-captcha.php:885 google-captcha.php:923
265
  msgid "Error"
266
  msgstr ""
267
 
268
+ #: google-captcha.php:885
269
  #, fuzzy
270
  msgid "You have entered an incorrect reCAPTCHA value."
271
  msgstr "錯誤:您輸入的驗證碼不正確。"
272
 
273
+ #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
274
+ #, fuzzy
275
+ msgid "You have entered an incorrect reCAPTCHA value"
276
+ msgstr "錯誤:您輸入的驗證碼不正確。"
277
+
278
+ #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
279
+ msgid "ERROR"
280
+ msgstr ""
281
+
282
+ #: google-captcha.php:995
283
  #, fuzzy
284
  msgid ""
285
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
286
  "browser, and try again."
287
  msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
288
 
289
+ #: google-captcha.php:1058
290
  msgid "Support"
291
  msgstr "支援"
292
 
lib_v2/license.txt DELETED
@@ -1,29 +0,0 @@
1
- Copyright 2014, Google Inc.
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are
6
- met:
7
-
8
- * Redistributions of source code must retain the above copyright
9
- notice, this list of conditions and the following disclaimer.
10
- * Redistributions in binary form must reproduce the above
11
- copyright notice, this list of conditions and the following disclaimer
12
- in the documentation and/or other materials provided with the
13
- distribution.
14
- * Neither the name of Google Inc. nor the names of its
15
- contributors may be used to endorse or promote products derived from
16
- this software without specific prior written permission.
17
-
18
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lib_v2/recaptchalib.php DELETED
@@ -1,151 +0,0 @@
1
- <?php
2
- /**
3
- * This is a PHP library that handles calling reCAPTCHA.
4
- * - Documentation and latest version
5
- * https://developers.google.com/recaptcha/docs/php
6
- * - Get a reCAPTCHA API Key
7
- * https://www.google.com/recaptcha/admin/create
8
- * - Discussion group
9
- * http://groups.google.com/group/recaptcha
10
- *
11
- * @copyright Copyright (c) 2014, Google Inc.
12
- * @link http://www.google.com/recaptcha
13
- *
14
- * Permission is hereby granted, free of charge, to any person obtaining a copy
15
- * of this software and associated documentation files (the "Software"), to deal
16
- * in the Software without restriction, including without limitation the rights
17
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
- * copies of the Software, and to permit persons to whom the Software is
19
- * furnished to do so, subject to the following conditions:
20
- *
21
- * The above copyright notice and this permission notice shall be included in
22
- * all copies or substantial portions of the Software.
23
- *
24
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30
- * THE SOFTWARE.
31
- */
32
-
33
- /**
34
- * A gglcptch_ReCaptchaResponse is returned from checkAnswer().
35
- */
36
- class gglcptch_ReCaptchaResponse
37
- {
38
- public $success;
39
- public $errorCodes;
40
- }
41
-
42
- class gglcptch_ReCaptcha
43
- {
44
- private static $_signupUrl = "https://www.google.com/recaptcha/admin";
45
- private static $_siteVerifyUrl =
46
- "https://www.google.com/recaptcha/api/siteverify?";
47
- private $_secret;
48
- private static $_version = "php_1.0";
49
-
50
- /**
51
- * Constructor.
52
- *
53
- * @param string $secret shared secret between site and ReCAPTCHA server.
54
- */
55
- function gglcptch_ReCaptcha($secret)
56
- {
57
- if ($secret == null || $secret == "") {
58
- die("To use reCAPTCHA you must get an API key from <a href='"
59
- . self::$_signupUrl . "'>" . self::$_signupUrl . "</a>");
60
- }
61
- $this->_secret=$secret;
62
- }
63
-
64
- /**
65
- * Encodes the given data into a query string format.
66
- *
67
- * @param array $data array of string elements to be encoded.
68
- *
69
- * @return string - encoded request.
70
- */
71
- private function _encodeQS($data)
72
- {
73
- $req = "";
74
- foreach ($data as $key => $value) {
75
- $req .= $key . '=' . urlencode(stripslashes($value)) . '&';
76
- }
77
-
78
- // Cut the last '&'
79
- $req=substr($req, 0, strlen($req)-1);
80
- return $req;
81
- }
82
-
83
- /**
84
- * Submits an HTTP GET to a reCAPTCHA server.
85
- *
86
- * @param string $path url path to recaptcha server.
87
- * @param array $data array of parameters to be sent.
88
- *
89
- * @return array response
90
- */
91
- private function _submitHTTPGet( $path, $data )
92
- {
93
- $req = $this->_encodeQS($data);
94
- if ( version_compare( phpversion(), '5.6', '<' ) ) {
95
- $response = file_get_contents( $path . $req );
96
- } else {
97
- $ctx = array(
98
- 'ssl' => array(
99
- 'verify_peer' => false,
100
- 'verify_peer_name' => false,
101
- 'allow_self_signed' => true
102
- )
103
- );
104
- $response = file_get_contents( $path . $req, false, stream_context_create( $ctx ) );
105
- }
106
- return $response;
107
- }
108
-
109
- /**
110
- * Calls the reCAPTCHA siteverify API to verify whether the user passes
111
- * CAPTCHA test.
112
- *
113
- * @param string $remoteIp IP address of end user.
114
- * @param string $response response string from recaptcha verification.
115
- *
116
- * @return gglcptch_ReCaptchaResponse
117
- */
118
- public function verifyResponse($remoteIp, $response)
119
- {
120
- // Discard empty solution submissions
121
- if ($response == null || strlen($response) == 0) {
122
- $recaptchaResponse = new gglcptch_ReCaptchaResponse();
123
- $recaptchaResponse->success = false;
124
- $recaptchaResponse->errorCodes = 'missing-input';
125
- return $recaptchaResponse;
126
- }
127
-
128
- $getResponse = $this->_submitHttpGet(
129
- self::$_siteVerifyUrl,
130
- array (
131
- 'secret' => $this->_secret,
132
- 'remoteip' => $remoteIp,
133
- 'v' => self::$_version,
134
- 'response' => $response
135
- )
136
- );
137
- $answers = json_decode($getResponse, true);
138
- $recaptchaResponse = new gglcptch_ReCaptchaResponse();
139
-
140
- if (trim($answers ['success']) == true) {
141
- $recaptchaResponse->success = true;
142
- } else {
143
- $recaptchaResponse->success = false;
144
- $recaptchaResponse->errorCodes = isset( $answers["error-codes"] ) ? $answers["error-codes"] : '';
145
- }
146
-
147
- return $recaptchaResponse;
148
- }
149
- }
150
-
151
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: anti, anti-spam, antispam, antispam security, anti-spam security, antispambot, arithmetic actions, block spam, bot, bots, best google captcha, best recaptcha, best google recaptcha, best wordpress captcha, recaptcha, capcha, captha, catcha, captcha theme, captcha bank, captcha, captcha plugin, recaptcha plugin, captcha protection, recaptcha protection, comment captcha, comment, comments, cpatcha, digitize books, digitize newspapers, digitize radio shows, e-mail, email, email address, filter, form, forms, form captcha, forgot password captcha, free, gogle, google, google captcha, google recaptcha, login, lost password, login captcha, login recaptcha, mail, match captcha, plugin, protect, protection, popular captcha, popular recaptcha, protection shield, re captcha, re-captcha, register, registration, registration spam, robot, robots, register captcha, rest password captcha, registration captcha security, spam, secure, security, signup, signup spam, spam blocker, spam comments, spam filter, spambot, shield, simple captcha, simple recaptcha, spam control, spam protection, text captcha, user, user registration spam, users, web form protection, wordpress google captcha, wp google recapthca, wp recaptcha, wordpress protection, wordpress security loss password captcha, register captcha, wp captcha
5
  Requires at least: 3.8
6
- Tested up to: 4.4
7
- Stable tag: 1.21
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -12,8 +12,7 @@ This plugin allows you to implement Google Captcha (reCAPTCHA) into web forms.
12
 
13
  == Description ==
14
 
15
- Google Captcha (reCAPTCHA) plugin allows you to implement a super security Captcha into web forms. Google Captcha (reCAPTCHA) is a free CAPTCHA service that helps to digitize books, newspapers older radio shows.
16
- This plugin can be used for login, registration, password recovery, comments forms.
17
 
18
  http://www.youtube.com/watch?v=qwHsW3IJ7gQ
19
 
@@ -27,7 +26,7 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
27
 
28
  = Copyrights for resources used in this plugin =
29
 
30
- 1. In Google Captcha (reCAPTCHA) plugin we used "lib/recaptchalib.php" and "lib_v2/recaptchalib.php" file. The Licence for this file is in "lib/license.txt" and "lib_v2/license.txt" file.
31
  2. Everything else used in this plugin has been created by Bestwebsoft team and is distributed under GPL license.
32
 
33
  = Features =
@@ -36,7 +35,7 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
36
  * Compatible with Contact Form by BestWebSoft.
37
  * Hide Google Captcha (reCAPTCHA) for certain user roles.
38
  * Supports version 1 and version 2 Google Captcha (reCAPTCHA).
39
- * Supports standart Google Captcha (reCAPTCHA) themes.
40
 
41
  = Recommended Plugins =
42
 
@@ -50,6 +49,7 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pr
50
  * Arabic (ar) (thanks to <a href="mailto:mor0cc0@live.com">SAID MOULLA</a>, www.aljoulane.ma)
51
  * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
52
  * Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
 
53
  * Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
54
  * Farsi/Persian (fa_IR) (thanks to <a href="mailto:nasiri.amirreza.96@gmail.com">Amirreza Nasiri</a>, www.bytegate.ir)
55
  * French (fr_FR) (thanks to <a href="mailto:lefinnois@lefinnois.net">Denis Bodorr</a>)
@@ -69,7 +69,7 @@ If you would like to create your own language pack or update the existing one, y
69
  Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. Please note that we accept requests in English only. All messages in another languages won't be accepted.
70
 
71
  If you notice any bugs in the plugins, you can notify us about it and we'll investigate and fix the issue then. Your request should contain URL of the website, issues description and WordPress admin panel credentials.
72
- Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
73
  We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
74
 
75
  == Installation ==
@@ -100,22 +100,6 @@ Then you must click 'Save Changes' button.
100
  You should go to the Settings page and select Theme from dropdown list.
101
  Then you must click the 'Save Changes' button.
102
 
103
- = Missing Google Captcha (reCAPTCHA) on the comment form? =
104
-
105
- You might have a theme where comments.php is not coded properly.
106
-
107
- Wopdpress version matters.
108
-
109
- (WP2 series) Your theme must have a tag `<?php do_action('comment_form', $post->ID); ?>` inside the file `/wp-content/themes/[your_theme]/comments.php`.
110
- Most WP2 themes already have it. The best place to put this tag is before the comment textarea, you can move it up if it is below the comment textarea.
111
-
112
- (WP3 series) WP3 has a new function comment_form inside of `/wp-includes/comment-template.php`.
113
- Your theme is probably not up-to-date to call that function from comments.php.
114
- WP3 theme does not need the code line `do_action('comment_form'`... inside of `/wp-content/themes/[your_theme]/comments.php`.
115
- Instead it uses a new function call inside of comments.php: `<?php comment_form(); ?>`
116
- If you have WP3 and captcha is still missing, make sure your theme has `<?php comment_form(); ?>`
117
- inside of `/wp-content/themes/[your_theme]/comments.php` (please check the Twenty Ten theme's comments.php for proper example)
118
-
119
  = How can I change the location of Google Captcha (reCAPTCHA) in the comments form? =
120
 
121
  It depends on the comments form. If the hook call by means of which captcha works ('after_comment_field' or something like this) is present in the file comments.php, you can change captcha positioning by moving this hook call. Please find the file 'comments.php' in the theme and change position of the line
@@ -131,7 +115,7 @@ In case there is no such hook in the comments file of your theme, then, unfortun
131
  1. Install the Google Captcha (reCAPTCHA) plugin and activate it.
132
  2. Open the file with the form (where you would like to add Google Captcha (reCAPTCHA) to).
133
  3. Find a place to insert the code for the Google Captcha (reCAPTCHA) output.
134
- 4. Insert the necessary lines:
135
 
136
  `if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); } ;`
137
 
@@ -161,6 +145,12 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
161
 
162
  == Changelog ==
163
 
 
 
 
 
 
 
164
  = V1.21 - 10.12.2015 =
165
  * NEW : A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added.
166
  * NEW : The Farsi/Persian language file was added.
@@ -261,6 +251,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
261
 
262
  == Upgrade Notice ==
263
 
 
 
 
264
  = V1.21 =
265
  A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added. The Farsi/Persian language file was added. The French language file was added.
266
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: anti, anti-spam, antispam, antispam security, anti-spam security, antispambot, arithmetic actions, block spam, bot, bots, best google captcha, best recaptcha, best google recaptcha, best wordpress captcha, recaptcha, capcha, captha, catcha, captcha theme, captcha bank, captcha, captcha plugin, recaptcha plugin, captcha protection, recaptcha protection, comment captcha, comment, comments, cpatcha, digitize books, digitize newspapers, digitize radio shows, e-mail, email, email address, filter, form, forms, form captcha, forgot password captcha, free, gogle, google, google captcha, google recaptcha, login, lost password, login captcha, login recaptcha, mail, match captcha, plugin, protect, protection, popular captcha, popular recaptcha, protection shield, re captcha, re-captcha, register, registration, registration spam, robot, robots, register captcha, rest password captcha, registration captcha security, spam, secure, security, signup, signup spam, spam blocker, spam comments, spam filter, spambot, shield, simple captcha, simple recaptcha, spam control, spam protection, text captcha, user, user registration spam, users, web form protection, wordpress google captcha, wp google recapthca, wp recaptcha, wordpress protection, wordpress security loss password captcha, register captcha, wp captcha
5
  Requires at least: 3.8
6
+ Tested up to: 4.4.2
7
+ Stable tag: 1.22
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ Google Captcha (reCAPTCHA) plugin allows you to implement a super security Captcha into web forms. This plugin can be used for login, registration, password recovery, comments forms.
 
16
 
17
  http://www.youtube.com/watch?v=qwHsW3IJ7gQ
18
 
26
 
27
  = Copyrights for resources used in this plugin =
28
 
29
+ 1. In Google Captcha (reCAPTCHA) plugin we used "lib/recaptchalib.php" file. The Licence for this file is in "lib/license.txt" file.
30
  2. Everything else used in this plugin has been created by Bestwebsoft team and is distributed under GPL license.
31
 
32
  = Features =
35
  * Compatible with Contact Form by BestWebSoft.
36
  * Hide Google Captcha (reCAPTCHA) for certain user roles.
37
  * Supports version 1 and version 2 Google Captcha (reCAPTCHA).
38
+ * Supports standard Google Captcha (reCAPTCHA) themes.
39
 
40
  = Recommended Plugins =
41
 
49
  * Arabic (ar) (thanks to <a href="mailto:mor0cc0@live.com">SAID MOULLA</a>, www.aljoulane.ma)
50
  * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
51
  * Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
52
+ * Czech (cs_CZ) (thanks to <a href="mailto:info@pamadessoft.cz">PaMaDeSSoft</a>, www.pamadessoft.cz)
53
  * Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
54
  * Farsi/Persian (fa_IR) (thanks to <a href="mailto:nasiri.amirreza.96@gmail.com">Amirreza Nasiri</a>, www.bytegate.ir)
55
  * French (fr_FR) (thanks to <a href="mailto:lefinnois@lefinnois.net">Denis Bodorr</a>)
69
  Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. Please note that we accept requests in English only. All messages in another languages won't be accepted.
70
 
71
  If you notice any bugs in the plugins, you can notify us about it and we'll investigate and fix the issue then. Your request should contain URL of the website, issues description and WordPress admin panel credentials.
72
+ Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
73
  We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
74
 
75
  == Installation ==
100
  You should go to the Settings page and select Theme from dropdown list.
101
  Then you must click the 'Save Changes' button.
102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  = How can I change the location of Google Captcha (reCAPTCHA) in the comments form? =
104
 
105
  It depends on the comments form. If the hook call by means of which captcha works ('after_comment_field' or something like this) is present in the file comments.php, you can change captcha positioning by moving this hook call. Please find the file 'comments.php' in the theme and change position of the line
115
  1. Install the Google Captcha (reCAPTCHA) plugin and activate it.
116
  2. Open the file with the form (where you would like to add Google Captcha (reCAPTCHA) to).
117
  3. Find a place to insert the code for the Google Captcha (reCAPTCHA) output.
118
+ 4. Insert the necessary lines:
119
 
120
  `if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); } ;`
121
 
145
 
146
  == Changelog ==
147
 
148
+ = V1.22 - 25.02.2016 =
149
+ * NEW : The Czech language file has been added.
150
+ * UPDATE : Functionality of plugin`s scripts adding has been changed so that they will be added only on pages where the CAPTCHA will be displayed.
151
+ * Bugfix : The bug with displaying several reCAPTCHA`s blocks on the same page in different forms has been fixed.
152
+ * Bugfix : The bug with definition of JS function on() has been fixed.
153
+
154
  = V1.21 - 10.12.2015 =
155
  * NEW : A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added.
156
  * NEW : The Farsi/Persian language file was added.
251
 
252
  == Upgrade Notice ==
253
 
254
+ = V1.22 =
255
+ The Czech language file has been added. Functionality of plugin`s scripts adding has been changed so that they will be added only on pages where the CAPTCHA will be displayed. The bug with displaying several reCAPTCHA`s blocks on the same page in different forms has been fixed. The bug with definition of JS function on() has been fixed.
256
+
257
  = V1.21 =
258
  A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added. The Farsi/Persian language file was added. The French language file was added.
259
 
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-7.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file