AdRotate Banner Manager - Version 4.15

Version Description

FREE = * [new] Post injection now compatible with Caching plugins * [i18n] Updated translations

Download this release

Release Info

Developer adegans
Plugin Icon 128x128 AdRotate Banner Manager
Version 4.15
Comparing to
See all releases

Code changes from version 4.14 to 4.15

adrotate-functions.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -11,10 +11,7 @@
11
 
12
  /*-------------------------------------------------------------
13
  Name: adrotate_shortcode
14
-
15
  Purpose: Prepare function requests for calls on shortcodes
16
- Receive: $atts, $content
17
- Return: Function()
18
  Since: 0.7
19
  -------------------------------------------------------------*/
20
  function adrotate_shortcode($atts, $content = null) {
@@ -48,6 +45,8 @@ function adrotate_shortcode($atts, $content = null) {
48
  $output .= 'echo adrotate_group('.$group_ids.', 0, 0, 0);';
49
  }
50
  $output .= ' <!--[borlabs cache end: '.$borlabsphrase.']-->';
 
 
51
  } else {
52
  if($banner_id > 0 AND ($group_ids == 0 OR $group_ids > 0)) { // Show one Ad
53
  $output .= adrotate_ad($banner_id, true, 0, 0);
@@ -63,10 +62,7 @@ function adrotate_shortcode($atts, $content = null) {
63
 
64
  /*-------------------------------------------------------------
65
  Name: adrotate_is_networked
66
-
67
  Purpose: Determine if AdRotate is network activated
68
- Receive: -None-
69
- Return: Boolean
70
  Since: 3.9.8
71
  -------------------------------------------------------------*/
72
  function adrotate_is_networked() {
@@ -80,10 +76,7 @@ function adrotate_is_networked() {
80
 
81
  /*-------------------------------------------------------------
82
  Name: adrotate_is_human
83
-
84
  Purpose: Check if visitor is a bot
85
- Receive: -None-
86
- Return: Boolean
87
  Since: 3.11.10
88
  -------------------------------------------------------------*/
89
  function adrotate_is_human() {
@@ -116,10 +109,7 @@ function adrotate_is_human() {
116
 
117
  /*-------------------------------------------------------------
118
  Name: adrotate_is_mobile
119
-
120
  Purpose: Check if visitor is on a smartphone
121
- Receive: -None-
122
- Return: Boolean
123
  Since: 3.13.2
124
  -------------------------------------------------------------*/
125
  function adrotate_is_mobile() {
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2019 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
11
 
12
  /*-------------------------------------------------------------
13
  Name: adrotate_shortcode
 
14
  Purpose: Prepare function requests for calls on shortcodes
 
 
15
  Since: 0.7
16
  -------------------------------------------------------------*/
17
  function adrotate_shortcode($atts, $content = null) {
45
  $output .= 'echo adrotate_group('.$group_ids.', 0, 0, 0);';
46
  }
47
  $output .= ' <!--[borlabs cache end: '.$borlabsphrase.']-->';
48
+
49
+ unset($borlabsphrase);
50
  } else {
51
  if($banner_id > 0 AND ($group_ids == 0 OR $group_ids > 0)) { // Show one Ad
52
  $output .= adrotate_ad($banner_id, true, 0, 0);
62
 
63
  /*-------------------------------------------------------------
64
  Name: adrotate_is_networked
 
65
  Purpose: Determine if AdRotate is network activated
 
 
66
  Since: 3.9.8
67
  -------------------------------------------------------------*/
68
  function adrotate_is_networked() {
76
 
77
  /*-------------------------------------------------------------
78
  Name: adrotate_is_human
 
79
  Purpose: Check if visitor is a bot
 
 
80
  Since: 3.11.10
81
  -------------------------------------------------------------*/
82
  function adrotate_is_human() {
109
 
110
  /*-------------------------------------------------------------
111
  Name: adrotate_is_mobile
 
112
  Purpose: Check if visitor is on a smartphone
 
 
113
  Since: 3.13.2
114
  -------------------------------------------------------------*/
115
  function adrotate_is_mobile() {
adrotate-output.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -223,7 +223,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
223
  Added: 3.7
224
  -------------------------------------------------------------*/
225
  function adrotate_inject_posts($post_content) {
226
- global $wpdb, $post, $adrotate_debug;
227
 
228
  $group_array = array();
229
  if(is_page()) {
@@ -273,16 +273,31 @@ function adrotate_inject_posts($post_content) {
273
  $before = $after = $inside = 0;
274
  foreach($group_array as $group_id => $group) {
275
  if(is_page($group['ids']) OR has_category($group['ids'])) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  // Advert in front of content
277
  if(($group['location'] == 1 OR $group['location'] == 3) AND $before == 0) {
278
- $post_content = adrotate_group($group_id).$post_content;
279
  unset($group_array[$group_id]);
280
  $before = 1;
281
  }
282
 
283
  // Advert behind the content
284
  if(($group['location'] == 2 OR $group['location'] == 3) AND $after == 0) {
285
- $post_content = $post_content.adrotate_group($group_id);
286
  unset($group_array[$group_id]);
287
  $after = 1;
288
  }
@@ -299,7 +314,7 @@ function adrotate_inject_posts($post_content) {
299
  }
300
 
301
  if($count_p == $index + 1 AND $inside == 0) {
302
- $paragraphs[$index] .= adrotate_group($group_id);
303
  unset($group_array[$group_id]);
304
  $inside = 1;
305
  }
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2019 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
223
  Added: 3.7
224
  -------------------------------------------------------------*/
225
  function adrotate_inject_posts($post_content) {
226
+ global $wpdb, $post, $adrotate_config, $adrotate_debug;
227
 
228
  $group_array = array();
229
  if(is_page()) {
273
  $before = $after = $inside = 0;
274
  foreach($group_array as $group_id => $group) {
275
  if(is_page($group['ids']) OR has_category($group['ids'])) {
276
+ // Caching or not?
277
+ if($adrotate_config['w3caching'] == 'Y') {
278
+ $advert_output = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
279
+ $advert_output .= 'echo adrotate_group('.$group_id.');';
280
+ $advert_output .= '<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
281
+ } else if($adrotate_config['borlabscache'] == "Y" AND function_exists('BorlabsCacheHelper') AND BorlabsCacheHelper()->willFragmentCachingPerform()) {
282
+ $borlabsphrase = BorlabsCacheHelper()->getFragmentCachingPhrase();
283
+ $advert_output = '<!--[borlabs cache start: '.$borlabsphrase.']-->';
284
+ $advert_output .= 'echo adrotate_group('.$group_id.');';
285
+ $advert_output .= '<!--[borlabs cache end: '.$borlabsphrase.']-->';
286
+ unset($borlabsphrase);
287
+ } else {
288
+ $advert_output = adrotate_group($group_id);
289
+ }
290
+
291
  // Advert in front of content
292
  if(($group['location'] == 1 OR $group['location'] == 3) AND $before == 0) {
293
+ $post_content = $advert_output.$post_content;
294
  unset($group_array[$group_id]);
295
  $before = 1;
296
  }
297
 
298
  // Advert behind the content
299
  if(($group['location'] == 2 OR $group['location'] == 3) AND $after == 0) {
300
+ $post_content = $post_content.$advert_output;
301
  unset($group_array[$group_id]);
302
  $after = 1;
303
  }
314
  }
315
 
316
  if($count_p == $index + 1 AND $inside == 0) {
317
+ $paragraphs[$index] .= $advert_output;
318
  unset($group_array[$group_id]);
319
  $inside = 1;
320
  }
adrotate-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -74,6 +74,8 @@ class adrotate_widgets extends WP_Widget {
74
  echo adrotate_group($instance['adid'], 0, 0, 0);
75
  }
76
  echo '<!--[borlabs cache end: '.$borlabsphrase.']-->';
 
 
77
  } else {
78
  if($instance['type'] == "single") {
79
  echo adrotate_ad($instance['adid'], true, 0, 0, 0);
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2019 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
74
  echo adrotate_group($instance['adid'], 0, 0, 0);
75
  }
76
  echo '<!--[borlabs cache end: '.$borlabsphrase.']-->';
77
+
78
+ unset($borlabsphrase);
79
  } else {
80
  if($instance['type'] == "single") {
81
  echo adrotate_ad($instance['adid'], true, 0, 0, 0);
adrotate.php CHANGED
@@ -7,13 +7,13 @@ Author URI: https://www.arnan.me/
7
  Description: AdRotate Banner Manager - Monetise your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
- Version: 4.14
11
  License: GPLv3
12
  */
13
 
14
  /* ------------------------------------------------------------------------------------
15
  * COPYRIGHT AND TRADEMARK NOTICE
16
- * Copyright 2008-2018 Arnan de Gans. All Rights Reserved.
17
  * ADROTATE is a trademark of Arnan de Gans.
18
 
19
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -22,7 +22,7 @@ License: GPLv3
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
- define("ADROTATE_DISPLAY", '4.14');
26
  define("ADROTATE_VERSION", 392);
27
  define("ADROTATE_DB_VERSION", 64);
28
  $plugin_folder = plugin_dir_path(__FILE__);
7
  Description: AdRotate Banner Manager - Monetise your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
+ Version: 4.15
11
  License: GPLv3
12
  */
13
 
14
  /* ------------------------------------------------------------------------------------
15
  * COPYRIGHT AND TRADEMARK NOTICE
16
+ * Copyright 2008-2019 Arnan de Gans. All Rights Reserved.
17
  * ADROTATE is a trademark of Arnan de Gans.
18
 
19
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
+ define("ADROTATE_DISPLAY", '4.15');
26
  define("ADROTATE_VERSION", 392);
27
  define("ADROTATE_DB_VERSION", 64);
28
  $plugin_folder = plugin_dir_path(__FILE__);
language/adrotate-bg_BG.mo CHANGED
Binary file
language/adrotate-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:30+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:30+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
@@ -17,109 +17,109 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:730
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:733
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-functions.php:818
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:822
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:826
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
- #: adrotate-functions.php:830
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
- #: adrotate-functions.php:834
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
- #: adrotate-functions.php:838
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
- #: adrotate-functions.php:842
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
- #: adrotate-functions.php:846
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
- #: adrotate-functions.php:850
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
- #: adrotate-functions.php:854
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
- #: adrotate-functions.php:858
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:863
75
  msgid "Settings saved"
76
  msgstr "Настройките са запазени"
77
 
78
- #: adrotate-functions.php:867
79
  msgid "Database optimized"
80
  msgstr "Базата данни е оптимизирана"
81
 
82
- #: adrotate-functions.php:871
83
  msgid "Database repaired"
84
  msgstr "Базата данни е поправена"
85
 
86
- #: adrotate-functions.php:875
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
89
 
90
- #: adrotate-functions.php:879
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Почистване на базата данни"
95
 
96
- #: adrotate-functions.php:884
97
  msgid "Action prohibited"
98
  msgstr "Забранено действие"
99
 
100
- #: adrotate-functions.php:888
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
104
  msgstr ""
105
 
106
- #: adrotate-functions.php:892
107
  msgid "No data found in selected time period"
108
  msgstr "Не е намерена информация за избрания период"
109
 
110
- #: adrotate-functions.php:896
111
  msgid "Database can only be optimized or cleaned once every hour"
112
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
113
 
114
- #: adrotate-functions.php:900
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
- #: adrotate-functions.php:904
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
- #: adrotate-functions.php:908
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
@@ -127,11 +127,11 @@ msgstr ""
127
  msgid "AdRotate Advertiser"
128
  msgstr ""
129
 
130
- #: adrotate-output.php:557
131
  msgid "Oh no! Something went wrong!"
132
  msgstr "О не! Нещо се случи!"
133
 
134
- #: adrotate-output.php:558
135
  msgid ""
136
  "WordPress was unable to verify the authenticity of the url you have clicked. "
137
  "Verify if the url used is valid or log in via your browser."
@@ -140,17 +140,17 @@ msgstr ""
140
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
141
  "си."
142
 
143
- #: adrotate-output.php:559
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
147
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
148
 
149
- #: adrotate-output.php:560
150
  msgid "Contact support if the issue persists:"
151
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
152
 
153
- #: adrotate-output.php:575
154
  msgid ""
155
  "Error, Ad is not available at this time due to schedule/geolocation "
156
  "restrictions or does not exist!"
@@ -158,33 +158,33 @@ msgstr ""
158
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
159
  "геолокацията или не съществува!"
160
 
161
- #: adrotate-output.php:577
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions!"
165
  msgstr ""
166
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
167
 
168
- #: adrotate-output.php:584 adrotate-output.php:586
169
  msgid ""
170
  "Either there are no banners, they are disabled or none qualified for this "
171
  "location!"
172
  msgstr ""
173
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
174
 
175
- #: adrotate-output.php:592
176
  msgid "Error, no Ad ID set! Check your syntax!"
177
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
178
 
179
- #: adrotate-output.php:598
180
  msgid "Error, no group ID set! Check your syntax!"
181
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
182
 
183
- #: adrotate-output.php:603
184
  msgid "Error, group does not exist! Check your syntax!"
185
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
186
 
187
- #: adrotate-output.php:609
188
  msgid ""
189
  "There was an error locating the database tables for AdRotate. Please "
190
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -192,182 +192,158 @@ msgstr ""
192
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
193
  "изключете и включете наново AdRotate от страницата с плъгините!!"
194
 
195
- #: adrotate-output.php:609
196
  msgid "If this does not solve the issue please seek support at"
197
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
198
 
199
- #: adrotate-output.php:615
200
  msgid "An unknown error occured."
201
  msgstr "Възникна неизвестна грешка."
202
 
203
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
204
  msgid "Check adverts"
205
  msgstr ""
206
 
207
- #: adrotate-output.php:652
208
  msgid ""
209
  "You have enabled caching support but W3 Total Cache is not active on your "
210
  "site!"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:652
214
  #, fuzzy
215
  #| msgid "W3 Total Caching"
216
  msgid "Disable W3 Total Cache Support"
217
  msgstr "W3 Total Caching"
218
 
219
- #: adrotate-output.php:655
220
  msgid ""
221
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
222
  "not set."
223
  msgstr ""
224
 
225
- #: adrotate-output.php:655
226
  msgid "How to configure W3 Total Cache"
227
  msgstr ""
228
 
229
- #: adrotate-output.php:664
230
  msgid ""
231
  "You have enable caching support but Borlabs Cache is not active on your site!"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:664
235
  msgid "Disable Borlabs Cache Support"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:672
239
  msgid ""
240
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
241
  msgstr ""
242
 
243
- #: adrotate-output.php:672
244
  msgid "Enable Fragment Caching"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:678
248
  msgid "Your AdRotate Banner folder is not writable or does not exist."
249
  msgstr ""
250
 
251
- #: adrotate-output.php:678
252
  #, fuzzy
253
  #| msgid "Where are your banner ads?"
254
  msgid "Set up your banner folder"
255
  msgstr "Къде се намират вашите рекламни банери?"
256
 
257
- #: adrotate-output.php:698
258
  msgid "your attention:"
259
  msgstr ""
260
 
261
- #: adrotate-output.php:719 adrotate.php:447
262
  #: dashboard/publisher/schedules-main.php:13
263
  #, fuzzy
264
  #| msgid "AdRotate Pro"
265
  msgid "Get AdRotate Pro"
266
  msgstr "AdRotate Pro"
267
 
268
- #: adrotate-output.php:720
269
  msgid ""
270
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
271
  "Schedules and more..."
272
  msgstr ""
273
 
274
- #: adrotate-output.php:720
275
  #, php-format
276
  msgid ""
277
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
278
  msgstr ""
279
 
280
- #: adrotate-output.php:720
281
  #, fuzzy
282
  #| msgid "Thank you for your consideration!"
283
  msgid "Thank you for your support!"
284
  msgstr "Благодарим Ви, че го обмислихте!"
285
 
286
- #: adrotate-output.php:837
287
  msgid ""
288
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
289
  "menu. If you need help getting started take a look at the"
290
  msgstr ""
291
 
292
- #: adrotate-output.php:837
293
  msgid "manuals"
294
  msgstr "ръководства"
295
 
296
- #: adrotate-output.php:837 adrotate-output.php:921
297
  msgid "and"
298
  msgstr "и"
299
 
300
- #: adrotate-output.php:837
301
  msgid "forums"
302
  msgstr ""
303
 
304
- #: adrotate-output.php:870
305
- msgid "Useful Links"
306
- msgstr "Полезни връзки"
307
-
308
- #: adrotate-output.php:871
309
- msgid "Useful links to learn more about AdRotate"
310
- msgstr "Полезни връзки, за да получите повече информация за AdRotate"
311
-
312
- #: adrotate-output.php:873
313
- msgid "AdRotate website"
314
- msgstr ""
315
-
316
- #: adrotate-output.php:874
317
- msgid "Getting Started With AdRotate"
318
- msgstr "Започнете от нулата с AdRotate Pro"
319
-
320
- #: adrotate-output.php:875
321
- msgid "AdRotate manuals"
322
- msgstr ""
323
-
324
- #: adrotate-output.php:876
325
- msgid "AdRotate Support Forum"
326
- msgstr "Форум за поддръжка на AdRotate"
327
-
328
- #: adrotate-output.php:913
329
  msgid "Help AdRotate Grow"
330
  msgstr "Помогнете за развитието на AdRotate"
331
 
332
- #: adrotate-output.php:914 adrotate.php:152
333
  msgid "AdRotate Professional"
334
  msgstr "AdRotate Professional"
335
 
336
- #: adrotate-output.php:921
337
  msgid ""
338
  "Many users only think to review AdRotate when something goes wrong while "
339
  "thousands of people happily use AdRotate."
340
  msgstr ""
341
 
342
- #: adrotate-output.php:921
343
  msgid "If you find AdRotate useful please leave your"
344
  msgstr ""
345
 
346
- #: adrotate-output.php:921
347
  msgid "rating"
348
  msgstr "оценка"
349
 
350
- #: adrotate-output.php:921
351
  msgid "review"
352
  msgstr "мнение"
353
 
354
- #: adrotate-output.php:921
355
  #, fuzzy
356
  #| msgid "on WordPress.org to help AdRotate grow in a positive way"
357
  msgid "on WordPress.org to help AdRotate grow in a positive way"
358
  msgstr "на WordPress.org, за да се развива AdRotate"
359
 
360
- #: adrotate-output.php:922
361
  msgid ""
362
  "Get more advanced features like Geo Targeting, scheduling and much more with "
363
  "AdRotate Pro."
364
  msgstr ""
365
 
366
- #: adrotate-output.php:922
367
  msgid "Includes premium support and free updates!"
368
  msgstr ""
369
 
370
- #: adrotate-output.php:922
371
  #, fuzzy
372
  #| msgid "Getting Started With AdRotate"
373
  msgid "Get started today"
@@ -445,43 +421,43 @@ msgstr "Няма информация!"
445
  msgid "Not found"
446
  msgstr "Няма намерени файлове"
447
 
448
- #: adrotate-widget.php:132
449
  msgid "Title (optional):"
450
  msgstr "Заглавие (не е задължително):"
451
 
452
- #: adrotate-widget.php:135
453
  msgid "HTML will be stripped out."
454
  msgstr "HTML тагове не се поддържат."
455
 
456
- #: adrotate-widget.php:138
457
  msgid "Description (optional):"
458
  msgstr "Описание (не е задължително):"
459
 
460
- #: adrotate-widget.php:141
461
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
462
  msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
463
 
464
- #: adrotate-widget.php:144
465
  msgid "Type:"
466
  msgstr "Тип:"
467
 
468
- #: adrotate-widget.php:146
469
  msgid "Advert - Use Advert ID"
470
  msgstr ""
471
 
472
- #: adrotate-widget.php:147
473
  msgid "Group - Use group ID"
474
  msgstr ""
475
 
476
- #: adrotate-widget.php:150
477
  msgid "Choose what you want to use this widget for"
478
  msgstr "Изберете за какво иската да използвате тази джаджа"
479
 
480
- #: adrotate-widget.php:153
481
  msgid "ID:"
482
  msgstr "ID:"
483
 
484
- #: adrotate-widget.php:156
485
  msgid "Fill in the ID of the type you want to display!"
486
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
487
 
@@ -672,10 +648,10 @@ msgstr "Получете премиум поддръжка почти през
672
  #| "support. AdRotate premium support which takes priority over the Forums "
673
  #| "and even email. Get a solution (usually) within a day."
674
  msgid ""
675
- "When you activate your AdRotate Pro license you can use fast and personal "
676
  "email support. No more queueing up in the forums. AdRotate support takes "
677
- "priority over the forums and is checked much more often than the forum. Get "
678
- "a solution (usually) within two business days."
679
  msgstr ""
680
  "Когато активирате вашия AdRotate Pro лиценз ще имате достъп до ticket "
681
  "системата за поддръжка. AdRotate премиум поддръжката е с приоритет спрямо "
@@ -732,15 +708,15 @@ msgstr ""
732
  "рекламодателите добавят нови реклами."
733
 
734
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
735
- #: dashboard/info.php:79
736
  msgid "Buy AdRotate Professional"
737
  msgstr "Купете AdRotate Professional"
738
 
739
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
740
  msgid "Single License"
741
  msgstr ""
742
 
743
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
744
  msgid "One WordPress installation."
745
  msgstr ""
746
 
@@ -748,50 +724,50 @@ msgstr ""
748
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
749
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
750
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
751
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
752
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
753
  msgid "Buy now"
754
  msgstr "Купи сега"
755
 
756
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
757
- #: dashboard/info.php:84
758
  msgid "Duo License"
759
  msgstr "Duo лиценз"
760
 
761
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
762
  msgid "Two WordPress installations."
763
  msgstr ""
764
 
765
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
766
- #: dashboard/info.php:85
767
  msgid "Multi License"
768
  msgstr "Multi лиценз"
769
 
770
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
771
  #, fuzzy
772
  #| msgid "For one WordPress installation."
773
  msgid "Five WordPress installations."
774
  msgstr "За една инсталация на WordPress."
775
 
776
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
777
- #: dashboard/info.php:86
778
  msgid "Developer License"
779
  msgstr "Developer лиценз"
780
 
781
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
782
  msgid "Unlimited WordPress installations and/or networks."
783
  msgstr ""
784
 
785
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
786
- #: dashboard/info.php:87
787
  msgid "Compare licenses"
788
  msgstr "Сравнение на лицензи"
789
 
790
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
791
  msgid "Not sure which license is for you? Compare them..."
792
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
793
 
794
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
795
  msgid "All Licenses"
796
  msgstr "Всички лицензи"
797
 
@@ -862,24 +838,20 @@ msgstr ""
862
  msgid "Arnan de Gans News & Updates"
863
  msgstr ""
864
 
865
- #: dashboard/info.php:91
866
- msgid "AJdG Solutions Premium Support Group"
867
- msgstr ""
868
-
869
- #: dashboard/info.php:108
870
- msgid "Join the Media.net advertising network"
871
- msgstr ""
872
-
873
- #: dashboard/info.php:123
874
  msgid "Sponsored offers"
875
  msgstr ""
876
 
877
- #: dashboard/info.php:129
878
  msgid ""
879
  "These are affiliate banners, clicking them costs you nothing but it helps me "
880
  "and AdRotate a lot!"
881
  msgstr ""
882
 
 
 
 
 
883
  #: dashboard/publisher/adverts-disabled.php:15
884
  msgid "Disabled Adverts"
885
  msgstr ""
@@ -2541,7 +2513,7 @@ msgid "Which Geo Service"
2541
  msgstr ""
2542
 
2543
  #: dashboard/settings/geotargeting.php:32
2544
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2545
  msgstr ""
2546
 
2547
  #: dashboard/settings/geotargeting.php:33
@@ -2563,17 +2535,17 @@ msgid "Suitable for small to medium websites."
2563
  msgstr ""
2564
 
2565
  #: dashboard/settings/geotargeting.php:36
2566
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2567
  msgstr ""
2568
 
2569
  #: dashboard/settings/geotargeting.php:38
2570
- msgid "Suitable for medium sized websites."
 
 
2571
  msgstr ""
2572
 
2573
  #: dashboard/settings/geotargeting.php:40
2574
- msgid ""
2575
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2576
- "lookups."
2577
  msgstr ""
2578
 
2579
  #: dashboard/settings/geotargeting.php:42
@@ -3250,6 +3222,18 @@ msgstr ""
3250
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
3251
  "(24 часа)."
3252
 
 
 
 
 
 
 
 
 
 
 
 
 
3253
  #, fuzzy
3254
  #~| msgid ""
3255
  #~| "You've been using <strong>AdRotate</strong> for a while now. Why not "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:49+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:49+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:720
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:723
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-functions.php:808
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:812
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:816
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
+ #: adrotate-functions.php:820
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
+ #: adrotate-functions.php:824
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
+ #: adrotate-functions.php:828
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
+ #: adrotate-functions.php:832
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
+ #: adrotate-functions.php:836
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
+ #: adrotate-functions.php:840
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
+ #: adrotate-functions.php:844
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
+ #: adrotate-functions.php:848
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:853
75
  msgid "Settings saved"
76
  msgstr "Настройките са запазени"
77
 
78
+ #: adrotate-functions.php:857
79
  msgid "Database optimized"
80
  msgstr "Базата данни е оптимизирана"
81
 
82
+ #: adrotate-functions.php:861
83
  msgid "Database repaired"
84
  msgstr "Базата данни е поправена"
85
 
86
+ #: adrotate-functions.php:865
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
89
 
90
+ #: adrotate-functions.php:869
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Почистване на базата данни"
95
 
96
+ #: adrotate-functions.php:874
97
  msgid "Action prohibited"
98
  msgstr "Забранено действие"
99
 
100
+ #: adrotate-functions.php:878
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
104
  msgstr ""
105
 
106
+ #: adrotate-functions.php:882
107
  msgid "No data found in selected time period"
108
  msgstr "Не е намерена информация за избрания период"
109
 
110
+ #: adrotate-functions.php:886
111
  msgid "Database can only be optimized or cleaned once every hour"
112
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
113
 
114
+ #: adrotate-functions.php:890
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
+ #: adrotate-functions.php:894
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
+ #: adrotate-functions.php:898
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
127
  msgid "AdRotate Advertiser"
128
  msgstr ""
129
 
130
+ #: adrotate-output.php:572
131
  msgid "Oh no! Something went wrong!"
132
  msgstr "О не! Нещо се случи!"
133
 
134
+ #: adrotate-output.php:573
135
  msgid ""
136
  "WordPress was unable to verify the authenticity of the url you have clicked. "
137
  "Verify if the url used is valid or log in via your browser."
140
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
141
  "си."
142
 
143
+ #: adrotate-output.php:574
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
147
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
148
 
149
+ #: adrotate-output.php:575
150
  msgid "Contact support if the issue persists:"
151
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
152
 
153
+ #: adrotate-output.php:590
154
  msgid ""
155
  "Error, Ad is not available at this time due to schedule/geolocation "
156
  "restrictions or does not exist!"
158
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
159
  "геолокацията или не съществува!"
160
 
161
+ #: adrotate-output.php:592
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions!"
165
  msgstr ""
166
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
167
 
168
+ #: adrotate-output.php:599 adrotate-output.php:601
169
  msgid ""
170
  "Either there are no banners, they are disabled or none qualified for this "
171
  "location!"
172
  msgstr ""
173
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
174
 
175
+ #: adrotate-output.php:607
176
  msgid "Error, no Ad ID set! Check your syntax!"
177
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
178
 
179
+ #: adrotate-output.php:613
180
  msgid "Error, no group ID set! Check your syntax!"
181
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
182
 
183
+ #: adrotate-output.php:618
184
  msgid "Error, group does not exist! Check your syntax!"
185
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
186
 
187
+ #: adrotate-output.php:624
188
  msgid ""
189
  "There was an error locating the database tables for AdRotate. Please "
190
  "deactivate and re-activate AdRotate from the plugin page!!"
192
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
193
  "изключете и включете наново AdRotate от страницата с плъгините!!"
194
 
195
+ #: adrotate-output.php:624
196
  msgid "If this does not solve the issue please seek support at"
197
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
198
 
199
+ #: adrotate-output.php:630
200
  msgid "An unknown error occured."
201
  msgstr "Възникна неизвестна грешка."
202
 
203
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
204
  msgid "Check adverts"
205
  msgstr ""
206
 
207
+ #: adrotate-output.php:662
208
  msgid ""
209
  "You have enabled caching support but W3 Total Cache is not active on your "
210
  "site!"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:662
214
  #, fuzzy
215
  #| msgid "W3 Total Caching"
216
  msgid "Disable W3 Total Cache Support"
217
  msgstr "W3 Total Caching"
218
 
219
+ #: adrotate-output.php:665
220
  msgid ""
221
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
222
  "not set."
223
  msgstr ""
224
 
225
+ #: adrotate-output.php:665
226
  msgid "How to configure W3 Total Cache"
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:669
230
  msgid ""
231
  "You have enable caching support but Borlabs Cache is not active on your site!"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:669
235
  msgid "Disable Borlabs Cache Support"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:677
239
  msgid ""
240
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:677
244
  msgid "Enable Fragment Caching"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:683
248
  msgid "Your AdRotate Banner folder is not writable or does not exist."
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:683
252
  #, fuzzy
253
  #| msgid "Where are your banner ads?"
254
  msgid "Set up your banner folder"
255
  msgstr "Къде се намират вашите рекламни банери?"
256
 
257
+ #: adrotate-output.php:703
258
  msgid "your attention:"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:724 adrotate.php:447
262
  #: dashboard/publisher/schedules-main.php:13
263
  #, fuzzy
264
  #| msgid "AdRotate Pro"
265
  msgid "Get AdRotate Pro"
266
  msgstr "AdRotate Pro"
267
 
268
+ #: adrotate-output.php:725
269
  msgid ""
270
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
271
  "Schedules and more..."
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:725
275
  #, php-format
276
  msgid ""
277
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:725
281
  #, fuzzy
282
  #| msgid "Thank you for your consideration!"
283
  msgid "Thank you for your support!"
284
  msgstr "Благодарим Ви, че го обмислихте!"
285
 
286
+ #: adrotate-output.php:793
287
  msgid ""
288
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
289
  "menu. If you need help getting started take a look at the"
290
  msgstr ""
291
 
292
+ #: adrotate-output.php:793
293
  msgid "manuals"
294
  msgstr "ръководства"
295
 
296
+ #: adrotate-output.php:793 adrotate-output.php:893
297
  msgid "and"
298
  msgstr "и"
299
 
300
+ #: adrotate-output.php:793
301
  msgid "forums"
302
  msgstr ""
303
 
304
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  msgid "Help AdRotate Grow"
306
  msgstr "Помогнете за развитието на AdRotate"
307
 
308
+ #: adrotate-output.php:886 adrotate.php:152
309
  msgid "AdRotate Professional"
310
  msgstr "AdRotate Professional"
311
 
312
+ #: adrotate-output.php:893
313
  msgid ""
314
  "Many users only think to review AdRotate when something goes wrong while "
315
  "thousands of people happily use AdRotate."
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:893
319
  msgid "If you find AdRotate useful please leave your"
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:893
323
  msgid "rating"
324
  msgstr "оценка"
325
 
326
+ #: adrotate-output.php:893
327
  msgid "review"
328
  msgstr "мнение"
329
 
330
+ #: adrotate-output.php:893
331
  #, fuzzy
332
  #| msgid "on WordPress.org to help AdRotate grow in a positive way"
333
  msgid "on WordPress.org to help AdRotate grow in a positive way"
334
  msgstr "на WordPress.org, за да се развива AdRotate"
335
 
336
+ #: adrotate-output.php:894
337
  msgid ""
338
  "Get more advanced features like Geo Targeting, scheduling and much more with "
339
  "AdRotate Pro."
340
  msgstr ""
341
 
342
+ #: adrotate-output.php:894
343
  msgid "Includes premium support and free updates!"
344
  msgstr ""
345
 
346
+ #: adrotate-output.php:894
347
  #, fuzzy
348
  #| msgid "Getting Started With AdRotate"
349
  msgid "Get started today"
421
  msgid "Not found"
422
  msgstr "Няма намерени файлове"
423
 
424
+ #: adrotate-widget.php:134
425
  msgid "Title (optional):"
426
  msgstr "Заглавие (не е задължително):"
427
 
428
+ #: adrotate-widget.php:137
429
  msgid "HTML will be stripped out."
430
  msgstr "HTML тагове не се поддържат."
431
 
432
+ #: adrotate-widget.php:140
433
  msgid "Description (optional):"
434
  msgstr "Описание (не е задължително):"
435
 
436
+ #: adrotate-widget.php:143
437
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
438
  msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
439
 
440
+ #: adrotate-widget.php:146
441
  msgid "Type:"
442
  msgstr "Тип:"
443
 
444
+ #: adrotate-widget.php:148
445
  msgid "Advert - Use Advert ID"
446
  msgstr ""
447
 
448
+ #: adrotate-widget.php:149
449
  msgid "Group - Use group ID"
450
  msgstr ""
451
 
452
+ #: adrotate-widget.php:152
453
  msgid "Choose what you want to use this widget for"
454
  msgstr "Изберете за какво иската да използвате тази джаджа"
455
 
456
+ #: adrotate-widget.php:155
457
  msgid "ID:"
458
  msgstr "ID:"
459
 
460
+ #: adrotate-widget.php:158
461
  msgid "Fill in the ID of the type you want to display!"
462
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
463
 
648
  #| "support. AdRotate premium support which takes priority over the Forums "
649
  #| "and even email. Get a solution (usually) within a day."
650
  msgid ""
651
+ "When you activate your AdRotate Pro license you can use the more personal "
652
  "email support. No more queueing up in the forums. AdRotate support takes "
653
+ "priority over the forums and is checked once or twice a day. Get a solution "
654
+ "(usually) within two business days."
655
  msgstr ""
656
  "Когато активирате вашия AdRotate Pro лиценз ще имате достъп до ticket "
657
  "системата за поддръжка. AdRotate премиум поддръжката е с приоритет спрямо "
708
  "рекламодателите добавят нови реклами."
709
 
710
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
711
+ #: dashboard/info.php:90
712
  msgid "Buy AdRotate Professional"
713
  msgstr "Купете AdRotate Professional"
714
 
715
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
716
  msgid "Single License"
717
  msgstr ""
718
 
719
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
720
  msgid "One WordPress installation."
721
  msgstr ""
722
 
724
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
725
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
726
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
727
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
728
+ #: dashboard/info.php:97
729
  msgid "Buy now"
730
  msgstr "Купи сега"
731
 
732
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
733
+ #: dashboard/info.php:95
734
  msgid "Duo License"
735
  msgstr "Duo лиценз"
736
 
737
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
738
  msgid "Two WordPress installations."
739
  msgstr ""
740
 
741
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
742
+ #: dashboard/info.php:96
743
  msgid "Multi License"
744
  msgstr "Multi лиценз"
745
 
746
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
747
  #, fuzzy
748
  #| msgid "For one WordPress installation."
749
  msgid "Five WordPress installations."
750
  msgstr "За една инсталация на WordPress."
751
 
752
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
753
+ #: dashboard/info.php:97
754
  msgid "Developer License"
755
  msgstr "Developer лиценз"
756
 
757
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
758
  msgid "Unlimited WordPress installations and/or networks."
759
  msgstr ""
760
 
761
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
762
+ #: dashboard/info.php:98
763
  msgid "Compare licenses"
764
  msgstr "Сравнение на лицензи"
765
 
766
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
767
  msgid "Not sure which license is for you? Compare them..."
768
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
769
 
770
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
771
  msgid "All Licenses"
772
  msgstr "Всички лицензи"
773
 
838
  msgid "Arnan de Gans News & Updates"
839
  msgstr ""
840
 
841
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
842
  msgid "Sponsored offers"
843
  msgstr ""
844
 
845
+ #: dashboard/info.php:79
846
  msgid ""
847
  "These are affiliate banners, clicking them costs you nothing but it helps me "
848
  "and AdRotate a lot!"
849
  msgstr ""
850
 
851
+ #: dashboard/info.php:102
852
+ msgid "Join the Media.net advertising network"
853
+ msgstr ""
854
+
855
  #: dashboard/publisher/adverts-disabled.php:15
856
  msgid "Disabled Adverts"
857
  msgstr ""
2513
  msgstr ""
2514
 
2515
  #: dashboard/settings/geotargeting.php:32
2516
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2517
  msgstr ""
2518
 
2519
  #: dashboard/settings/geotargeting.php:33
2535
  msgstr ""
2536
 
2537
  #: dashboard/settings/geotargeting.php:36
2538
+ msgid "10000 free lookups per month, requires account."
2539
  msgstr ""
2540
 
2541
  #: dashboard/settings/geotargeting.php:38
2542
+ msgid ""
2543
+ "Suitable for small to medium sized websites with a free account - Paid "
2544
+ "options available."
2545
  msgstr ""
2546
 
2547
  #: dashboard/settings/geotargeting.php:40
2548
+ msgid "The most accurate geo targeting available."
 
 
2549
  msgstr ""
2550
 
2551
  #: dashboard/settings/geotargeting.php:42
3222
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
3223
  "(24 часа)."
3224
 
3225
+ #~ msgid "Useful Links"
3226
+ #~ msgstr "Полезни връзки"
3227
+
3228
+ #~ msgid "Useful links to learn more about AdRotate"
3229
+ #~ msgstr "Полезни връзки, за да получите повече информация за AdRotate"
3230
+
3231
+ #~ msgid "Getting Started With AdRotate"
3232
+ #~ msgstr "Започнете от нулата с AdRotate Pro"
3233
+
3234
+ #~ msgid "AdRotate Support Forum"
3235
+ #~ msgstr "Форум за поддръжка на AdRotate"
3236
+
3237
  #, fuzzy
3238
  #~| msgid ""
3239
  #~| "You've been using <strong>AdRotate</strong> for a while now. Why not "
language/adrotate-el.mo CHANGED
Binary file
language/adrotate-el.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:30+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:30+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
@@ -18,114 +18,114 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:730
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:733
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-functions.php:818
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
- #: adrotate-functions.php:822
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
- #: adrotate-functions.php:826
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
- #: adrotate-functions.php:830
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
- #: adrotate-functions.php:834
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
- #: adrotate-functions.php:838
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
- #: adrotate-functions.php:842
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
- #: adrotate-functions.php:846
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
- #: adrotate-functions.php:850
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
- #: adrotate-functions.php:854
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
- #: adrotate-functions.php:858
71
  msgid ""
72
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
73
  "below."
74
  msgstr ""
75
 
76
- #: adrotate-functions.php:863
77
  msgid "Settings saved"
78
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
79
 
80
- #: adrotate-functions.php:867
81
  msgid "Database optimized"
82
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
83
 
84
- #: adrotate-functions.php:871
85
  msgid "Database repaired"
86
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
87
 
88
- #: adrotate-functions.php:875
89
  msgid "Ads evaluated and statuses have been corrected where required"
90
  msgstr ""
91
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
92
  "χρειάστηκε"
93
 
94
- #: adrotate-functions.php:879
95
  #, fuzzy
96
  #| msgid "Clean-up Database"
97
  msgid "Cleanup complete"
98
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
99
 
100
- #: adrotate-functions.php:884
101
  msgid "Action prohibited"
102
  msgstr "Η ενέργεια απαγορεύεται"
103
 
104
- #: adrotate-functions.php:888
105
  msgid ""
106
  "The ad was saved but has an issue which might prevent it from working "
107
  "properly. Review the colored ad."
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:892
111
  msgid "No data found in selected time period"
112
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
113
 
114
- #: adrotate-functions.php:896
115
  msgid "Database can only be optimized or cleaned once every hour"
116
  msgstr ""
117
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
118
  "ώρα"
119
 
120
- #: adrotate-functions.php:900
121
  msgid "Form can not be (partially) empty!"
122
  msgstr ""
123
 
124
- #: adrotate-functions.php:904
125
  msgid "No ads found."
126
  msgstr ""
127
 
128
- #: adrotate-functions.php:908
129
  msgid "Unexpected error"
130
  msgstr ""
131
 
@@ -133,11 +133,11 @@ msgstr ""
133
  msgid "AdRotate Advertiser"
134
  msgstr ""
135
 
136
- #: adrotate-output.php:557
137
  msgid "Oh no! Something went wrong!"
138
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
139
 
140
- #: adrotate-output.php:558
141
  msgid ""
142
  "WordPress was unable to verify the authenticity of the url you have clicked. "
143
  "Verify if the url used is valid or log in via your browser."
@@ -146,7 +146,7 @@ msgstr ""
146
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
147
  "browser σας."
148
 
149
- #: adrotate-output.php:559
150
  msgid ""
151
  "If you have received the url you want to visit via email, you are being "
152
  "tricked!"
@@ -154,11 +154,11 @@ msgstr ""
154
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
155
  "ξεγέλασαν!"
156
 
157
- #: adrotate-output.php:560
158
  msgid "Contact support if the issue persists:"
159
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
160
 
161
- #: adrotate-output.php:575
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions or does not exist!"
@@ -166,7 +166,7 @@ msgstr ""
166
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
167
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
168
 
169
- #: adrotate-output.php:577
170
  msgid ""
171
  "Error, Ad is not available at this time due to schedule/geolocation "
172
  "restrictions!"
@@ -174,7 +174,7 @@ msgstr ""
174
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
175
  "χρονικών περιορισμών."
176
 
177
- #: adrotate-output.php:584 adrotate-output.php:586
178
  msgid ""
179
  "Either there are no banners, they are disabled or none qualified for this "
180
  "location!"
@@ -182,20 +182,20 @@ msgstr ""
182
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
183
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
184
 
185
- #: adrotate-output.php:592
186
  msgid "Error, no Ad ID set! Check your syntax!"
187
  msgstr ""
188
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
189
 
190
- #: adrotate-output.php:598
191
  msgid "Error, no group ID set! Check your syntax!"
192
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
193
 
194
- #: adrotate-output.php:603
195
  msgid "Error, group does not exist! Check your syntax!"
196
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
197
 
198
- #: adrotate-output.php:609
199
  msgid ""
200
  "There was an error locating the database tables for AdRotate. Please "
201
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -204,186 +204,158 @@ msgstr ""
204
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
205
  "προσθέτων!!"
206
 
207
- #: adrotate-output.php:609
208
  msgid "If this does not solve the issue please seek support at"
209
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
210
 
211
- #: adrotate-output.php:615
212
  msgid "An unknown error occured."
213
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
214
 
215
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
216
  msgid "Check adverts"
217
  msgstr ""
218
 
219
- #: adrotate-output.php:652
220
  msgid ""
221
  "You have enabled caching support but W3 Total Cache is not active on your "
222
  "site!"
223
  msgstr ""
224
 
225
- #: adrotate-output.php:652
226
  #, fuzzy
227
  #| msgid "W3 Total Caching"
228
  msgid "Disable W3 Total Cache Support"
229
  msgstr "W3 Total Caching"
230
 
231
- #: adrotate-output.php:655
232
  msgid ""
233
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
234
  "not set."
235
  msgstr ""
236
 
237
- #: adrotate-output.php:655
238
  msgid "How to configure W3 Total Cache"
239
  msgstr ""
240
 
241
- #: adrotate-output.php:664
242
  msgid ""
243
  "You have enable caching support but Borlabs Cache is not active on your site!"
244
  msgstr ""
245
 
246
- #: adrotate-output.php:664
247
  msgid "Disable Borlabs Cache Support"
248
  msgstr ""
249
 
250
- #: adrotate-output.php:672
251
  msgid ""
252
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
253
  msgstr ""
254
 
255
- #: adrotate-output.php:672
256
  msgid "Enable Fragment Caching"
257
  msgstr ""
258
 
259
- #: adrotate-output.php:678
260
  msgid "Your AdRotate Banner folder is not writable or does not exist."
261
  msgstr ""
262
 
263
- #: adrotate-output.php:678
264
  #, fuzzy
265
  #| msgid "Where are your banner ads?"
266
  msgid "Set up your banner folder"
267
  msgstr "Που βρίσκονται τα μπάνερ σας;"
268
 
269
- #: adrotate-output.php:698
270
  msgid "your attention:"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:719 adrotate.php:447
274
  #: dashboard/publisher/schedules-main.php:13
275
  #, fuzzy
276
  #| msgid "AdRotate Pro"
277
  msgid "Get AdRotate Pro"
278
  msgstr "AdRotate Pro"
279
 
280
- #: adrotate-output.php:720
281
  msgid ""
282
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
283
  "Schedules and more..."
284
  msgstr ""
285
 
286
- #: adrotate-output.php:720
287
  #, php-format
288
  msgid ""
289
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
290
  msgstr ""
291
 
292
- #: adrotate-output.php:720
293
  #, fuzzy
294
  msgid "Thank you for your support!"
295
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
296
 
297
- #: adrotate-output.php:837
298
  msgid ""
299
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
300
  "menu. If you need help getting started take a look at the"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:837
304
  msgid "manuals"
305
  msgstr "εγχειρίδια"
306
 
307
- #: adrotate-output.php:837 adrotate-output.php:921
308
  msgid "and"
309
  msgstr ""
310
 
311
- #: adrotate-output.php:837
312
  msgid "forums"
313
  msgstr ""
314
 
315
- #: adrotate-output.php:870
316
- #, fuzzy
317
- msgid "Useful Links"
318
- msgstr "Χρήσιμοι σύνδεσμοι"
319
-
320
- #: adrotate-output.php:871
321
- msgid "Useful links to learn more about AdRotate"
322
- msgstr ""
323
-
324
- #: adrotate-output.php:873
325
- msgid "AdRotate website"
326
- msgstr ""
327
-
328
- #: adrotate-output.php:874
329
- #, fuzzy
330
- msgid "Getting Started With AdRotate"
331
- msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
332
-
333
- #: adrotate-output.php:875
334
- #, fuzzy
335
- msgid "AdRotate manuals"
336
- msgstr "Πληροφορίες του AdRotate"
337
-
338
- #: adrotate-output.php:876
339
- #, fuzzy
340
- msgid "AdRotate Support Forum"
341
- msgstr "Κατάστημα του AdRotate"
342
-
343
- #: adrotate-output.php:913
344
  #, fuzzy
345
  msgid "Help AdRotate Grow"
346
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
347
 
348
- #: adrotate-output.php:914 adrotate.php:152
349
  #, fuzzy
350
  msgid "AdRotate Professional"
351
  msgstr "AdRotate Pro"
352
 
353
- #: adrotate-output.php:921
354
  msgid ""
355
  "Many users only think to review AdRotate when something goes wrong while "
356
  "thousands of people happily use AdRotate."
357
  msgstr ""
358
 
359
- #: adrotate-output.php:921
360
  msgid "If you find AdRotate useful please leave your"
361
  msgstr ""
362
 
363
- #: adrotate-output.php:921
364
  msgid "rating"
365
  msgstr ""
366
 
367
- #: adrotate-output.php:921
368
  #, fuzzy
369
  msgid "review"
370
  msgstr "Αξιολογήστε και σχολιάστε"
371
 
372
- #: adrotate-output.php:921
373
  msgid "on WordPress.org to help AdRotate grow in a positive way"
374
  msgstr ""
375
 
376
- #: adrotate-output.php:922
377
  msgid ""
378
  "Get more advanced features like Geo Targeting, scheduling and much more with "
379
  "AdRotate Pro."
380
  msgstr ""
381
 
382
- #: adrotate-output.php:922
383
  msgid "Includes premium support and free updates!"
384
  msgstr ""
385
 
386
- #: adrotate-output.php:922
387
  #, fuzzy
388
  #| msgid "Go Pro today"
389
  msgid "Get started today"
@@ -461,45 +433,45 @@ msgstr "Δεν υπάρχουν δεδομένα."
461
  msgid "Not found"
462
  msgstr "Δεν βρέθηκαν αρχεία"
463
 
464
- #: adrotate-widget.php:132
465
  msgid "Title (optional):"
466
  msgstr "Τίτλος (προαιρετικό):"
467
 
468
- #: adrotate-widget.php:135
469
  msgid "HTML will be stripped out."
470
  msgstr "Το HTML θα αφαιρεθεί."
471
 
472
- #: adrotate-widget.php:138
473
  msgid "Description (optional):"
474
  msgstr "Περιγραφή (προαιρετικό):"
475
 
476
- #: adrotate-widget.php:141
477
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
478
  msgstr ""
479
  "Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
480
  "αφαιρεθεί.)"
481
 
482
- #: adrotate-widget.php:144
483
  msgid "Type:"
484
  msgstr "Τύπος:"
485
 
486
- #: adrotate-widget.php:146
487
  msgid "Advert - Use Advert ID"
488
  msgstr ""
489
 
490
- #: adrotate-widget.php:147
491
  msgid "Group - Use group ID"
492
  msgstr ""
493
 
494
- #: adrotate-widget.php:150
495
  msgid "Choose what you want to use this widget for"
496
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
497
 
498
- #: adrotate-widget.php:153
499
  msgid "ID:"
500
  msgstr "Κωδ:"
501
 
502
- #: adrotate-widget.php:156
503
  msgid "Fill in the ID of the type you want to display!"
504
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
505
 
@@ -673,10 +645,10 @@ msgstr ""
673
 
674
  #: dashboard/adrotatepro.php:44
675
  msgid ""
676
- "When you activate your AdRotate Pro license you can use fast and personal "
677
  "email support. No more queueing up in the forums. AdRotate support takes "
678
- "priority over the forums and is checked much more often than the forum. Get "
679
- "a solution (usually) within two business days."
680
  msgstr ""
681
 
682
  #: dashboard/adrotatepro.php:48
@@ -721,16 +693,16 @@ msgid ""
721
  msgstr ""
722
 
723
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
724
- #: dashboard/info.php:79
725
  #, fuzzy
726
  msgid "Buy AdRotate Professional"
727
  msgstr "AdRotate Pro"
728
 
729
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
730
  msgid "Single License"
731
  msgstr ""
732
 
733
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
734
  msgid "One WordPress installation."
735
  msgstr ""
736
 
@@ -738,51 +710,51 @@ msgstr ""
738
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
739
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
740
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
741
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
742
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
743
  #, fuzzy
744
  msgid "Buy now"
745
  msgstr "Λάβετε μέτρα τώρα"
746
 
747
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
748
- #: dashboard/info.php:84
749
  msgid "Duo License"
750
  msgstr ""
751
 
752
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
753
  msgid "Two WordPress installations."
754
  msgstr ""
755
 
756
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
757
- #: dashboard/info.php:85
758
  msgid "Multi License"
759
  msgstr ""
760
 
761
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
762
  #, fuzzy
763
  msgid "Five WordPress installations."
764
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
765
 
766
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
767
- #: dashboard/info.php:86
768
  #, fuzzy
769
  msgid "Developer License"
770
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
771
 
772
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
773
  msgid "Unlimited WordPress installations and/or networks."
774
  msgstr ""
775
 
776
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
777
- #: dashboard/info.php:87
778
  msgid "Compare licenses"
779
  msgstr ""
780
 
781
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
782
  msgid "Not sure which license is for you? Compare them..."
783
  msgstr ""
784
 
785
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
786
  msgid "All Licenses"
787
  msgstr ""
788
 
@@ -853,24 +825,20 @@ msgstr ""
853
  msgid "Arnan de Gans News & Updates"
854
  msgstr ""
855
 
856
- #: dashboard/info.php:91
857
- msgid "AJdG Solutions Premium Support Group"
858
- msgstr ""
859
-
860
- #: dashboard/info.php:108
861
- msgid "Join the Media.net advertising network"
862
- msgstr ""
863
-
864
- #: dashboard/info.php:123
865
  msgid "Sponsored offers"
866
  msgstr ""
867
 
868
- #: dashboard/info.php:129
869
  msgid ""
870
  "These are affiliate banners, clicking them costs you nothing but it helps me "
871
  "and AdRotate a lot!"
872
  msgstr ""
873
 
 
 
 
 
874
  #: dashboard/publisher/adverts-disabled.php:15
875
  msgid "Disabled Adverts"
876
  msgstr ""
@@ -2559,7 +2527,7 @@ msgid "Which Geo Service"
2559
  msgstr ""
2560
 
2561
  #: dashboard/settings/geotargeting.php:32
2562
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2563
  msgstr ""
2564
 
2565
  #: dashboard/settings/geotargeting.php:33
@@ -2581,17 +2549,17 @@ msgid "Suitable for small to medium websites."
2581
  msgstr ""
2582
 
2583
  #: dashboard/settings/geotargeting.php:36
2584
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2585
  msgstr ""
2586
 
2587
  #: dashboard/settings/geotargeting.php:38
2588
- msgid "Suitable for medium sized websites."
 
 
2589
  msgstr ""
2590
 
2591
  #: dashboard/settings/geotargeting.php:40
2592
- msgid ""
2593
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2594
- "lookups."
2595
  msgstr ""
2596
 
2597
  #: dashboard/settings/geotargeting.php:42
@@ -3280,6 +3248,22 @@ msgstr ""
3280
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
3281
  "ώρα)."
3282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3283
  #, fuzzy
3284
  #~ msgid "Push Notifications"
3285
  #~ msgstr "Ειδοποιήσεις"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:49+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:49+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:720
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:723
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-functions.php:808
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
+ #: adrotate-functions.php:812
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
+ #: adrotate-functions.php:816
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
+ #: adrotate-functions.php:820
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
+ #: adrotate-functions.php:824
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
+ #: adrotate-functions.php:828
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
+ #: adrotate-functions.php:832
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
+ #: adrotate-functions.php:836
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
+ #: adrotate-functions.php:840
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
+ #: adrotate-functions.php:844
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
+ #: adrotate-functions.php:848
71
  msgid ""
72
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
73
  "below."
74
  msgstr ""
75
 
76
+ #: adrotate-functions.php:853
77
  msgid "Settings saved"
78
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
79
 
80
+ #: adrotate-functions.php:857
81
  msgid "Database optimized"
82
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
83
 
84
+ #: adrotate-functions.php:861
85
  msgid "Database repaired"
86
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
87
 
88
+ #: adrotate-functions.php:865
89
  msgid "Ads evaluated and statuses have been corrected where required"
90
  msgstr ""
91
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
92
  "χρειάστηκε"
93
 
94
+ #: adrotate-functions.php:869
95
  #, fuzzy
96
  #| msgid "Clean-up Database"
97
  msgid "Cleanup complete"
98
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
99
 
100
+ #: adrotate-functions.php:874
101
  msgid "Action prohibited"
102
  msgstr "Η ενέργεια απαγορεύεται"
103
 
104
+ #: adrotate-functions.php:878
105
  msgid ""
106
  "The ad was saved but has an issue which might prevent it from working "
107
  "properly. Review the colored ad."
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:882
111
  msgid "No data found in selected time period"
112
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
113
 
114
+ #: adrotate-functions.php:886
115
  msgid "Database can only be optimized or cleaned once every hour"
116
  msgstr ""
117
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
118
  "ώρα"
119
 
120
+ #: adrotate-functions.php:890
121
  msgid "Form can not be (partially) empty!"
122
  msgstr ""
123
 
124
+ #: adrotate-functions.php:894
125
  msgid "No ads found."
126
  msgstr ""
127
 
128
+ #: adrotate-functions.php:898
129
  msgid "Unexpected error"
130
  msgstr ""
131
 
133
  msgid "AdRotate Advertiser"
134
  msgstr ""
135
 
136
+ #: adrotate-output.php:572
137
  msgid "Oh no! Something went wrong!"
138
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
139
 
140
+ #: adrotate-output.php:573
141
  msgid ""
142
  "WordPress was unable to verify the authenticity of the url you have clicked. "
143
  "Verify if the url used is valid or log in via your browser."
146
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
147
  "browser σας."
148
 
149
+ #: adrotate-output.php:574
150
  msgid ""
151
  "If you have received the url you want to visit via email, you are being "
152
  "tricked!"
154
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
155
  "ξεγέλασαν!"
156
 
157
+ #: adrotate-output.php:575
158
  msgid "Contact support if the issue persists:"
159
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
160
 
161
+ #: adrotate-output.php:590
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions or does not exist!"
166
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
167
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
168
 
169
+ #: adrotate-output.php:592
170
  msgid ""
171
  "Error, Ad is not available at this time due to schedule/geolocation "
172
  "restrictions!"
174
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
175
  "χρονικών περιορισμών."
176
 
177
+ #: adrotate-output.php:599 adrotate-output.php:601
178
  msgid ""
179
  "Either there are no banners, they are disabled or none qualified for this "
180
  "location!"
182
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
183
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
184
 
185
+ #: adrotate-output.php:607
186
  msgid "Error, no Ad ID set! Check your syntax!"
187
  msgstr ""
188
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
189
 
190
+ #: adrotate-output.php:613
191
  msgid "Error, no group ID set! Check your syntax!"
192
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
193
 
194
+ #: adrotate-output.php:618
195
  msgid "Error, group does not exist! Check your syntax!"
196
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
197
 
198
+ #: adrotate-output.php:624
199
  msgid ""
200
  "There was an error locating the database tables for AdRotate. Please "
201
  "deactivate and re-activate AdRotate from the plugin page!!"
204
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
205
  "προσθέτων!!"
206
 
207
+ #: adrotate-output.php:624
208
  msgid "If this does not solve the issue please seek support at"
209
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
210
 
211
+ #: adrotate-output.php:630
212
  msgid "An unknown error occured."
213
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
214
 
215
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
216
  msgid "Check adverts"
217
  msgstr ""
218
 
219
+ #: adrotate-output.php:662
220
  msgid ""
221
  "You have enabled caching support but W3 Total Cache is not active on your "
222
  "site!"
223
  msgstr ""
224
 
225
+ #: adrotate-output.php:662
226
  #, fuzzy
227
  #| msgid "W3 Total Caching"
228
  msgid "Disable W3 Total Cache Support"
229
  msgstr "W3 Total Caching"
230
 
231
+ #: adrotate-output.php:665
232
  msgid ""
233
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
234
  "not set."
235
  msgstr ""
236
 
237
+ #: adrotate-output.php:665
238
  msgid "How to configure W3 Total Cache"
239
  msgstr ""
240
 
241
+ #: adrotate-output.php:669
242
  msgid ""
243
  "You have enable caching support but Borlabs Cache is not active on your site!"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:669
247
  msgid "Disable Borlabs Cache Support"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:677
251
  msgid ""
252
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:677
256
  msgid "Enable Fragment Caching"
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:683
260
  msgid "Your AdRotate Banner folder is not writable or does not exist."
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:683
264
  #, fuzzy
265
  #| msgid "Where are your banner ads?"
266
  msgid "Set up your banner folder"
267
  msgstr "Που βρίσκονται τα μπάνερ σας;"
268
 
269
+ #: adrotate-output.php:703
270
  msgid "your attention:"
271
  msgstr ""
272
 
273
+ #: adrotate-output.php:724 adrotate.php:447
274
  #: dashboard/publisher/schedules-main.php:13
275
  #, fuzzy
276
  #| msgid "AdRotate Pro"
277
  msgid "Get AdRotate Pro"
278
  msgstr "AdRotate Pro"
279
 
280
+ #: adrotate-output.php:725
281
  msgid ""
282
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
283
  "Schedules and more..."
284
  msgstr ""
285
 
286
+ #: adrotate-output.php:725
287
  #, php-format
288
  msgid ""
289
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
290
  msgstr ""
291
 
292
+ #: adrotate-output.php:725
293
  #, fuzzy
294
  msgid "Thank you for your support!"
295
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
296
 
297
+ #: adrotate-output.php:793
298
  msgid ""
299
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
300
  "menu. If you need help getting started take a look at the"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:793
304
  msgid "manuals"
305
  msgstr "εγχειρίδια"
306
 
307
+ #: adrotate-output.php:793 adrotate-output.php:893
308
  msgid "and"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:793
312
  msgid "forums"
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  #, fuzzy
317
  msgid "Help AdRotate Grow"
318
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
319
 
320
+ #: adrotate-output.php:886 adrotate.php:152
321
  #, fuzzy
322
  msgid "AdRotate Professional"
323
  msgstr "AdRotate Pro"
324
 
325
+ #: adrotate-output.php:893
326
  msgid ""
327
  "Many users only think to review AdRotate when something goes wrong while "
328
  "thousands of people happily use AdRotate."
329
  msgstr ""
330
 
331
+ #: adrotate-output.php:893
332
  msgid "If you find AdRotate useful please leave your"
333
  msgstr ""
334
 
335
+ #: adrotate-output.php:893
336
  msgid "rating"
337
  msgstr ""
338
 
339
+ #: adrotate-output.php:893
340
  #, fuzzy
341
  msgid "review"
342
  msgstr "Αξιολογήστε και σχολιάστε"
343
 
344
+ #: adrotate-output.php:893
345
  msgid "on WordPress.org to help AdRotate grow in a positive way"
346
  msgstr ""
347
 
348
+ #: adrotate-output.php:894
349
  msgid ""
350
  "Get more advanced features like Geo Targeting, scheduling and much more with "
351
  "AdRotate Pro."
352
  msgstr ""
353
 
354
+ #: adrotate-output.php:894
355
  msgid "Includes premium support and free updates!"
356
  msgstr ""
357
 
358
+ #: adrotate-output.php:894
359
  #, fuzzy
360
  #| msgid "Go Pro today"
361
  msgid "Get started today"
433
  msgid "Not found"
434
  msgstr "Δεν βρέθηκαν αρχεία"
435
 
436
+ #: adrotate-widget.php:134
437
  msgid "Title (optional):"
438
  msgstr "Τίτλος (προαιρετικό):"
439
 
440
+ #: adrotate-widget.php:137
441
  msgid "HTML will be stripped out."
442
  msgstr "Το HTML θα αφαιρεθεί."
443
 
444
+ #: adrotate-widget.php:140
445
  msgid "Description (optional):"
446
  msgstr "Περιγραφή (προαιρετικό):"
447
 
448
+ #: adrotate-widget.php:143
449
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
450
  msgstr ""
451
  "Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
452
  "αφαιρεθεί.)"
453
 
454
+ #: adrotate-widget.php:146
455
  msgid "Type:"
456
  msgstr "Τύπος:"
457
 
458
+ #: adrotate-widget.php:148
459
  msgid "Advert - Use Advert ID"
460
  msgstr ""
461
 
462
+ #: adrotate-widget.php:149
463
  msgid "Group - Use group ID"
464
  msgstr ""
465
 
466
+ #: adrotate-widget.php:152
467
  msgid "Choose what you want to use this widget for"
468
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
469
 
470
+ #: adrotate-widget.php:155
471
  msgid "ID:"
472
  msgstr "Κωδ:"
473
 
474
+ #: adrotate-widget.php:158
475
  msgid "Fill in the ID of the type you want to display!"
476
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
477
 
645
 
646
  #: dashboard/adrotatepro.php:44
647
  msgid ""
648
+ "When you activate your AdRotate Pro license you can use the more personal "
649
  "email support. No more queueing up in the forums. AdRotate support takes "
650
+ "priority over the forums and is checked once or twice a day. Get a solution "
651
+ "(usually) within two business days."
652
  msgstr ""
653
 
654
  #: dashboard/adrotatepro.php:48
693
  msgstr ""
694
 
695
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
696
+ #: dashboard/info.php:90
697
  #, fuzzy
698
  msgid "Buy AdRotate Professional"
699
  msgstr "AdRotate Pro"
700
 
701
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
702
  msgid "Single License"
703
  msgstr ""
704
 
705
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
706
  msgid "One WordPress installation."
707
  msgstr ""
708
 
710
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
711
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
712
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
713
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
714
+ #: dashboard/info.php:97
715
  #, fuzzy
716
  msgid "Buy now"
717
  msgstr "Λάβετε μέτρα τώρα"
718
 
719
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
720
+ #: dashboard/info.php:95
721
  msgid "Duo License"
722
  msgstr ""
723
 
724
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
725
  msgid "Two WordPress installations."
726
  msgstr ""
727
 
728
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
729
+ #: dashboard/info.php:96
730
  msgid "Multi License"
731
  msgstr ""
732
 
733
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
734
  #, fuzzy
735
  msgid "Five WordPress installations."
736
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
737
 
738
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
739
+ #: dashboard/info.php:97
740
  #, fuzzy
741
  msgid "Developer License"
742
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
743
 
744
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
745
  msgid "Unlimited WordPress installations and/or networks."
746
  msgstr ""
747
 
748
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
749
+ #: dashboard/info.php:98
750
  msgid "Compare licenses"
751
  msgstr ""
752
 
753
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
754
  msgid "Not sure which license is for you? Compare them..."
755
  msgstr ""
756
 
757
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
758
  msgid "All Licenses"
759
  msgstr ""
760
 
825
  msgid "Arnan de Gans News & Updates"
826
  msgstr ""
827
 
828
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
829
  msgid "Sponsored offers"
830
  msgstr ""
831
 
832
+ #: dashboard/info.php:79
833
  msgid ""
834
  "These are affiliate banners, clicking them costs you nothing but it helps me "
835
  "and AdRotate a lot!"
836
  msgstr ""
837
 
838
+ #: dashboard/info.php:102
839
+ msgid "Join the Media.net advertising network"
840
+ msgstr ""
841
+
842
  #: dashboard/publisher/adverts-disabled.php:15
843
  msgid "Disabled Adverts"
844
  msgstr ""
2527
  msgstr ""
2528
 
2529
  #: dashboard/settings/geotargeting.php:32
2530
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2531
  msgstr ""
2532
 
2533
  #: dashboard/settings/geotargeting.php:33
2549
  msgstr ""
2550
 
2551
  #: dashboard/settings/geotargeting.php:36
2552
+ msgid "10000 free lookups per month, requires account."
2553
  msgstr ""
2554
 
2555
  #: dashboard/settings/geotargeting.php:38
2556
+ msgid ""
2557
+ "Suitable for small to medium sized websites with a free account - Paid "
2558
+ "options available."
2559
  msgstr ""
2560
 
2561
  #: dashboard/settings/geotargeting.php:40
2562
+ msgid "The most accurate geo targeting available."
 
 
2563
  msgstr ""
2564
 
2565
  #: dashboard/settings/geotargeting.php:42
3248
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
3249
  "ώρα)."
3250
 
3251
+ #, fuzzy
3252
+ #~ msgid "Useful Links"
3253
+ #~ msgstr "Χρήσιμοι σύνδεσμοι"
3254
+
3255
+ #, fuzzy
3256
+ #~ msgid "Getting Started With AdRotate"
3257
+ #~ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
3258
+
3259
+ #, fuzzy
3260
+ #~ msgid "AdRotate manuals"
3261
+ #~ msgstr "Πληροφορίες του AdRotate"
3262
+
3263
+ #, fuzzy
3264
+ #~ msgid "AdRotate Support Forum"
3265
+ #~ msgstr "Κατάστημα του AdRotate"
3266
+
3267
  #, fuzzy
3268
  #~ msgid "Push Notifications"
3269
  #~ msgstr "Ειδοποιήσεις"
language/adrotate-en_US.mo CHANGED
Binary file
language/adrotate-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:29+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:30+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
@@ -17,107 +17,107 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:730
21
  msgid "No files found"
22
  msgstr ""
23
 
24
- #: adrotate-functions.php:733
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
- #: adrotate-functions.php:818
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:822
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:826
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
- #: adrotate-functions.php:830
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
- #: adrotate-functions.php:834
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
- #: adrotate-functions.php:838
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
- #: adrotate-functions.php:842
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
- #: adrotate-functions.php:846
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
- #: adrotate-functions.php:850
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
- #: adrotate-functions.php:854
65
  msgid "Export created"
66
  msgstr ""
67
 
68
- #: adrotate-functions.php:858
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:863
75
  msgid "Settings saved"
76
  msgstr ""
77
 
78
- #: adrotate-functions.php:867
79
  msgid "Database optimized"
80
  msgstr ""
81
 
82
- #: adrotate-functions.php:871
83
  msgid "Database repaired"
84
  msgstr ""
85
 
86
- #: adrotate-functions.php:875
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr ""
89
 
90
- #: adrotate-functions.php:879
91
  msgid "Cleanup complete"
92
  msgstr ""
93
 
94
- #: adrotate-functions.php:884
95
  msgid "Action prohibited"
96
  msgstr ""
97
 
98
- #: adrotate-functions.php:888
99
  msgid ""
100
  "The ad was saved but has an issue which might prevent it from working "
101
  "properly. Review the colored ad."
102
  msgstr ""
103
 
104
- #: adrotate-functions.php:892
105
  msgid "No data found in selected time period"
106
  msgstr ""
107
 
108
- #: adrotate-functions.php:896
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
 
112
- #: adrotate-functions.php:900
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
- #: adrotate-functions.php:904
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
- #: adrotate-functions.php:908
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
@@ -125,228 +125,204 @@ msgstr ""
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
128
- #: adrotate-output.php:557
129
  msgid "Oh no! Something went wrong!"
130
  msgstr ""
131
 
132
- #: adrotate-output.php:558
133
  msgid ""
134
  "WordPress was unable to verify the authenticity of the url you have clicked. "
135
  "Verify if the url used is valid or log in via your browser."
136
  msgstr ""
137
 
138
- #: adrotate-output.php:559
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
142
  msgstr ""
143
 
144
- #: adrotate-output.php:560
145
  msgid "Contact support if the issue persists:"
146
  msgstr ""
147
 
148
- #: adrotate-output.php:575
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions or does not exist!"
152
  msgstr ""
153
 
154
- #: adrotate-output.php:577
155
  msgid ""
156
  "Error, Ad is not available at this time due to schedule/geolocation "
157
  "restrictions!"
158
  msgstr ""
159
 
160
- #: adrotate-output.php:584 adrotate-output.php:586
161
  msgid ""
162
  "Either there are no banners, they are disabled or none qualified for this "
163
  "location!"
164
  msgstr ""
165
 
166
- #: adrotate-output.php:592
167
  msgid "Error, no Ad ID set! Check your syntax!"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:598
171
  msgid "Error, no group ID set! Check your syntax!"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:603
175
  msgid "Error, group does not exist! Check your syntax!"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:609
179
  msgid ""
180
  "There was an error locating the database tables for AdRotate. Please "
181
  "deactivate and re-activate AdRotate from the plugin page!!"
182
  msgstr ""
183
 
184
- #: adrotate-output.php:609
185
  msgid "If this does not solve the issue please seek support at"
186
  msgstr ""
187
 
188
- #: adrotate-output.php:615
189
  msgid "An unknown error occured."
190
  msgstr ""
191
 
192
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
193
  msgid "Check adverts"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:652
197
  msgid ""
198
  "You have enabled caching support but W3 Total Cache is not active on your "
199
  "site!"
200
  msgstr ""
201
 
202
- #: adrotate-output.php:652
203
  msgid "Disable W3 Total Cache Support"
204
  msgstr ""
205
 
206
- #: adrotate-output.php:655
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
- #: adrotate-output.php:655
213
  msgid "How to configure W3 Total Cache"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:664
217
  msgid ""
218
  "You have enable caching support but Borlabs Cache is not active on your site!"
219
  msgstr ""
220
 
221
- #: adrotate-output.php:664
222
  msgid "Disable Borlabs Cache Support"
223
  msgstr ""
224
 
225
- #: adrotate-output.php:672
226
  msgid ""
227
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
228
  msgstr ""
229
 
230
- #: adrotate-output.php:672
231
  msgid "Enable Fragment Caching"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:678
235
  msgid "Your AdRotate Banner folder is not writable or does not exist."
236
  msgstr ""
237
 
238
- #: adrotate-output.php:678
239
  msgid "Set up your banner folder"
240
  msgstr ""
241
 
242
- #: adrotate-output.php:698
243
  msgid "your attention:"
244
  msgstr ""
245
 
246
- #: adrotate-output.php:719 adrotate.php:447
247
  #: dashboard/publisher/schedules-main.php:13
248
  msgid "Get AdRotate Pro"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:720
252
  msgid ""
253
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
254
  "Schedules and more..."
255
  msgstr ""
256
 
257
- #: adrotate-output.php:720
258
  #, php-format
259
  msgid ""
260
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
261
  msgstr ""
262
 
263
- #: adrotate-output.php:720
264
  msgid "Thank you for your support!"
265
  msgstr ""
266
 
267
- #: adrotate-output.php:837
268
  msgid ""
269
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
270
  "menu. If you need help getting started take a look at the"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:837
274
  msgid "manuals"
275
  msgstr ""
276
 
277
- #: adrotate-output.php:837 adrotate-output.php:921
278
  msgid "and"
279
  msgstr ""
280
 
281
- #: adrotate-output.php:837
282
  msgid "forums"
283
  msgstr ""
284
 
285
- #: adrotate-output.php:870
286
- msgid "Useful Links"
287
- msgstr ""
288
-
289
- #: adrotate-output.php:871
290
- msgid "Useful links to learn more about AdRotate"
291
- msgstr ""
292
-
293
- #: adrotate-output.php:873
294
- msgid "AdRotate website"
295
- msgstr ""
296
-
297
- #: adrotate-output.php:874
298
- msgid "Getting Started With AdRotate"
299
- msgstr ""
300
-
301
- #: adrotate-output.php:875
302
- msgid "AdRotate manuals"
303
- msgstr ""
304
-
305
- #: adrotate-output.php:876
306
- msgid "AdRotate Support Forum"
307
- msgstr ""
308
-
309
- #: adrotate-output.php:913
310
  msgid "Help AdRotate Grow"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:914 adrotate.php:152
314
  msgid "AdRotate Professional"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:921
318
  msgid ""
319
  "Many users only think to review AdRotate when something goes wrong while "
320
  "thousands of people happily use AdRotate."
321
  msgstr ""
322
 
323
- #: adrotate-output.php:921
324
  msgid "If you find AdRotate useful please leave your"
325
  msgstr ""
326
 
327
- #: adrotate-output.php:921
328
  msgid "rating"
329
  msgstr ""
330
 
331
- #: adrotate-output.php:921
332
  msgid "review"
333
  msgstr ""
334
 
335
- #: adrotate-output.php:921
336
  msgid "on WordPress.org to help AdRotate grow in a positive way"
337
  msgstr ""
338
 
339
- #: adrotate-output.php:922
340
  msgid ""
341
  "Get more advanced features like Geo Targeting, scheduling and much more with "
342
  "AdRotate Pro."
343
  msgstr ""
344
 
345
- #: adrotate-output.php:922
346
  msgid "Includes premium support and free updates!"
347
  msgstr ""
348
 
349
- #: adrotate-output.php:922
350
  msgid "Get started today"
351
  msgstr ""
352
 
@@ -420,43 +396,43 @@ msgstr ""
420
  msgid "Not found"
421
  msgstr ""
422
 
423
- #: adrotate-widget.php:132
424
  msgid "Title (optional):"
425
  msgstr ""
426
 
427
- #: adrotate-widget.php:135
428
  msgid "HTML will be stripped out."
429
  msgstr ""
430
 
431
- #: adrotate-widget.php:138
432
  msgid "Description (optional):"
433
  msgstr ""
434
 
435
- #: adrotate-widget.php:141
436
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
437
  msgstr ""
438
 
439
- #: adrotate-widget.php:144
440
  msgid "Type:"
441
  msgstr ""
442
 
443
- #: adrotate-widget.php:146
444
  msgid "Advert - Use Advert ID"
445
  msgstr ""
446
 
447
- #: adrotate-widget.php:147
448
  msgid "Group - Use group ID"
449
  msgstr ""
450
 
451
- #: adrotate-widget.php:150
452
  msgid "Choose what you want to use this widget for"
453
  msgstr ""
454
 
455
- #: adrotate-widget.php:153
456
  msgid "ID:"
457
  msgstr ""
458
 
459
- #: adrotate-widget.php:156
460
  msgid "Fill in the ID of the type you want to display!"
461
  msgstr ""
462
 
@@ -620,10 +596,10 @@ msgstr ""
620
 
621
  #: dashboard/adrotatepro.php:44
622
  msgid ""
623
- "When you activate your AdRotate Pro license you can use fast and personal "
624
  "email support. No more queueing up in the forums. AdRotate support takes "
625
- "priority over the forums and is checked much more often than the forum. Get "
626
- "a solution (usually) within two business days."
627
  msgstr ""
628
 
629
  #: dashboard/adrotatepro.php:48
@@ -668,15 +644,15 @@ msgid ""
668
  msgstr ""
669
 
670
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
671
- #: dashboard/info.php:79
672
  msgid "Buy AdRotate Professional"
673
  msgstr ""
674
 
675
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
676
  msgid "Single License"
677
  msgstr ""
678
 
679
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
680
  msgid "One WordPress installation."
681
  msgstr ""
682
 
@@ -684,48 +660,48 @@ msgstr ""
684
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
685
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
686
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
687
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
688
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
689
  msgid "Buy now"
690
  msgstr ""
691
 
692
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
693
- #: dashboard/info.php:84
694
  msgid "Duo License"
695
  msgstr ""
696
 
697
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
698
  msgid "Two WordPress installations."
699
  msgstr ""
700
 
701
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
702
- #: dashboard/info.php:85
703
  msgid "Multi License"
704
  msgstr ""
705
 
706
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
707
  msgid "Five WordPress installations."
708
  msgstr ""
709
 
710
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
711
- #: dashboard/info.php:86
712
  msgid "Developer License"
713
  msgstr ""
714
 
715
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
716
  msgid "Unlimited WordPress installations and/or networks."
717
  msgstr ""
718
 
719
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
720
- #: dashboard/info.php:87
721
  msgid "Compare licenses"
722
  msgstr ""
723
 
724
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
725
  msgid "Not sure which license is for you? Compare them..."
726
  msgstr ""
727
 
728
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
729
  msgid "All Licenses"
730
  msgstr ""
731
 
@@ -796,24 +772,20 @@ msgstr ""
796
  msgid "Arnan de Gans News & Updates"
797
  msgstr ""
798
 
799
- #: dashboard/info.php:91
800
- msgid "AJdG Solutions Premium Support Group"
801
- msgstr ""
802
-
803
- #: dashboard/info.php:108
804
- msgid "Join the Media.net advertising network"
805
- msgstr ""
806
-
807
- #: dashboard/info.php:123
808
  msgid "Sponsored offers"
809
  msgstr ""
810
 
811
- #: dashboard/info.php:129
812
  msgid ""
813
  "These are affiliate banners, clicking them costs you nothing but it helps me "
814
  "and AdRotate a lot!"
815
  msgstr ""
816
 
 
 
 
 
817
  #: dashboard/publisher/adverts-disabled.php:15
818
  msgid "Disabled Adverts"
819
  msgstr ""
@@ -2377,7 +2349,7 @@ msgid "Which Geo Service"
2377
  msgstr ""
2378
 
2379
  #: dashboard/settings/geotargeting.php:32
2380
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2381
  msgstr ""
2382
 
2383
  #: dashboard/settings/geotargeting.php:33
@@ -2399,17 +2371,17 @@ msgid "Suitable for small to medium websites."
2399
  msgstr ""
2400
 
2401
  #: dashboard/settings/geotargeting.php:36
2402
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2403
  msgstr ""
2404
 
2405
  #: dashboard/settings/geotargeting.php:38
2406
- msgid "Suitable for medium sized websites."
 
 
2407
  msgstr ""
2408
 
2409
  #: dashboard/settings/geotargeting.php:40
2410
- msgid ""
2411
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2412
- "lookups."
2413
  msgstr ""
2414
 
2415
  #: dashboard/settings/geotargeting.php:42
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:720
21
  msgid "No files found"
22
  msgstr ""
23
 
24
+ #: adrotate-functions.php:723
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
+ #: adrotate-functions.php:808
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:812
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:816
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
+ #: adrotate-functions.php:820
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
+ #: adrotate-functions.php:824
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
+ #: adrotate-functions.php:828
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
+ #: adrotate-functions.php:832
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
+ #: adrotate-functions.php:836
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
+ #: adrotate-functions.php:840
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
+ #: adrotate-functions.php:844
65
  msgid "Export created"
66
  msgstr ""
67
 
68
+ #: adrotate-functions.php:848
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:853
75
  msgid "Settings saved"
76
  msgstr ""
77
 
78
+ #: adrotate-functions.php:857
79
  msgid "Database optimized"
80
  msgstr ""
81
 
82
+ #: adrotate-functions.php:861
83
  msgid "Database repaired"
84
  msgstr ""
85
 
86
+ #: adrotate-functions.php:865
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr ""
89
 
90
+ #: adrotate-functions.php:869
91
  msgid "Cleanup complete"
92
  msgstr ""
93
 
94
+ #: adrotate-functions.php:874
95
  msgid "Action prohibited"
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:878
99
  msgid ""
100
  "The ad was saved but has an issue which might prevent it from working "
101
  "properly. Review the colored ad."
102
  msgstr ""
103
 
104
+ #: adrotate-functions.php:882
105
  msgid "No data found in selected time period"
106
  msgstr ""
107
 
108
+ #: adrotate-functions.php:886
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
 
112
+ #: adrotate-functions.php:890
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:894
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
+ #: adrotate-functions.php:898
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
128
+ #: adrotate-output.php:572
129
  msgid "Oh no! Something went wrong!"
130
  msgstr ""
131
 
132
+ #: adrotate-output.php:573
133
  msgid ""
134
  "WordPress was unable to verify the authenticity of the url you have clicked. "
135
  "Verify if the url used is valid or log in via your browser."
136
  msgstr ""
137
 
138
+ #: adrotate-output.php:574
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
142
  msgstr ""
143
 
144
+ #: adrotate-output.php:575
145
  msgid "Contact support if the issue persists:"
146
  msgstr ""
147
 
148
+ #: adrotate-output.php:590
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions or does not exist!"
152
  msgstr ""
153
 
154
+ #: adrotate-output.php:592
155
  msgid ""
156
  "Error, Ad is not available at this time due to schedule/geolocation "
157
  "restrictions!"
158
  msgstr ""
159
 
160
+ #: adrotate-output.php:599 adrotate-output.php:601
161
  msgid ""
162
  "Either there are no banners, they are disabled or none qualified for this "
163
  "location!"
164
  msgstr ""
165
 
166
+ #: adrotate-output.php:607
167
  msgid "Error, no Ad ID set! Check your syntax!"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:613
171
  msgid "Error, no group ID set! Check your syntax!"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:618
175
  msgid "Error, group does not exist! Check your syntax!"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:624
179
  msgid ""
180
  "There was an error locating the database tables for AdRotate. Please "
181
  "deactivate and re-activate AdRotate from the plugin page!!"
182
  msgstr ""
183
 
184
+ #: adrotate-output.php:624
185
  msgid "If this does not solve the issue please seek support at"
186
  msgstr ""
187
 
188
+ #: adrotate-output.php:630
189
  msgid "An unknown error occured."
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
193
  msgid "Check adverts"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:662
197
  msgid ""
198
  "You have enabled caching support but W3 Total Cache is not active on your "
199
  "site!"
200
  msgstr ""
201
 
202
+ #: adrotate-output.php:662
203
  msgid "Disable W3 Total Cache Support"
204
  msgstr ""
205
 
206
+ #: adrotate-output.php:665
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:665
213
  msgid "How to configure W3 Total Cache"
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:669
217
  msgid ""
218
  "You have enable caching support but Borlabs Cache is not active on your site!"
219
  msgstr ""
220
 
221
+ #: adrotate-output.php:669
222
  msgid "Disable Borlabs Cache Support"
223
  msgstr ""
224
 
225
+ #: adrotate-output.php:677
226
  msgid ""
227
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:677
231
  msgid "Enable Fragment Caching"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:683
235
  msgid "Your AdRotate Banner folder is not writable or does not exist."
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:683
239
  msgid "Set up your banner folder"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:703
243
  msgid "your attention:"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:724 adrotate.php:447
247
  #: dashboard/publisher/schedules-main.php:13
248
  msgid "Get AdRotate Pro"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:725
252
  msgid ""
253
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
254
  "Schedules and more..."
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:725
258
  #, php-format
259
  msgid ""
260
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:725
264
  msgid "Thank you for your support!"
265
  msgstr ""
266
 
267
+ #: adrotate-output.php:793
268
  msgid ""
269
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
270
  "menu. If you need help getting started take a look at the"
271
  msgstr ""
272
 
273
+ #: adrotate-output.php:793
274
  msgid "manuals"
275
  msgstr ""
276
 
277
+ #: adrotate-output.php:793 adrotate-output.php:893
278
  msgid "and"
279
  msgstr ""
280
 
281
+ #: adrotate-output.php:793
282
  msgid "forums"
283
  msgstr ""
284
 
285
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  msgid "Help AdRotate Grow"
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:886 adrotate.php:152
290
  msgid "AdRotate Professional"
291
  msgstr ""
292
 
293
+ #: adrotate-output.php:893
294
  msgid ""
295
  "Many users only think to review AdRotate when something goes wrong while "
296
  "thousands of people happily use AdRotate."
297
  msgstr ""
298
 
299
+ #: adrotate-output.php:893
300
  msgid "If you find AdRotate useful please leave your"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:893
304
  msgid "rating"
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:893
308
  msgid "review"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:893
312
  msgid "on WordPress.org to help AdRotate grow in a positive way"
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:894
316
  msgid ""
317
  "Get more advanced features like Geo Targeting, scheduling and much more with "
318
  "AdRotate Pro."
319
  msgstr ""
320
 
321
+ #: adrotate-output.php:894
322
  msgid "Includes premium support and free updates!"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:894
326
  msgid "Get started today"
327
  msgstr ""
328
 
396
  msgid "Not found"
397
  msgstr ""
398
 
399
+ #: adrotate-widget.php:134
400
  msgid "Title (optional):"
401
  msgstr ""
402
 
403
+ #: adrotate-widget.php:137
404
  msgid "HTML will be stripped out."
405
  msgstr ""
406
 
407
+ #: adrotate-widget.php:140
408
  msgid "Description (optional):"
409
  msgstr ""
410
 
411
+ #: adrotate-widget.php:143
412
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
413
  msgstr ""
414
 
415
+ #: adrotate-widget.php:146
416
  msgid "Type:"
417
  msgstr ""
418
 
419
+ #: adrotate-widget.php:148
420
  msgid "Advert - Use Advert ID"
421
  msgstr ""
422
 
423
+ #: adrotate-widget.php:149
424
  msgid "Group - Use group ID"
425
  msgstr ""
426
 
427
+ #: adrotate-widget.php:152
428
  msgid "Choose what you want to use this widget for"
429
  msgstr ""
430
 
431
+ #: adrotate-widget.php:155
432
  msgid "ID:"
433
  msgstr ""
434
 
435
+ #: adrotate-widget.php:158
436
  msgid "Fill in the ID of the type you want to display!"
437
  msgstr ""
438
 
596
 
597
  #: dashboard/adrotatepro.php:44
598
  msgid ""
599
+ "When you activate your AdRotate Pro license you can use the more personal "
600
  "email support. No more queueing up in the forums. AdRotate support takes "
601
+ "priority over the forums and is checked once or twice a day. Get a solution "
602
+ "(usually) within two business days."
603
  msgstr ""
604
 
605
  #: dashboard/adrotatepro.php:48
644
  msgstr ""
645
 
646
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
647
+ #: dashboard/info.php:90
648
  msgid "Buy AdRotate Professional"
649
  msgstr ""
650
 
651
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
652
  msgid "Single License"
653
  msgstr ""
654
 
655
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
656
  msgid "One WordPress installation."
657
  msgstr ""
658
 
660
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
661
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
662
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
663
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
664
+ #: dashboard/info.php:97
665
  msgid "Buy now"
666
  msgstr ""
667
 
668
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
669
+ #: dashboard/info.php:95
670
  msgid "Duo License"
671
  msgstr ""
672
 
673
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
674
  msgid "Two WordPress installations."
675
  msgstr ""
676
 
677
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
678
+ #: dashboard/info.php:96
679
  msgid "Multi License"
680
  msgstr ""
681
 
682
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
683
  msgid "Five WordPress installations."
684
  msgstr ""
685
 
686
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
687
+ #: dashboard/info.php:97
688
  msgid "Developer License"
689
  msgstr ""
690
 
691
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
692
  msgid "Unlimited WordPress installations and/or networks."
693
  msgstr ""
694
 
695
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
696
+ #: dashboard/info.php:98
697
  msgid "Compare licenses"
698
  msgstr ""
699
 
700
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
701
  msgid "Not sure which license is for you? Compare them..."
702
  msgstr ""
703
 
704
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
705
  msgid "All Licenses"
706
  msgstr ""
707
 
772
  msgid "Arnan de Gans News & Updates"
773
  msgstr ""
774
 
775
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
776
  msgid "Sponsored offers"
777
  msgstr ""
778
 
779
+ #: dashboard/info.php:79
780
  msgid ""
781
  "These are affiliate banners, clicking them costs you nothing but it helps me "
782
  "and AdRotate a lot!"
783
  msgstr ""
784
 
785
+ #: dashboard/info.php:102
786
+ msgid "Join the Media.net advertising network"
787
+ msgstr ""
788
+
789
  #: dashboard/publisher/adverts-disabled.php:15
790
  msgid "Disabled Adverts"
791
  msgstr ""
2349
  msgstr ""
2350
 
2351
  #: dashboard/settings/geotargeting.php:32
2352
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2353
  msgstr ""
2354
 
2355
  #: dashboard/settings/geotargeting.php:33
2371
  msgstr ""
2372
 
2373
  #: dashboard/settings/geotargeting.php:36
2374
+ msgid "10000 free lookups per month, requires account."
2375
  msgstr ""
2376
 
2377
  #: dashboard/settings/geotargeting.php:38
2378
+ msgid ""
2379
+ "Suitable for small to medium sized websites with a free account - Paid "
2380
+ "options available."
2381
  msgstr ""
2382
 
2383
  #: dashboard/settings/geotargeting.php:40
2384
+ msgid "The most accurate geo targeting available."
 
 
2385
  msgstr ""
2386
 
2387
  #: dashboard/settings/geotargeting.php:42
language/adrotate-es_ES.mo CHANGED
Binary file
language/adrotate-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:29+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:29+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
9
  "Language: es_ES\n"
@@ -17,110 +17,110 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:730
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
- #: adrotate-functions.php:733
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
- #: adrotate-functions.php:818
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:822
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:826
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
- #: adrotate-functions.php:830
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
- #: adrotate-functions.php:834
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
- #: adrotate-functions.php:838
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
- #: adrotate-functions.php:842
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
- #: adrotate-functions.php:846
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
- #: adrotate-functions.php:850
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
- #: adrotate-functions.php:854
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
- #: adrotate-functions.php:858
70
  msgid ""
71
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
72
  "below."
73
  msgstr ""
74
 
75
- #: adrotate-functions.php:863
76
  msgid "Settings saved"
77
  msgstr "Ajustes guardados"
78
 
79
- #: adrotate-functions.php:867
80
  msgid "Database optimized"
81
  msgstr "Base de Datos optimizada"
82
 
83
- #: adrotate-functions.php:871
84
  msgid "Database repaired"
85
  msgstr "Base de Datos reparada"
86
 
87
- #: adrotate-functions.php:875
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
90
 
91
- #: adrotate-functions.php:879
92
  #, fuzzy
93
  #| msgid "Clean-up Database"
94
  msgid "Cleanup complete"
95
  msgstr "Limpieza de la Base de Datos"
96
 
97
- #: adrotate-functions.php:884
98
  msgid "Action prohibited"
99
  msgstr "Acción prohibida"
100
 
101
- #: adrotate-functions.php:888
102
  msgid ""
103
  "The ad was saved but has an issue which might prevent it from working "
104
  "properly. Review the colored ad."
105
  msgstr ""
106
 
107
- #: adrotate-functions.php:892
108
  msgid "No data found in selected time period"
109
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
110
 
111
- #: adrotate-functions.php:896
112
  msgid "Database can only be optimized or cleaned once every hour"
113
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
114
 
115
- #: adrotate-functions.php:900
116
  msgid "Form can not be (partially) empty!"
117
  msgstr ""
118
 
119
- #: adrotate-functions.php:904
120
  msgid "No ads found."
121
  msgstr ""
122
 
123
- #: adrotate-functions.php:908
124
  msgid "Unexpected error"
125
  msgstr ""
126
 
@@ -128,11 +128,11 @@ msgstr ""
128
  msgid "AdRotate Advertiser"
129
  msgstr ""
130
 
131
- #: adrotate-output.php:557
132
  msgid "Oh no! Something went wrong!"
133
  msgstr "¡Oh, no! Algo salió mal!"
134
 
135
- #: adrotate-output.php:558
136
  msgid ""
137
  "WordPress was unable to verify the authenticity of the url you have clicked. "
138
  "Verify if the url used is valid or log in via your browser."
@@ -140,7 +140,7 @@ msgstr ""
140
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
141
  "Verificar si la url utilizada es válida o acceder a través del navegador."
142
 
143
- #: adrotate-output.php:559
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
@@ -148,11 +148,11 @@ msgstr ""
148
  "Si usted ha recibido la url que desea visitar a través del correo "
149
  "electrónico, es posible que le esten engañando!"
150
 
151
- #: adrotate-output.php:560
152
  msgid "Contact support if the issue persists:"
153
  msgstr "Si el problema persiste, contacte con el soporte:"
154
 
155
- #: adrotate-output.php:575
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions or does not exist!"
@@ -160,7 +160,7 @@ msgstr ""
160
  "ERROR: El anuncio no está disponible en este momento debido a las "
161
  "restricciones de programa, de geolocalización o no existe!"
162
 
163
- #: adrotate-output.php:577
164
  msgid ""
165
  "Error, Ad is not available at this time due to schedule/geolocation "
166
  "restrictions!"
@@ -168,7 +168,7 @@ msgstr ""
168
  "ERROR: El anuncio no está disponible en este momento debido a las "
169
  "restricciones restricciones de programa o geolocalización!"
170
 
171
- #: adrotate-output.php:584 adrotate-output.php:586
172
  msgid ""
173
  "Either there are no banners, they are disabled or none qualified for this "
174
  "location!"
@@ -176,19 +176,19 @@ msgstr ""
176
  "O bien no hay banners, estan desactivados o no estan programados para esta "
177
  "ubicación!"
178
 
179
- #: adrotate-output.php:592
180
  msgid "Error, no Ad ID set! Check your syntax!"
181
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
182
 
183
- #: adrotate-output.php:598
184
  msgid "Error, no group ID set! Check your syntax!"
185
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
186
 
187
- #: adrotate-output.php:603
188
  msgid "Error, group does not exist! Check your syntax!"
189
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
190
 
191
- #: adrotate-output.php:609
192
  msgid ""
193
  "There was an error locating the database tables for AdRotate. Please "
194
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -196,185 +196,157 @@ msgstr ""
196
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
197
  "desactivar y volver a activar el plugin AdRotate de la página!"
198
 
199
- #: adrotate-output.php:609
200
  msgid "If this does not solve the issue please seek support at"
201
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
202
 
203
- #: adrotate-output.php:615
204
  msgid "An unknown error occured."
205
  msgstr "Ha ocurrido un error desconocido."
206
 
207
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
208
  msgid "Check adverts"
209
  msgstr ""
210
 
211
- #: adrotate-output.php:652
212
  msgid ""
213
  "You have enabled caching support but W3 Total Cache is not active on your "
214
  "site!"
215
  msgstr ""
216
 
217
- #: adrotate-output.php:652
218
  #, fuzzy
219
  #| msgid "W3 Total Caching"
220
  msgid "Disable W3 Total Cache Support"
221
  msgstr "W3 Total Cache"
222
 
223
- #: adrotate-output.php:655
224
  msgid ""
225
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
226
  "not set."
227
  msgstr ""
228
 
229
- #: adrotate-output.php:655
230
  msgid "How to configure W3 Total Cache"
231
  msgstr ""
232
 
233
- #: adrotate-output.php:664
234
  msgid ""
235
  "You have enable caching support but Borlabs Cache is not active on your site!"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:664
239
  msgid "Disable Borlabs Cache Support"
240
  msgstr ""
241
 
242
- #: adrotate-output.php:672
243
  msgid ""
244
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:672
248
  msgid "Enable Fragment Caching"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:678
252
  msgid "Your AdRotate Banner folder is not writable or does not exist."
253
  msgstr ""
254
 
255
- #: adrotate-output.php:678
256
  #, fuzzy
257
  #| msgid "Banner folder:"
258
  msgid "Set up your banner folder"
259
  msgstr "Carpeta Banner:"
260
 
261
- #: adrotate-output.php:698
262
  msgid "your attention:"
263
  msgstr ""
264
 
265
- #: adrotate-output.php:719 adrotate.php:447
266
  #: dashboard/publisher/schedules-main.php:13
267
  #, fuzzy
268
  #| msgid "AdRotate Pro"
269
  msgid "Get AdRotate Pro"
270
  msgstr "AdRotate Pro"
271
 
272
- #: adrotate-output.php:720
273
  msgid ""
274
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
275
  "Schedules and more..."
276
  msgstr ""
277
 
278
- #: adrotate-output.php:720
279
  #, php-format
280
  msgid ""
281
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
282
  msgstr ""
283
 
284
- #: adrotate-output.php:720
285
  #, fuzzy
286
  msgid "Thank you for your support!"
287
  msgstr "Esta notificación se le envía desde su página web"
288
 
289
- #: adrotate-output.php:837
290
  msgid ""
291
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
292
  "menu. If you need help getting started take a look at the"
293
  msgstr ""
294
 
295
- #: adrotate-output.php:837
296
  msgid "manuals"
297
  msgstr "manuales"
298
 
299
- #: adrotate-output.php:837 adrotate-output.php:921
300
  msgid "and"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:837
304
  msgid "forums"
305
  msgstr ""
306
 
307
- #: adrotate-output.php:870
308
- #, fuzzy
309
- msgid "Useful Links"
310
- msgstr "Enlaces de interés"
311
-
312
- #: adrotate-output.php:871
313
- msgid "Useful links to learn more about AdRotate"
314
- msgstr ""
315
-
316
- #: adrotate-output.php:873
317
- msgid "AdRotate website"
318
- msgstr ""
319
-
320
- #: adrotate-output.php:874
321
- #, fuzzy
322
- msgid "Getting Started With AdRotate"
323
- msgstr "Obtenga más funciones con AdRotate Pro"
324
-
325
- #: adrotate-output.php:875
326
- #, fuzzy
327
- msgid "AdRotate manuals"
328
- msgstr "Información de AdRotate"
329
-
330
- #: adrotate-output.php:876
331
- #, fuzzy
332
- msgid "AdRotate Support Forum"
333
- msgstr "Tienda AdRotate"
334
-
335
- #: adrotate-output.php:913
336
  #, fuzzy
337
  msgid "Help AdRotate Grow"
338
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
339
 
340
- #: adrotate-output.php:914 adrotate.php:152
341
  msgid "AdRotate Professional"
342
  msgstr "AdRotate Profesional"
343
 
344
- #: adrotate-output.php:921
345
  msgid ""
346
  "Many users only think to review AdRotate when something goes wrong while "
347
  "thousands of people happily use AdRotate."
348
  msgstr ""
349
 
350
- #: adrotate-output.php:921
351
  msgid "If you find AdRotate useful please leave your"
352
  msgstr ""
353
 
354
- #: adrotate-output.php:921
355
  msgid "rating"
356
  msgstr ""
357
 
358
- #: adrotate-output.php:921
359
  #, fuzzy
360
  msgid "review"
361
  msgstr "Revise el anuncio aquí:"
362
 
363
- #: adrotate-output.php:921
364
  msgid "on WordPress.org to help AdRotate grow in a positive way"
365
  msgstr ""
366
 
367
- #: adrotate-output.php:922
368
  msgid ""
369
  "Get more advanced features like Geo Targeting, scheduling and much more with "
370
  "AdRotate Pro."
371
  msgstr ""
372
 
373
- #: adrotate-output.php:922
374
  msgid "Includes premium support and free updates!"
375
  msgstr ""
376
 
377
- #: adrotate-output.php:922
378
  #, fuzzy
379
  msgid "Get started today"
380
  msgstr "Obtenga más funciones con AdRotate Pro"
@@ -451,44 +423,44 @@ msgstr "No hay datos para mostrar!"
451
  msgid "Not found"
452
  msgstr "No se han encontrado contenidos"
453
 
454
- #: adrotate-widget.php:132
455
  msgid "Title (optional):"
456
  msgstr "Título (opcional):"
457
 
458
- #: adrotate-widget.php:135
459
  msgid "HTML will be stripped out."
460
  msgstr "El HTML será eliminado"
461
 
462
- #: adrotate-widget.php:138
463
  msgid "Description (optional):"
464
  msgstr "Descripción (opcional):"
465
 
466
- #: adrotate-widget.php:141
467
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
468
  msgstr ""
469
  "¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
470
 
471
- #: adrotate-widget.php:144
472
  msgid "Type:"
473
  msgstr "Tipo:"
474
 
475
- #: adrotate-widget.php:146
476
  msgid "Advert - Use Advert ID"
477
  msgstr ""
478
 
479
- #: adrotate-widget.php:147
480
  msgid "Group - Use group ID"
481
  msgstr ""
482
 
483
- #: adrotate-widget.php:150
484
  msgid "Choose what you want to use this widget for"
485
  msgstr "Elija lo que desea utilizar en este widget para"
486
 
487
- #: adrotate-widget.php:153
488
  msgid "ID:"
489
  msgstr "ID:"
490
 
491
- #: adrotate-widget.php:156
492
  msgid "Fill in the ID of the type you want to display!"
493
  msgstr "Rellene con el ID del tipo que desea mostrar!"
494
 
@@ -676,10 +648,10 @@ msgstr "Obtenga Soporte Premium completo durante todo el año"
676
  #| "support. AdRotate premium support which takes priority over the Forums "
677
  #| "and even email. Get a solution (usually) within a day."
678
  msgid ""
679
- "When you activate your AdRotate Pro license you can use fast and personal "
680
  "email support. No more queueing up in the forums. AdRotate support takes "
681
- "priority over the forums and is checked much more often than the forum. Get "
682
- "a solution (usually) within two business days."
683
  msgstr ""
684
  "Al activar su licencia AdRotate Pro usted tiene derecho a tickets de "
685
  "soporte. El soporte Premium de AdRotate tiene prioridad respecto al de los "
@@ -737,15 +709,15 @@ msgstr ""
737
  "de expiración de tus anuncios."
738
 
739
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
740
- #: dashboard/info.php:79
741
  msgid "Buy AdRotate Professional"
742
  msgstr "Comprar AdRotate Profesional"
743
 
744
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
745
  msgid "Single License"
746
  msgstr ""
747
 
748
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
749
  msgid "One WordPress installation."
750
  msgstr ""
751
 
@@ -753,51 +725,51 @@ msgstr ""
753
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
754
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
755
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
756
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
757
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
758
  #, fuzzy
759
  msgid "Buy now"
760
  msgstr "Comprar"
761
 
762
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
763
- #: dashboard/info.php:84
764
  msgid "Duo License"
765
  msgstr "Duo Licencia"
766
 
767
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
768
  msgid "Two WordPress installations."
769
  msgstr ""
770
 
771
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
772
- #: dashboard/info.php:85
773
  msgid "Multi License"
774
  msgstr "Multi Licencia"
775
 
776
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
777
  #, fuzzy
778
  #| msgid "For one WordPress installation."
779
  msgid "Five WordPress installations."
780
  msgstr "Para una instalación de WordPress."
781
 
782
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
783
- #: dashboard/info.php:86
784
  msgid "Developer License"
785
  msgstr "Developer Licencia"
786
 
787
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
788
  msgid "Unlimited WordPress installations and/or networks."
789
  msgstr ""
790
 
791
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
792
- #: dashboard/info.php:87
793
  msgid "Compare licenses"
794
  msgstr "Comparar licencias"
795
 
796
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
797
  msgid "Not sure which license is for you? Compare them..."
798
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
799
 
800
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
801
  msgid "All Licenses"
802
  msgstr "Todas las licencias"
803
 
@@ -868,24 +840,20 @@ msgstr ""
868
  msgid "Arnan de Gans News & Updates"
869
  msgstr ""
870
 
871
- #: dashboard/info.php:91
872
- msgid "AJdG Solutions Premium Support Group"
873
- msgstr ""
874
-
875
- #: dashboard/info.php:108
876
- msgid "Join the Media.net advertising network"
877
- msgstr ""
878
-
879
- #: dashboard/info.php:123
880
  msgid "Sponsored offers"
881
  msgstr ""
882
 
883
- #: dashboard/info.php:129
884
  msgid ""
885
  "These are affiliate banners, clicking them costs you nothing but it helps me "
886
  "and AdRotate a lot!"
887
  msgstr ""
888
 
 
 
 
 
889
  #: dashboard/publisher/adverts-disabled.php:15
890
  msgid "Disabled Adverts"
891
  msgstr ""
@@ -2553,7 +2521,7 @@ msgid "Which Geo Service"
2553
  msgstr ""
2554
 
2555
  #: dashboard/settings/geotargeting.php:32
2556
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2557
  msgstr ""
2558
 
2559
  #: dashboard/settings/geotargeting.php:33
@@ -2575,17 +2543,17 @@ msgid "Suitable for small to medium websites."
2575
  msgstr ""
2576
 
2577
  #: dashboard/settings/geotargeting.php:36
2578
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2579
  msgstr ""
2580
 
2581
  #: dashboard/settings/geotargeting.php:38
2582
- msgid "Suitable for medium sized websites."
 
 
2583
  msgstr ""
2584
 
2585
  #: dashboard/settings/geotargeting.php:40
2586
- msgid ""
2587
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2588
- "lookups."
2589
  msgstr ""
2590
 
2591
  #: dashboard/settings/geotargeting.php:42
@@ -3269,6 +3237,22 @@ msgid ""
3269
  msgstr ""
3270
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
3271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3272
  #~ msgid "Push notifications to your smartphone."
3273
  #~ msgstr "Enviar Notificaciones a su smartphone."
3274
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
9
  "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:720
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:723
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-functions.php:808
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:812
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:816
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
+ #: adrotate-functions.php:820
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
+ #: adrotate-functions.php:824
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
+ #: adrotate-functions.php:828
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
+ #: adrotate-functions.php:832
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
+ #: adrotate-functions.php:836
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
+ #: adrotate-functions.php:840
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
+ #: adrotate-functions.php:844
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
+ #: adrotate-functions.php:848
70
  msgid ""
71
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
72
  "below."
73
  msgstr ""
74
 
75
+ #: adrotate-functions.php:853
76
  msgid "Settings saved"
77
  msgstr "Ajustes guardados"
78
 
79
+ #: adrotate-functions.php:857
80
  msgid "Database optimized"
81
  msgstr "Base de Datos optimizada"
82
 
83
+ #: adrotate-functions.php:861
84
  msgid "Database repaired"
85
  msgstr "Base de Datos reparada"
86
 
87
+ #: adrotate-functions.php:865
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
90
 
91
+ #: adrotate-functions.php:869
92
  #, fuzzy
93
  #| msgid "Clean-up Database"
94
  msgid "Cleanup complete"
95
  msgstr "Limpieza de la Base de Datos"
96
 
97
+ #: adrotate-functions.php:874
98
  msgid "Action prohibited"
99
  msgstr "Acción prohibida"
100
 
101
+ #: adrotate-functions.php:878
102
  msgid ""
103
  "The ad was saved but has an issue which might prevent it from working "
104
  "properly. Review the colored ad."
105
  msgstr ""
106
 
107
+ #: adrotate-functions.php:882
108
  msgid "No data found in selected time period"
109
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
110
 
111
+ #: adrotate-functions.php:886
112
  msgid "Database can only be optimized or cleaned once every hour"
113
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
114
 
115
+ #: adrotate-functions.php:890
116
  msgid "Form can not be (partially) empty!"
117
  msgstr ""
118
 
119
+ #: adrotate-functions.php:894
120
  msgid "No ads found."
121
  msgstr ""
122
 
123
+ #: adrotate-functions.php:898
124
  msgid "Unexpected error"
125
  msgstr ""
126
 
128
  msgid "AdRotate Advertiser"
129
  msgstr ""
130
 
131
+ #: adrotate-output.php:572
132
  msgid "Oh no! Something went wrong!"
133
  msgstr "¡Oh, no! Algo salió mal!"
134
 
135
+ #: adrotate-output.php:573
136
  msgid ""
137
  "WordPress was unable to verify the authenticity of the url you have clicked. "
138
  "Verify if the url used is valid or log in via your browser."
140
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
141
  "Verificar si la url utilizada es válida o acceder a través del navegador."
142
 
143
+ #: adrotate-output.php:574
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
148
  "Si usted ha recibido la url que desea visitar a través del correo "
149
  "electrónico, es posible que le esten engañando!"
150
 
151
+ #: adrotate-output.php:575
152
  msgid "Contact support if the issue persists:"
153
  msgstr "Si el problema persiste, contacte con el soporte:"
154
 
155
+ #: adrotate-output.php:590
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions or does not exist!"
160
  "ERROR: El anuncio no está disponible en este momento debido a las "
161
  "restricciones de programa, de geolocalización o no existe!"
162
 
163
+ #: adrotate-output.php:592
164
  msgid ""
165
  "Error, Ad is not available at this time due to schedule/geolocation "
166
  "restrictions!"
168
  "ERROR: El anuncio no está disponible en este momento debido a las "
169
  "restricciones restricciones de programa o geolocalización!"
170
 
171
+ #: adrotate-output.php:599 adrotate-output.php:601
172
  msgid ""
173
  "Either there are no banners, they are disabled or none qualified for this "
174
  "location!"
176
  "O bien no hay banners, estan desactivados o no estan programados para esta "
177
  "ubicación!"
178
 
179
+ #: adrotate-output.php:607
180
  msgid "Error, no Ad ID set! Check your syntax!"
181
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
182
 
183
+ #: adrotate-output.php:613
184
  msgid "Error, no group ID set! Check your syntax!"
185
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
186
 
187
+ #: adrotate-output.php:618
188
  msgid "Error, group does not exist! Check your syntax!"
189
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
190
 
191
+ #: adrotate-output.php:624
192
  msgid ""
193
  "There was an error locating the database tables for AdRotate. Please "
194
  "deactivate and re-activate AdRotate from the plugin page!!"
196
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
197
  "desactivar y volver a activar el plugin AdRotate de la página!"
198
 
199
+ #: adrotate-output.php:624
200
  msgid "If this does not solve the issue please seek support at"
201
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
202
 
203
+ #: adrotate-output.php:630
204
  msgid "An unknown error occured."
205
  msgstr "Ha ocurrido un error desconocido."
206
 
207
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
208
  msgid "Check adverts"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:662
212
  msgid ""
213
  "You have enabled caching support but W3 Total Cache is not active on your "
214
  "site!"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:662
218
  #, fuzzy
219
  #| msgid "W3 Total Caching"
220
  msgid "Disable W3 Total Cache Support"
221
  msgstr "W3 Total Cache"
222
 
223
+ #: adrotate-output.php:665
224
  msgid ""
225
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
226
  "not set."
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:665
230
  msgid "How to configure W3 Total Cache"
231
  msgstr ""
232
 
233
+ #: adrotate-output.php:669
234
  msgid ""
235
  "You have enable caching support but Borlabs Cache is not active on your site!"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:669
239
  msgid "Disable Borlabs Cache Support"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:677
243
  msgid ""
244
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:677
248
  msgid "Enable Fragment Caching"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:683
252
  msgid "Your AdRotate Banner folder is not writable or does not exist."
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:683
256
  #, fuzzy
257
  #| msgid "Banner folder:"
258
  msgid "Set up your banner folder"
259
  msgstr "Carpeta Banner:"
260
 
261
+ #: adrotate-output.php:703
262
  msgid "your attention:"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:724 adrotate.php:447
266
  #: dashboard/publisher/schedules-main.php:13
267
  #, fuzzy
268
  #| msgid "AdRotate Pro"
269
  msgid "Get AdRotate Pro"
270
  msgstr "AdRotate Pro"
271
 
272
+ #: adrotate-output.php:725
273
  msgid ""
274
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
275
  "Schedules and more..."
276
  msgstr ""
277
 
278
+ #: adrotate-output.php:725
279
  #, php-format
280
  msgid ""
281
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:725
285
  #, fuzzy
286
  msgid "Thank you for your support!"
287
  msgstr "Esta notificación se le envía desde su página web"
288
 
289
+ #: adrotate-output.php:793
290
  msgid ""
291
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
292
  "menu. If you need help getting started take a look at the"
293
  msgstr ""
294
 
295
+ #: adrotate-output.php:793
296
  msgid "manuals"
297
  msgstr "manuales"
298
 
299
+ #: adrotate-output.php:793 adrotate-output.php:893
300
  msgid "and"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:793
304
  msgid "forums"
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  #, fuzzy
309
  msgid "Help AdRotate Grow"
310
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
311
 
312
+ #: adrotate-output.php:886 adrotate.php:152
313
  msgid "AdRotate Professional"
314
  msgstr "AdRotate Profesional"
315
 
316
+ #: adrotate-output.php:893
317
  msgid ""
318
  "Many users only think to review AdRotate when something goes wrong while "
319
  "thousands of people happily use AdRotate."
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:893
323
  msgid "If you find AdRotate useful please leave your"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:893
327
  msgid "rating"
328
  msgstr ""
329
 
330
+ #: adrotate-output.php:893
331
  #, fuzzy
332
  msgid "review"
333
  msgstr "Revise el anuncio aquí:"
334
 
335
+ #: adrotate-output.php:893
336
  msgid "on WordPress.org to help AdRotate grow in a positive way"
337
  msgstr ""
338
 
339
+ #: adrotate-output.php:894
340
  msgid ""
341
  "Get more advanced features like Geo Targeting, scheduling and much more with "
342
  "AdRotate Pro."
343
  msgstr ""
344
 
345
+ #: adrotate-output.php:894
346
  msgid "Includes premium support and free updates!"
347
  msgstr ""
348
 
349
+ #: adrotate-output.php:894
350
  #, fuzzy
351
  msgid "Get started today"
352
  msgstr "Obtenga más funciones con AdRotate Pro"
423
  msgid "Not found"
424
  msgstr "No se han encontrado contenidos"
425
 
426
+ #: adrotate-widget.php:134
427
  msgid "Title (optional):"
428
  msgstr "Título (opcional):"
429
 
430
+ #: adrotate-widget.php:137
431
  msgid "HTML will be stripped out."
432
  msgstr "El HTML será eliminado"
433
 
434
+ #: adrotate-widget.php:140
435
  msgid "Description (optional):"
436
  msgstr "Descripción (opcional):"
437
 
438
+ #: adrotate-widget.php:143
439
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
440
  msgstr ""
441
  "¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
442
 
443
+ #: adrotate-widget.php:146
444
  msgid "Type:"
445
  msgstr "Tipo:"
446
 
447
+ #: adrotate-widget.php:148
448
  msgid "Advert - Use Advert ID"
449
  msgstr ""
450
 
451
+ #: adrotate-widget.php:149
452
  msgid "Group - Use group ID"
453
  msgstr ""
454
 
455
+ #: adrotate-widget.php:152
456
  msgid "Choose what you want to use this widget for"
457
  msgstr "Elija lo que desea utilizar en este widget para"
458
 
459
+ #: adrotate-widget.php:155
460
  msgid "ID:"
461
  msgstr "ID:"
462
 
463
+ #: adrotate-widget.php:158
464
  msgid "Fill in the ID of the type you want to display!"
465
  msgstr "Rellene con el ID del tipo que desea mostrar!"
466
 
648
  #| "support. AdRotate premium support which takes priority over the Forums "
649
  #| "and even email. Get a solution (usually) within a day."
650
  msgid ""
651
+ "When you activate your AdRotate Pro license you can use the more personal "
652
  "email support. No more queueing up in the forums. AdRotate support takes "
653
+ "priority over the forums and is checked once or twice a day. Get a solution "
654
+ "(usually) within two business days."
655
  msgstr ""
656
  "Al activar su licencia AdRotate Pro usted tiene derecho a tickets de "
657
  "soporte. El soporte Premium de AdRotate tiene prioridad respecto al de los "
709
  "de expiración de tus anuncios."
710
 
711
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
712
+ #: dashboard/info.php:90
713
  msgid "Buy AdRotate Professional"
714
  msgstr "Comprar AdRotate Profesional"
715
 
716
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
717
  msgid "Single License"
718
  msgstr ""
719
 
720
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
721
  msgid "One WordPress installation."
722
  msgstr ""
723
 
725
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
726
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
727
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
728
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
729
+ #: dashboard/info.php:97
730
  #, fuzzy
731
  msgid "Buy now"
732
  msgstr "Comprar"
733
 
734
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
735
+ #: dashboard/info.php:95
736
  msgid "Duo License"
737
  msgstr "Duo Licencia"
738
 
739
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
740
  msgid "Two WordPress installations."
741
  msgstr ""
742
 
743
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
744
+ #: dashboard/info.php:96
745
  msgid "Multi License"
746
  msgstr "Multi Licencia"
747
 
748
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
749
  #, fuzzy
750
  #| msgid "For one WordPress installation."
751
  msgid "Five WordPress installations."
752
  msgstr "Para una instalación de WordPress."
753
 
754
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
755
+ #: dashboard/info.php:97
756
  msgid "Developer License"
757
  msgstr "Developer Licencia"
758
 
759
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
760
  msgid "Unlimited WordPress installations and/or networks."
761
  msgstr ""
762
 
763
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
764
+ #: dashboard/info.php:98
765
  msgid "Compare licenses"
766
  msgstr "Comparar licencias"
767
 
768
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
769
  msgid "Not sure which license is for you? Compare them..."
770
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
771
 
772
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
773
  msgid "All Licenses"
774
  msgstr "Todas las licencias"
775
 
840
  msgid "Arnan de Gans News & Updates"
841
  msgstr ""
842
 
843
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
844
  msgid "Sponsored offers"
845
  msgstr ""
846
 
847
+ #: dashboard/info.php:79
848
  msgid ""
849
  "These are affiliate banners, clicking them costs you nothing but it helps me "
850
  "and AdRotate a lot!"
851
  msgstr ""
852
 
853
+ #: dashboard/info.php:102
854
+ msgid "Join the Media.net advertising network"
855
+ msgstr ""
856
+
857
  #: dashboard/publisher/adverts-disabled.php:15
858
  msgid "Disabled Adverts"
859
  msgstr ""
2521
  msgstr ""
2522
 
2523
  #: dashboard/settings/geotargeting.php:32
2524
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2525
  msgstr ""
2526
 
2527
  #: dashboard/settings/geotargeting.php:33
2543
  msgstr ""
2544
 
2545
  #: dashboard/settings/geotargeting.php:36
2546
+ msgid "10000 free lookups per month, requires account."
2547
  msgstr ""
2548
 
2549
  #: dashboard/settings/geotargeting.php:38
2550
+ msgid ""
2551
+ "Suitable for small to medium sized websites with a free account - Paid "
2552
+ "options available."
2553
  msgstr ""
2554
 
2555
  #: dashboard/settings/geotargeting.php:40
2556
+ msgid "The most accurate geo targeting available."
 
 
2557
  msgstr ""
2558
 
2559
  #: dashboard/settings/geotargeting.php:42
3237
  msgstr ""
3238
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
3239
 
3240
+ #, fuzzy
3241
+ #~ msgid "Useful Links"
3242
+ #~ msgstr "Enlaces de interés"
3243
+
3244
+ #, fuzzy
3245
+ #~ msgid "Getting Started With AdRotate"
3246
+ #~ msgstr "Obtenga más funciones con AdRotate Pro"
3247
+
3248
+ #, fuzzy
3249
+ #~ msgid "AdRotate manuals"
3250
+ #~ msgstr "Información de AdRotate"
3251
+
3252
+ #, fuzzy
3253
+ #~ msgid "AdRotate Support Forum"
3254
+ #~ msgstr "Tienda AdRotate"
3255
+
3256
  #~ msgid "Push notifications to your smartphone."
3257
  #~ msgstr "Enviar Notificaciones a su smartphone."
3258
 
language/adrotate-fr_FR.mo CHANGED
Binary file
language/adrotate-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:28+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:28+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: fr_FR\n"
@@ -17,112 +17,112 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:730
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:733
25
  msgid "Folder not found or not accessible"
26
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
27
 
28
- #: adrotate-functions.php:818
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:822
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:826
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
- #: adrotate-functions.php:830
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
- #: adrotate-functions.php:834
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
47
 
48
- #: adrotate-functions.php:838
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
- #: adrotate-functions.php:842
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
- #: adrotate-functions.php:846
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
- #: adrotate-functions.php:850
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
63
 
64
- #: adrotate-functions.php:854
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
- #: adrotate-functions.php:858
70
  msgid ""
71
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
72
  "below."
73
  msgstr ""
74
 
75
- #: adrotate-functions.php:863
76
  msgid "Settings saved"
77
  msgstr "Paramètres sauvegardés"
78
 
79
- #: adrotate-functions.php:867
80
  msgid "Database optimized"
81
  msgstr "Base de données optimisée"
82
 
83
- #: adrotate-functions.php:871
84
  msgid "Database repaired"
85
  msgstr "Base de données réparée"
86
 
87
- #: adrotate-functions.php:875
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr ""
90
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
91
 
92
- #: adrotate-functions.php:879
93
  #, fuzzy
94
  #| msgid "Clean-up Database"
95
  msgid "Cleanup complete"
96
  msgstr "Nettoyer la base de données"
97
 
98
- #: adrotate-functions.php:884
99
  msgid "Action prohibited"
100
  msgstr "Action interdite"
101
 
102
- #: adrotate-functions.php:888
103
  msgid ""
104
  "The ad was saved but has an issue which might prevent it from working "
105
  "properly. Review the colored ad."
106
  msgstr ""
107
 
108
- #: adrotate-functions.php:892
109
  msgid "No data found in selected time period"
110
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
111
 
112
- #: adrotate-functions.php:896
113
  msgid "Database can only be optimized or cleaned once every hour"
114
  msgstr ""
115
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
116
 
117
- #: adrotate-functions.php:900
118
  msgid "Form can not be (partially) empty!"
119
  msgstr ""
120
 
121
- #: adrotate-functions.php:904
122
  msgid "No ads found."
123
  msgstr ""
124
 
125
- #: adrotate-functions.php:908
126
  msgid "Unexpected error"
127
  msgstr ""
128
 
@@ -130,11 +130,11 @@ msgstr ""
130
  msgid "AdRotate Advertiser"
131
  msgstr ""
132
 
133
- #: adrotate-output.php:557
134
  msgid "Oh no! Something went wrong!"
135
  msgstr "Oh no! Un problème est survenu!"
136
 
137
- #: adrotate-output.php:558
138
  msgid ""
139
  "WordPress was unable to verify the authenticity of the url you have clicked. "
140
  "Verify if the url used is valid or log in via your browser."
@@ -143,17 +143,17 @@ msgstr ""
143
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
144
  "votre navigateur."
145
 
146
- #: adrotate-output.php:559
147
  msgid ""
148
  "If you have received the url you want to visit via email, you are being "
149
  "tricked!"
150
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
151
 
152
- #: adrotate-output.php:560
153
  msgid "Contact support if the issue persists:"
154
  msgstr "Contactez le support si le soucis persiste :"
155
 
156
- #: adrotate-output.php:575
157
  msgid ""
158
  "Error, Ad is not available at this time due to schedule/geolocation "
159
  "restrictions or does not exist!"
@@ -161,7 +161,7 @@ msgstr ""
161
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
162
  "horaires/géographiques ou n'existe pas!"
163
 
164
- #: adrotate-output.php:577
165
  msgid ""
166
  "Error, Ad is not available at this time due to schedule/geolocation "
167
  "restrictions!"
@@ -169,7 +169,7 @@ msgstr ""
169
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
170
  "horaires/géographiques!"
171
 
172
- #: adrotate-output.php:584 adrotate-output.php:586
173
  msgid ""
174
  "Either there are no banners, they are disabled or none qualified for this "
175
  "location!"
@@ -177,19 +177,19 @@ msgstr ""
177
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
178
  "cet endroit!"
179
 
180
- #: adrotate-output.php:592
181
  msgid "Error, no Ad ID set! Check your syntax!"
182
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
183
 
184
- #: adrotate-output.php:598
185
  msgid "Error, no group ID set! Check your syntax!"
186
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
187
 
188
- #: adrotate-output.php:603
189
  msgid "Error, group does not exist! Check your syntax!"
190
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
191
 
192
- #: adrotate-output.php:609
193
  msgid ""
194
  "There was an error locating the database tables for AdRotate. Please "
195
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -198,182 +198,158 @@ msgstr ""
198
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
199
  "extensions. "
200
 
201
- #: adrotate-output.php:609
202
  msgid "If this does not solve the issue please seek support at"
203
  msgstr ""
204
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
205
  "support à"
206
 
207
- #: adrotate-output.php:615
208
  msgid "An unknown error occured."
209
  msgstr "Une erreur inconnue s'est produite."
210
 
211
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
212
  msgid "Check adverts"
213
  msgstr ""
214
 
215
- #: adrotate-output.php:652
216
  msgid ""
217
  "You have enabled caching support but W3 Total Cache is not active on your "
218
  "site!"
219
  msgstr ""
220
 
221
- #: adrotate-output.php:652
222
  #, fuzzy
223
  #| msgid "W3 Total Caching"
224
  msgid "Disable W3 Total Cache Support"
225
  msgstr "W3 Total Caching"
226
 
227
- #: adrotate-output.php:655
228
  msgid ""
229
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
230
  "not set."
231
  msgstr ""
232
 
233
- #: adrotate-output.php:655
234
  msgid "How to configure W3 Total Cache"
235
  msgstr ""
236
 
237
- #: adrotate-output.php:664
238
  msgid ""
239
  "You have enable caching support but Borlabs Cache is not active on your site!"
240
  msgstr ""
241
 
242
- #: adrotate-output.php:664
243
  msgid "Disable Borlabs Cache Support"
244
  msgstr ""
245
 
246
- #: adrotate-output.php:672
247
  msgid ""
248
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:672
252
  msgid "Enable Fragment Caching"
253
  msgstr ""
254
 
255
- #: adrotate-output.php:678
256
  msgid "Your AdRotate Banner folder is not writable or does not exist."
257
  msgstr ""
258
 
259
- #: adrotate-output.php:678
260
  #, fuzzy
261
  #| msgid "Banner folder:"
262
  msgid "Set up your banner folder"
263
  msgstr "Dossier de bannières :"
264
 
265
- #: adrotate-output.php:698
266
  msgid "your attention:"
267
  msgstr ""
268
 
269
- #: adrotate-output.php:719 adrotate.php:447
270
  #: dashboard/publisher/schedules-main.php:13
271
  #, fuzzy
272
  #| msgid "AdRotate Pro"
273
  msgid "Get AdRotate Pro"
274
  msgstr "AdRotate Pro"
275
 
276
- #: adrotate-output.php:720
277
  msgid ""
278
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
279
  "Schedules and more..."
280
  msgstr ""
281
 
282
- #: adrotate-output.php:720
283
  #, php-format
284
  msgid ""
285
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
286
  msgstr ""
287
 
288
- #: adrotate-output.php:720
289
  msgid "Thank you for your support!"
290
  msgstr ""
291
 
292
- #: adrotate-output.php:837
293
  msgid ""
294
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
295
  "menu. If you need help getting started take a look at the"
296
  msgstr ""
297
 
298
- #: adrotate-output.php:837
299
  msgid "manuals"
300
  msgstr "manuels"
301
 
302
- #: adrotate-output.php:837 adrotate-output.php:921
303
  msgid "and"
304
  msgstr ""
305
 
306
- #: adrotate-output.php:837
307
  msgid "forums"
308
  msgstr ""
309
 
310
- #: adrotate-output.php:870
311
- msgid "Useful Links"
312
- msgstr ""
313
-
314
- #: adrotate-output.php:871
315
- msgid "Useful links to learn more about AdRotate"
316
- msgstr ""
317
-
318
- #: adrotate-output.php:873
319
- msgid "AdRotate website"
320
- msgstr ""
321
-
322
- #: adrotate-output.php:874
323
- msgid "Getting Started With AdRotate"
324
- msgstr ""
325
-
326
- #: adrotate-output.php:875
327
- msgid "AdRotate manuals"
328
- msgstr ""
329
-
330
- #: adrotate-output.php:876
331
- msgid "AdRotate Support Forum"
332
- msgstr ""
333
-
334
- #: adrotate-output.php:913
335
  #, fuzzy
336
  msgid "Help AdRotate Grow"
337
  msgstr "AdRotate Pro"
338
 
339
- #: adrotate-output.php:914 adrotate.php:152
340
  msgid "AdRotate Professional"
341
  msgstr "AdRotate professionel"
342
 
343
- #: adrotate-output.php:921
344
  msgid ""
345
  "Many users only think to review AdRotate when something goes wrong while "
346
  "thousands of people happily use AdRotate."
347
  msgstr ""
348
 
349
- #: adrotate-output.php:921
350
  msgid "If you find AdRotate useful please leave your"
351
  msgstr ""
352
 
353
- #: adrotate-output.php:921
354
  msgid "rating"
355
  msgstr ""
356
 
357
- #: adrotate-output.php:921
358
  #, fuzzy
359
  msgid "review"
360
  msgstr "En avant-première"
361
 
362
- #: adrotate-output.php:921
363
  msgid "on WordPress.org to help AdRotate grow in a positive way"
364
  msgstr ""
365
 
366
- #: adrotate-output.php:922
367
  msgid ""
368
  "Get more advanced features like Geo Targeting, scheduling and much more with "
369
  "AdRotate Pro."
370
  msgstr ""
371
 
372
- #: adrotate-output.php:922
373
  msgid "Includes premium support and free updates!"
374
  msgstr ""
375
 
376
- #: adrotate-output.php:922
377
  #, fuzzy
378
  #| msgid "AdRotate Pro"
379
  msgid "Get started today"
@@ -451,45 +427,45 @@ msgstr "Aucune donnée à montrer!"
451
  msgid "Not found"
452
  msgstr "Aucun fichier n'a été trouvé"
453
 
454
- #: adrotate-widget.php:132
455
  msgid "Title (optional):"
456
  msgstr "Titre (optionel) :"
457
 
458
- #: adrotate-widget.php:135
459
  msgid "HTML will be stripped out."
460
  msgstr "Le code HTML sera retiré."
461
 
462
- #: adrotate-widget.php:138
463
  msgid "Description (optional):"
464
  msgstr "Description (optionelle) :"
465
 
466
- #: adrotate-widget.php:141
467
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
468
  msgstr ""
469
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
470
  "dépouillé.)"
471
 
472
- #: adrotate-widget.php:144
473
  msgid "Type:"
474
  msgstr "Type :"
475
 
476
- #: adrotate-widget.php:146
477
  msgid "Advert - Use Advert ID"
478
  msgstr ""
479
 
480
- #: adrotate-widget.php:147
481
  msgid "Group - Use group ID"
482
  msgstr ""
483
 
484
- #: adrotate-widget.php:150
485
  msgid "Choose what you want to use this widget for"
486
  msgstr "Choisissez le fonction de ce widget"
487
 
488
- #: adrotate-widget.php:153
489
  msgid "ID:"
490
  msgstr "ID :"
491
 
492
- #: adrotate-widget.php:156
493
  msgid "Fill in the ID of the type you want to display!"
494
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
495
 
@@ -675,10 +651,10 @@ msgstr "Obtenez du soutien Premium pendant toute l'année"
675
  #| "support. AdRotate premium support which takes priority over the Forums "
676
  #| "and even email. Get a solution (usually) within a day."
677
  msgid ""
678
- "When you activate your AdRotate Pro license you can use fast and personal "
679
  "email support. No more queueing up in the forums. AdRotate support takes "
680
- "priority over the forums and is checked much more often than the forum. Get "
681
- "a solution (usually) within two business days."
682
  msgstr ""
683
  "Lorsque vous activez votre licence AdRotate Pro vous bénéficiez d'une "
684
  "assistance premium qui a la priorité sur les forums et même les e-mails. "
@@ -735,15 +711,15 @@ msgstr ""
735
  "d'expiration."
736
 
737
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
738
- #: dashboard/info.php:79
739
  msgid "Buy AdRotate Professional"
740
  msgstr "Achetez AdRotate Professionel"
741
 
742
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
743
  msgid "Single License"
744
  msgstr ""
745
 
746
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
747
  msgid "One WordPress installation."
748
  msgstr ""
749
 
@@ -751,51 +727,51 @@ msgstr ""
751
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
752
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
753
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
754
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
755
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
756
  msgid "Buy now"
757
  msgstr ""
758
 
759
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
760
- #: dashboard/info.php:84
761
  msgid "Duo License"
762
  msgstr "Licence Duo"
763
 
764
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
765
  msgid "Two WordPress installations."
766
  msgstr ""
767
 
768
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
769
- #: dashboard/info.php:85
770
  msgid "Multi License"
771
  msgstr "Licence Multiple"
772
 
773
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
774
  #, fuzzy
775
  #| msgid "For one WordPress installation."
776
  msgid "Five WordPress installations."
777
  msgstr "Pour une installation Wordpress."
778
 
779
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
780
- #: dashboard/info.php:86
781
  msgid "Developer License"
782
  msgstr "Licence de Developpeur"
783
 
784
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
785
  msgid "Unlimited WordPress installations and/or networks."
786
  msgstr ""
787
 
788
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
789
- #: dashboard/info.php:87
790
  msgid "Compare licenses"
791
  msgstr "Comparer les licences"
792
 
793
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
794
  msgid "Not sure which license is for you? Compare them..."
795
  msgstr ""
796
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
797
 
798
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
799
  msgid "All Licenses"
800
  msgstr "Toutes les licences"
801
 
@@ -866,24 +842,20 @@ msgstr ""
866
  msgid "Arnan de Gans News & Updates"
867
  msgstr ""
868
 
869
- #: dashboard/info.php:91
870
- msgid "AJdG Solutions Premium Support Group"
871
- msgstr ""
872
-
873
- #: dashboard/info.php:108
874
- msgid "Join the Media.net advertising network"
875
- msgstr ""
876
-
877
- #: dashboard/info.php:123
878
  msgid "Sponsored offers"
879
  msgstr ""
880
 
881
- #: dashboard/info.php:129
882
  msgid ""
883
  "These are affiliate banners, clicking them costs you nothing but it helps me "
884
  "and AdRotate a lot!"
885
  msgstr ""
886
 
 
 
 
 
887
  #: dashboard/publisher/adverts-disabled.php:15
888
  msgid "Disabled Adverts"
889
  msgstr ""
@@ -2523,7 +2495,7 @@ msgid "Which Geo Service"
2523
  msgstr ""
2524
 
2525
  #: dashboard/settings/geotargeting.php:32
2526
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2527
  msgstr ""
2528
 
2529
  #: dashboard/settings/geotargeting.php:33
@@ -2545,17 +2517,17 @@ msgid "Suitable for small to medium websites."
2545
  msgstr ""
2546
 
2547
  #: dashboard/settings/geotargeting.php:36
2548
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2549
  msgstr ""
2550
 
2551
  #: dashboard/settings/geotargeting.php:38
2552
- msgid "Suitable for medium sized websites."
 
 
2553
  msgstr ""
2554
 
2555
  #: dashboard/settings/geotargeting.php:40
2556
- msgid ""
2557
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2558
- "lookups."
2559
  msgstr ""
2560
 
2561
  #: dashboard/settings/geotargeting.php:42
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: fr_FR\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:720
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:723
25
  msgid "Folder not found or not accessible"
26
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
27
 
28
+ #: adrotate-functions.php:808
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:812
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:816
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
+ #: adrotate-functions.php:820
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
+ #: adrotate-functions.php:824
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
47
 
48
+ #: adrotate-functions.php:828
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
+ #: adrotate-functions.php:832
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
+ #: adrotate-functions.php:836
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
+ #: adrotate-functions.php:840
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
63
 
64
+ #: adrotate-functions.php:844
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
+ #: adrotate-functions.php:848
70
  msgid ""
71
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
72
  "below."
73
  msgstr ""
74
 
75
+ #: adrotate-functions.php:853
76
  msgid "Settings saved"
77
  msgstr "Paramètres sauvegardés"
78
 
79
+ #: adrotate-functions.php:857
80
  msgid "Database optimized"
81
  msgstr "Base de données optimisée"
82
 
83
+ #: adrotate-functions.php:861
84
  msgid "Database repaired"
85
  msgstr "Base de données réparée"
86
 
87
+ #: adrotate-functions.php:865
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr ""
90
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
91
 
92
+ #: adrotate-functions.php:869
93
  #, fuzzy
94
  #| msgid "Clean-up Database"
95
  msgid "Cleanup complete"
96
  msgstr "Nettoyer la base de données"
97
 
98
+ #: adrotate-functions.php:874
99
  msgid "Action prohibited"
100
  msgstr "Action interdite"
101
 
102
+ #: adrotate-functions.php:878
103
  msgid ""
104
  "The ad was saved but has an issue which might prevent it from working "
105
  "properly. Review the colored ad."
106
  msgstr ""
107
 
108
+ #: adrotate-functions.php:882
109
  msgid "No data found in selected time period"
110
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
111
 
112
+ #: adrotate-functions.php:886
113
  msgid "Database can only be optimized or cleaned once every hour"
114
  msgstr ""
115
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
116
 
117
+ #: adrotate-functions.php:890
118
  msgid "Form can not be (partially) empty!"
119
  msgstr ""
120
 
121
+ #: adrotate-functions.php:894
122
  msgid "No ads found."
123
  msgstr ""
124
 
125
+ #: adrotate-functions.php:898
126
  msgid "Unexpected error"
127
  msgstr ""
128
 
130
  msgid "AdRotate Advertiser"
131
  msgstr ""
132
 
133
+ #: adrotate-output.php:572
134
  msgid "Oh no! Something went wrong!"
135
  msgstr "Oh no! Un problème est survenu!"
136
 
137
+ #: adrotate-output.php:573
138
  msgid ""
139
  "WordPress was unable to verify the authenticity of the url you have clicked. "
140
  "Verify if the url used is valid or log in via your browser."
143
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
144
  "votre navigateur."
145
 
146
+ #: adrotate-output.php:574
147
  msgid ""
148
  "If you have received the url you want to visit via email, you are being "
149
  "tricked!"
150
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
151
 
152
+ #: adrotate-output.php:575
153
  msgid "Contact support if the issue persists:"
154
  msgstr "Contactez le support si le soucis persiste :"
155
 
156
+ #: adrotate-output.php:590
157
  msgid ""
158
  "Error, Ad is not available at this time due to schedule/geolocation "
159
  "restrictions or does not exist!"
161
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
162
  "horaires/géographiques ou n'existe pas!"
163
 
164
+ #: adrotate-output.php:592
165
  msgid ""
166
  "Error, Ad is not available at this time due to schedule/geolocation "
167
  "restrictions!"
169
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
170
  "horaires/géographiques!"
171
 
172
+ #: adrotate-output.php:599 adrotate-output.php:601
173
  msgid ""
174
  "Either there are no banners, they are disabled or none qualified for this "
175
  "location!"
177
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
178
  "cet endroit!"
179
 
180
+ #: adrotate-output.php:607
181
  msgid "Error, no Ad ID set! Check your syntax!"
182
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
183
 
184
+ #: adrotate-output.php:613
185
  msgid "Error, no group ID set! Check your syntax!"
186
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
187
 
188
+ #: adrotate-output.php:618
189
  msgid "Error, group does not exist! Check your syntax!"
190
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
191
 
192
+ #: adrotate-output.php:624
193
  msgid ""
194
  "There was an error locating the database tables for AdRotate. Please "
195
  "deactivate and re-activate AdRotate from the plugin page!!"
198
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
199
  "extensions. "
200
 
201
+ #: adrotate-output.php:624
202
  msgid "If this does not solve the issue please seek support at"
203
  msgstr ""
204
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
205
  "support à"
206
 
207
+ #: adrotate-output.php:630
208
  msgid "An unknown error occured."
209
  msgstr "Une erreur inconnue s'est produite."
210
 
211
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
212
  msgid "Check adverts"
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:662
216
  msgid ""
217
  "You have enabled caching support but W3 Total Cache is not active on your "
218
  "site!"
219
  msgstr ""
220
 
221
+ #: adrotate-output.php:662
222
  #, fuzzy
223
  #| msgid "W3 Total Caching"
224
  msgid "Disable W3 Total Cache Support"
225
  msgstr "W3 Total Caching"
226
 
227
+ #: adrotate-output.php:665
228
  msgid ""
229
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
230
  "not set."
231
  msgstr ""
232
 
233
+ #: adrotate-output.php:665
234
  msgid "How to configure W3 Total Cache"
235
  msgstr ""
236
 
237
+ #: adrotate-output.php:669
238
  msgid ""
239
  "You have enable caching support but Borlabs Cache is not active on your site!"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:669
243
  msgid "Disable Borlabs Cache Support"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:677
247
  msgid ""
248
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:677
252
  msgid "Enable Fragment Caching"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:683
256
  msgid "Your AdRotate Banner folder is not writable or does not exist."
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:683
260
  #, fuzzy
261
  #| msgid "Banner folder:"
262
  msgid "Set up your banner folder"
263
  msgstr "Dossier de bannières :"
264
 
265
+ #: adrotate-output.php:703
266
  msgid "your attention:"
267
  msgstr ""
268
 
269
+ #: adrotate-output.php:724 adrotate.php:447
270
  #: dashboard/publisher/schedules-main.php:13
271
  #, fuzzy
272
  #| msgid "AdRotate Pro"
273
  msgid "Get AdRotate Pro"
274
  msgstr "AdRotate Pro"
275
 
276
+ #: adrotate-output.php:725
277
  msgid ""
278
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
279
  "Schedules and more..."
280
  msgstr ""
281
 
282
+ #: adrotate-output.php:725
283
  #, php-format
284
  msgid ""
285
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
286
  msgstr ""
287
 
288
+ #: adrotate-output.php:725
289
  msgid "Thank you for your support!"
290
  msgstr ""
291
 
292
+ #: adrotate-output.php:793
293
  msgid ""
294
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
295
  "menu. If you need help getting started take a look at the"
296
  msgstr ""
297
 
298
+ #: adrotate-output.php:793
299
  msgid "manuals"
300
  msgstr "manuels"
301
 
302
+ #: adrotate-output.php:793 adrotate-output.php:893
303
  msgid "and"
304
  msgstr ""
305
 
306
+ #: adrotate-output.php:793
307
  msgid "forums"
308
  msgstr ""
309
 
310
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  #, fuzzy
312
  msgid "Help AdRotate Grow"
313
  msgstr "AdRotate Pro"
314
 
315
+ #: adrotate-output.php:886 adrotate.php:152
316
  msgid "AdRotate Professional"
317
  msgstr "AdRotate professionel"
318
 
319
+ #: adrotate-output.php:893
320
  msgid ""
321
  "Many users only think to review AdRotate when something goes wrong while "
322
  "thousands of people happily use AdRotate."
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:893
326
  msgid "If you find AdRotate useful please leave your"
327
  msgstr ""
328
 
329
+ #: adrotate-output.php:893
330
  msgid "rating"
331
  msgstr ""
332
 
333
+ #: adrotate-output.php:893
334
  #, fuzzy
335
  msgid "review"
336
  msgstr "En avant-première"
337
 
338
+ #: adrotate-output.php:893
339
  msgid "on WordPress.org to help AdRotate grow in a positive way"
340
  msgstr ""
341
 
342
+ #: adrotate-output.php:894
343
  msgid ""
344
  "Get more advanced features like Geo Targeting, scheduling and much more with "
345
  "AdRotate Pro."
346
  msgstr ""
347
 
348
+ #: adrotate-output.php:894
349
  msgid "Includes premium support and free updates!"
350
  msgstr ""
351
 
352
+ #: adrotate-output.php:894
353
  #, fuzzy
354
  #| msgid "AdRotate Pro"
355
  msgid "Get started today"
427
  msgid "Not found"
428
  msgstr "Aucun fichier n'a été trouvé"
429
 
430
+ #: adrotate-widget.php:134
431
  msgid "Title (optional):"
432
  msgstr "Titre (optionel) :"
433
 
434
+ #: adrotate-widget.php:137
435
  msgid "HTML will be stripped out."
436
  msgstr "Le code HTML sera retiré."
437
 
438
+ #: adrotate-widget.php:140
439
  msgid "Description (optional):"
440
  msgstr "Description (optionelle) :"
441
 
442
+ #: adrotate-widget.php:143
443
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
444
  msgstr ""
445
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
446
  "dépouillé.)"
447
 
448
+ #: adrotate-widget.php:146
449
  msgid "Type:"
450
  msgstr "Type :"
451
 
452
+ #: adrotate-widget.php:148
453
  msgid "Advert - Use Advert ID"
454
  msgstr ""
455
 
456
+ #: adrotate-widget.php:149
457
  msgid "Group - Use group ID"
458
  msgstr ""
459
 
460
+ #: adrotate-widget.php:152
461
  msgid "Choose what you want to use this widget for"
462
  msgstr "Choisissez le fonction de ce widget"
463
 
464
+ #: adrotate-widget.php:155
465
  msgid "ID:"
466
  msgstr "ID :"
467
 
468
+ #: adrotate-widget.php:158
469
  msgid "Fill in the ID of the type you want to display!"
470
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
471
 
651
  #| "support. AdRotate premium support which takes priority over the Forums "
652
  #| "and even email. Get a solution (usually) within a day."
653
  msgid ""
654
+ "When you activate your AdRotate Pro license you can use the more personal "
655
  "email support. No more queueing up in the forums. AdRotate support takes "
656
+ "priority over the forums and is checked once or twice a day. Get a solution "
657
+ "(usually) within two business days."
658
  msgstr ""
659
  "Lorsque vous activez votre licence AdRotate Pro vous bénéficiez d'une "
660
  "assistance premium qui a la priorité sur les forums et même les e-mails. "
711
  "d'expiration."
712
 
713
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
714
+ #: dashboard/info.php:90
715
  msgid "Buy AdRotate Professional"
716
  msgstr "Achetez AdRotate Professionel"
717
 
718
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
719
  msgid "Single License"
720
  msgstr ""
721
 
722
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
723
  msgid "One WordPress installation."
724
  msgstr ""
725
 
727
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
728
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
729
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
730
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
731
+ #: dashboard/info.php:97
732
  msgid "Buy now"
733
  msgstr ""
734
 
735
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
736
+ #: dashboard/info.php:95
737
  msgid "Duo License"
738
  msgstr "Licence Duo"
739
 
740
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
741
  msgid "Two WordPress installations."
742
  msgstr ""
743
 
744
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
745
+ #: dashboard/info.php:96
746
  msgid "Multi License"
747
  msgstr "Licence Multiple"
748
 
749
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
750
  #, fuzzy
751
  #| msgid "For one WordPress installation."
752
  msgid "Five WordPress installations."
753
  msgstr "Pour une installation Wordpress."
754
 
755
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
756
+ #: dashboard/info.php:97
757
  msgid "Developer License"
758
  msgstr "Licence de Developpeur"
759
 
760
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
761
  msgid "Unlimited WordPress installations and/or networks."
762
  msgstr ""
763
 
764
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
765
+ #: dashboard/info.php:98
766
  msgid "Compare licenses"
767
  msgstr "Comparer les licences"
768
 
769
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
770
  msgid "Not sure which license is for you? Compare them..."
771
  msgstr ""
772
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
773
 
774
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
775
  msgid "All Licenses"
776
  msgstr "Toutes les licences"
777
 
842
  msgid "Arnan de Gans News & Updates"
843
  msgstr ""
844
 
845
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
846
  msgid "Sponsored offers"
847
  msgstr ""
848
 
849
+ #: dashboard/info.php:79
850
  msgid ""
851
  "These are affiliate banners, clicking them costs you nothing but it helps me "
852
  "and AdRotate a lot!"
853
  msgstr ""
854
 
855
+ #: dashboard/info.php:102
856
+ msgid "Join the Media.net advertising network"
857
+ msgstr ""
858
+
859
  #: dashboard/publisher/adverts-disabled.php:15
860
  msgid "Disabled Adverts"
861
  msgstr ""
2495
  msgstr ""
2496
 
2497
  #: dashboard/settings/geotargeting.php:32
2498
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2499
  msgstr ""
2500
 
2501
  #: dashboard/settings/geotargeting.php:33
2517
  msgstr ""
2518
 
2519
  #: dashboard/settings/geotargeting.php:36
2520
+ msgid "10000 free lookups per month, requires account."
2521
  msgstr ""
2522
 
2523
  #: dashboard/settings/geotargeting.php:38
2524
+ msgid ""
2525
+ "Suitable for small to medium sized websites with a free account - Paid "
2526
+ "options available."
2527
  msgstr ""
2528
 
2529
  #: dashboard/settings/geotargeting.php:40
2530
+ msgid "The most accurate geo targeting available."
 
 
2531
  msgstr ""
2532
 
2533
  #: dashboard/settings/geotargeting.php:42
language/adrotate-id_ID.mo CHANGED
Binary file
language/adrotate-id_ID.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:28+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:28+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id_ID\n"
@@ -17,87 +17,87 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:730
21
  msgid "No files found"
22
  msgstr "Tidak ada file yang ditemukan"
23
 
24
- #: adrotate-functions.php:733
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder tidak ditemukan atau tidak dapat diakses"
27
 
28
- #: adrotate-functions.php:818
29
  msgid "Ad saved"
30
  msgstr "iklan tersimpan"
31
 
32
- #: adrotate-functions.php:822
33
  msgid "Group saved"
34
  msgstr "kelompok disimpan"
35
 
36
- #: adrotate-functions.php:826
37
  msgid "Ad(s) deleted"
38
  msgstr "Iklan (s) dihapus"
39
 
40
- #: adrotate-functions.php:830
41
  msgid "Group deleted"
42
  msgstr "kelompok dihapus"
43
 
44
- #: adrotate-functions.php:834
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Iklan (s) statistik ulang"
47
 
48
- #: adrotate-functions.php:838
49
  msgid "Ad(s) renewed"
50
  msgstr "Iklan (s) baru"
51
 
52
- #: adrotate-functions.php:842
53
  msgid "Ad(s) deactivated"
54
  msgstr "Iklan (s) dinonaktifkan"
55
 
56
- #: adrotate-functions.php:846
57
  msgid "Ad(s) activated"
58
  msgstr "Iklan (s) diaktifkan"
59
 
60
- #: adrotate-functions.php:850
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Kelompok termasuk itu iklan dihapus"
63
 
64
- #: adrotate-functions.php:854
65
  msgid "Export created"
66
  msgstr "ekspor dibuat"
67
 
68
- #: adrotate-functions.php:858
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:863
75
  msgid "Settings saved"
76
  msgstr "pengaturan disimpan"
77
 
78
- #: adrotate-functions.php:867
79
  msgid "Database optimized"
80
  msgstr "database dioptimalkan"
81
 
82
- #: adrotate-functions.php:871
83
  msgid "Database repaired"
84
  msgstr "database diperbaiki"
85
 
86
- #: adrotate-functions.php:875
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Iklan dievaluasi dan status telah diperbaiki di mana diperlukan"
89
 
90
- #: adrotate-functions.php:879
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Clean-up database"
95
 
96
- #: adrotate-functions.php:884
97
  msgid "Action prohibited"
98
  msgstr "aksi dilarang"
99
 
100
- #: adrotate-functions.php:888
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
@@ -105,23 +105,23 @@ msgstr ""
105
  "iklan itu disimpan tapi memiliki masalah yang mungkin mencegah dari bekerja "
106
  "dengan baik. Tinjau iklan berwarna."
107
 
108
- #: adrotate-functions.php:892
109
  msgid "No data found in selected time period"
110
  msgstr "Tidak ada data pada periode waktu yang dipilih"
111
 
112
- #: adrotate-functions.php:896
113
  msgid "Database can only be optimized or cleaned once every hour"
114
  msgstr "Database hanya dapat dioptimalkan atau dibersihkan sekali setiap jam"
115
 
116
- #: adrotate-functions.php:900
117
  msgid "Form can not be (partially) empty!"
118
  msgstr "Form tidak bisa (sebagian) kosong!"
119
 
120
- #: adrotate-functions.php:904
121
  msgid "No ads found."
122
  msgstr "Tidak ada iklan yang ditemukan."
123
 
124
- #: adrotate-functions.php:908
125
  msgid "Unexpected error"
126
  msgstr "Kesalahan tak terduga"
127
 
@@ -129,11 +129,11 @@ msgstr "Kesalahan tak terduga"
129
  msgid "AdRotate Advertiser"
130
  msgstr "AdRotate Pengiklan"
131
 
132
- #: adrotate-output.php:557
133
  msgid "Oh no! Something went wrong!"
134
  msgstr "Oh tidak! Ada yang salah!"
135
 
136
- #: adrotate-output.php:558
137
  msgid ""
138
  "WordPress was unable to verify the authenticity of the url you have clicked. "
139
  "Verify if the url used is valid or log in via your browser."
@@ -142,7 +142,7 @@ msgstr ""
142
  "Periksa apakah url yang digunakan adalah valid atau masuk melalui browser "
143
  "Anda."
144
 
145
- #: adrotate-output.php:559
146
  msgid ""
147
  "If you have received the url you want to visit via email, you are being "
148
  "tricked!"
@@ -150,11 +150,11 @@ msgstr ""
150
  "Jika Anda telah menerima url yang ingin Anda kunjungi melalui email, Anda "
151
  "sedang ditipu!"
152
 
153
- #: adrotate-output.php:560
154
  msgid "Contact support if the issue persists:"
155
  msgstr "Hubungi dukungan jika masalah terus berlanjut:"
156
 
157
- #: adrotate-output.php:575
158
  msgid ""
159
  "Error, Ad is not available at this time due to schedule/geolocation "
160
  "restrictions or does not exist!"
@@ -162,7 +162,7 @@ msgstr ""
162
  "Kesalahan, Iklan tidak tersedia pada saat ini karena jadwal pembatasan / "
163
  "geolocation atau tidak ada!"
164
 
165
- #: adrotate-output.php:577
166
  msgid ""
167
  "Error, Ad is not available at this time due to schedule/geolocation "
168
  "restrictions!"
@@ -170,7 +170,7 @@ msgstr ""
170
  "Kesalahan, Iklan tidak tersedia pada saat ini karena jadwal pembatasan / "
171
  "geolocation!"
172
 
173
- #: adrotate-output.php:584 adrotate-output.php:586
174
  msgid ""
175
  "Either there are no banners, they are disabled or none qualified for this "
176
  "location!"
@@ -178,19 +178,19 @@ msgstr ""
178
  "Entah ada spanduk, mereka dinonaktifkan atau tidak memenuhi syarat untuk "
179
  "lokasi ini!"
180
 
181
- #: adrotate-output.php:592
182
  msgid "Error, no Ad ID set! Check your syntax!"
183
  msgstr "Kesalahan, tidak ada ID Iklan set! Memeriksa sintaks Anda!"
184
 
185
- #: adrotate-output.php:598
186
  msgid "Error, no group ID set! Check your syntax!"
187
  msgstr "Kesalahan, tidak ada ID kelompok ditetapkan! Memeriksa sintaks Anda!"
188
 
189
- #: adrotate-output.php:603
190
  msgid "Error, group does not exist! Check your syntax!"
191
  msgstr "Kesalahan, kelompok tidak ada! Memeriksa sintaks Anda!"
192
 
193
- #: adrotate-output.php:609
194
  msgid ""
195
  "There was an error locating the database tables for AdRotate. Please "
196
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -198,19 +198,19 @@ msgstr ""
198
  "Ada kesalahan menemukan tabel database untuk AdRotate. Harap menonaktifkan "
199
  "dan mengaktifkan kembali AdRotate dari halaman Plugin !!"
200
 
201
- #: adrotate-output.php:609
202
  msgid "If this does not solve the issue please seek support at"
203
  msgstr "Jika ini tidak memecahkan masalah silahkan mencari dukungan di"
204
 
205
- #: adrotate-output.php:615
206
  msgid "An unknown error occured."
207
  msgstr "Terjadi kesalahan tak dikenal."
208
 
209
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
210
  msgid "Check adverts"
211
  msgstr "periksa iklan"
212
 
213
- #: adrotate-output.php:652
214
  #, fuzzy
215
  #| msgid ""
216
  #| "You have enable caching support but W3 Total Cache is not active on your "
@@ -222,13 +222,13 @@ msgstr ""
222
  "Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
223
  "di situs Anda!"
224
 
225
- #: adrotate-output.php:652
226
  #, fuzzy
227
  #| msgid "W3 Total Caching"
228
  msgid "Disable W3 Total Cache Support"
229
  msgstr "W3 Jumlah Caching"
230
 
231
- #: adrotate-output.php:655
232
  msgid ""
233
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
234
  "not set."
@@ -236,13 +236,13 @@ msgstr ""
236
  "Anda memiliki mengaktifkan dukungan caching tetapi definisi "
237
  "W3TC_DYNAMIC_SECURITY tidak diatur."
238
 
239
- #: adrotate-output.php:655
240
  #, fuzzy
241
  #| msgid "Set up W3 Total Caching"
242
  msgid "How to configure W3 Total Cache"
243
  msgstr "Mengatur W3 Jumlah Caching"
244
 
245
- #: adrotate-output.php:664
246
  #, fuzzy
247
  #| msgid ""
248
  #| "You have enable caching support but W3 Total Cache is not active on your "
@@ -253,11 +253,11 @@ msgstr ""
253
  "Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
254
  "di situs Anda!"
255
 
256
- #: adrotate-output.php:664
257
  msgid "Disable Borlabs Cache Support"
258
  msgstr ""
259
 
260
- #: adrotate-output.php:672
261
  #, fuzzy
262
  #| msgid ""
263
  #| "You have enable caching support but W3 Total Cache is not active on your "
@@ -268,38 +268,38 @@ msgstr ""
268
  "Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
269
  "di situs Anda!"
270
 
271
- #: adrotate-output.php:672
272
  msgid "Enable Fragment Caching"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:678
276
  msgid "Your AdRotate Banner folder is not writable or does not exist."
277
  msgstr "Anda folder AdRotate Banner tidak dapat ditulis atau tidak ada."
278
 
279
- #: adrotate-output.php:678
280
  #, fuzzy
281
  #| msgid "Where are your banner ads?"
282
  msgid "Set up your banner folder"
283
  msgstr "Къде се намират вашите рекламни банери?"
284
 
285
- #: adrotate-output.php:698
286
  msgid "your attention:"
287
  msgstr ""
288
 
289
- #: adrotate-output.php:719 adrotate.php:447
290
  #: dashboard/publisher/schedules-main.php:13
291
  #, fuzzy
292
  #| msgid "AdRotate Pro"
293
  msgid "Get AdRotate Pro"
294
  msgstr "AdRotate Pro"
295
 
296
- #: adrotate-output.php:720
297
  msgid ""
298
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
299
  "Schedules and more..."
300
  msgstr ""
301
 
302
- #: adrotate-output.php:720
303
  #, php-format
304
  msgid ""
305
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
@@ -307,13 +307,13 @@ msgstr ""
307
  "Gunakan kode diskon <b> getadrotatepro </ b> untuk 10% off pada setiap "
308
  "lisensi AdRotate!"
309
 
310
- #: adrotate-output.php:720
311
  #, fuzzy
312
  #| msgid "Thank you for your purchase!"
313
  msgid "Thank you for your support!"
314
  msgstr "Terima kasih atas pembelian Anda!"
315
 
316
- #: adrotate-output.php:837
317
  msgid ""
318
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
319
  "menu. If you need help getting started take a look at the"
@@ -321,51 +321,27 @@ msgstr ""
321
  "Terima kasih telah memilih AdRotate. Semuanya terkait dengan AdRotate dalam "
322
  "menu ini. Jika Anda memerlukan bantuan mendapatkan mulai melihat pada"
323
 
324
- #: adrotate-output.php:837
325
  msgid "manuals"
326
  msgstr "manual"
327
 
328
- #: adrotate-output.php:837 adrotate-output.php:921
329
  msgid "and"
330
  msgstr "dan"
331
 
332
- #: adrotate-output.php:837
333
  msgid "forums"
334
  msgstr "forum"
335
 
336
- #: adrotate-output.php:870
337
- msgid "Useful Links"
338
- msgstr "Link berguna"
339
-
340
- #: adrotate-output.php:871
341
- msgid "Useful links to learn more about AdRotate"
342
- msgstr "link yang berguna untuk mempelajari lebih lanjut tentang AdRotate"
343
-
344
- #: adrotate-output.php:873
345
- msgid "AdRotate website"
346
- msgstr "situs AdRotate"
347
-
348
- #: adrotate-output.php:874
349
- msgid "Getting Started With AdRotate"
350
- msgstr "Memulai Dengan AdRotate"
351
-
352
- #: adrotate-output.php:875
353
- msgid "AdRotate manuals"
354
- msgstr "manual AdRotate"
355
-
356
- #: adrotate-output.php:876
357
- msgid "AdRotate Support Forum"
358
- msgstr "Forum Dukungan AdRotate"
359
-
360
- #: adrotate-output.php:913
361
  msgid "Help AdRotate Grow"
362
  msgstr "Помогнете за развитието на AdRotate"
363
 
364
- #: adrotate-output.php:914 adrotate.php:152
365
  msgid "AdRotate Professional"
366
  msgstr "AdRotate profesional"
367
 
368
- #: adrotate-output.php:921
369
  msgid ""
370
  "Many users only think to review AdRotate when something goes wrong while "
371
  "thousands of people happily use AdRotate."
@@ -374,36 +350,36 @@ msgstr ""
374
  "berjalan salah sementara ribuan orang dengan senang hati menggunakan "
375
  "AdRotate."
376
 
377
- #: adrotate-output.php:921
378
  msgid "If you find AdRotate useful please leave your"
379
  msgstr "Jika Anda menemukan AdRotate berguna silakan tinggalkan Anda"
380
 
381
- #: adrotate-output.php:921
382
  msgid "rating"
383
  msgstr "penilaian"
384
 
385
- #: adrotate-output.php:921
386
  msgid "review"
387
  msgstr "ulasan"
388
 
389
- #: adrotate-output.php:921
390
  #, fuzzy
391
  #| msgid "on WordPress.org to help AdRotate grow in a positive way"
392
  msgid "on WordPress.org to help AdRotate grow in a positive way"
393
  msgstr ""
394
  "di WordPress.org untuk membantu AdRotate tumbuh dengan cara yang positif"
395
 
396
- #: adrotate-output.php:922
397
  msgid ""
398
  "Get more advanced features like Geo Targeting, scheduling and much more with "
399
  "AdRotate Pro."
400
  msgstr ""
401
 
402
- #: adrotate-output.php:922
403
  msgid "Includes premium support and free updates!"
404
  msgstr ""
405
 
406
- #: adrotate-output.php:922
407
  #, fuzzy
408
  #| msgid "Getting Started With AdRotate"
409
  msgid "Get started today"
@@ -481,45 +457,45 @@ msgstr "Tidak ada data untuk menunjukkan!"
481
  msgid "Not found"
482
  msgstr "Tidak ada iklan yang ditemukan."
483
 
484
- #: adrotate-widget.php:132
485
  msgid "Title (optional):"
486
  msgstr "Judul (opsional):"
487
 
488
- #: adrotate-widget.php:135
489
  msgid "HTML will be stripped out."
490
  msgstr "HTML akan dilucuti keluar."
491
 
492
- #: adrotate-widget.php:138
493
  msgid "Description (optional):"
494
  msgstr "Deskripsi (opsional):"
495
 
496
- #: adrotate-widget.php:141
497
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
498
  msgstr ""
499
  "Apa yang widget ini digunakan untuk? (Tidak diurai, HTML akan dilucuti "
500
  "keluar.)"
501
 
502
- #: adrotate-widget.php:144
503
  msgid "Type:"
504
  msgstr "Mengetik:"
505
 
506
- #: adrotate-widget.php:146
507
  msgid "Advert - Use Advert ID"
508
  msgstr "Iklan - Gunakan iklan ID"
509
 
510
- #: adrotate-widget.php:147
511
  msgid "Group - Use group ID"
512
  msgstr "Group - Gunakan ID grup"
513
 
514
- #: adrotate-widget.php:150
515
  msgid "Choose what you want to use this widget for"
516
  msgstr "Pilih apa yang Anda ingin menggunakan widget ini untuk"
517
 
518
- #: adrotate-widget.php:153
519
  msgid "ID:"
520
  msgstr "ID:"
521
 
522
- #: adrotate-widget.php:156
523
  msgid "Fill in the ID of the type you want to display!"
524
  msgstr "Isi ID dari jenis yang ingin ditampilkan!"
525
 
@@ -721,10 +697,10 @@ msgstr "Dapatkan Premium Dukungan hampir sepanjang tahun"
721
  #| "support takes priority over the forums and is checked much more often "
722
  #| "than the forum. Get a solution (usually) within one business day."
723
  msgid ""
724
- "When you activate your AdRotate Pro license you can use fast and personal "
725
  "email support. No more queueing up in the forums. AdRotate support takes "
726
- "priority over the forums and is checked much more often than the forum. Get "
727
- "a solution (usually) within two business days."
728
  msgstr ""
729
  "Bila Anda mengaktifkan lisensi Pro AdRotate Anda Anda dapat menggunakan "
730
  "cepat dan pribadi dukungan email. Tidak ada lagi antri di forum. dukungan "
@@ -796,15 +772,15 @@ msgstr ""
796
  "lagi."
797
 
798
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
799
- #: dashboard/info.php:79
800
  msgid "Buy AdRotate Professional"
801
  msgstr "Beli AdRotate profesional"
802
 
803
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
804
  msgid "Single License"
805
  msgstr "Lisensi tunggal"
806
 
807
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
808
  msgid "One WordPress installation."
809
  msgstr "Satu instalasi WordPress."
810
 
@@ -812,50 +788,50 @@ msgstr "Satu instalasi WordPress."
812
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
813
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
814
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
815
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
816
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
817
  msgid "Buy now"
818
  msgstr "Beli sekarang"
819
 
820
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
821
- #: dashboard/info.php:84
822
  msgid "Duo License"
823
  msgstr "Duo Lisensi"
824
 
825
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
826
  msgid "Two WordPress installations."
827
  msgstr "Dua instalasi WordPress."
828
 
829
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
830
- #: dashboard/info.php:85
831
  msgid "Multi License"
832
  msgstr "multi License"
833
 
834
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
835
  #, fuzzy
836
  #| msgid "One WordPress installation."
837
  msgid "Five WordPress installations."
838
  msgstr "Satu instalasi WordPress."
839
 
840
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
841
- #: dashboard/info.php:86
842
  msgid "Developer License"
843
  msgstr "Lisensi developer"
844
 
845
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
846
  msgid "Unlimited WordPress installations and/or networks."
847
  msgstr "instalasi WordPress terbatas dan / atau jaringan."
848
 
849
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
850
- #: dashboard/info.php:87
851
  msgid "Compare licenses"
852
  msgstr "bandingkan lisensi"
853
 
854
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
855
  msgid "Not sure which license is for you? Compare them..."
856
  msgstr "Tidak yakin yang lisensi adalah untuk Anda? Membandingkan mereka..."
857
 
858
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
859
  msgid "All Licenses"
860
  msgstr "semua Lisensi"
861
 
@@ -930,24 +906,20 @@ msgstr ""
930
  msgid "Arnan de Gans News & Updates"
931
  msgstr ""
932
 
933
- #: dashboard/info.php:91
934
- msgid "AJdG Solutions Premium Support Group"
935
- msgstr ""
936
-
937
- #: dashboard/info.php:108
938
- msgid "Join the Media.net advertising network"
939
- msgstr ""
940
-
941
- #: dashboard/info.php:123
942
  msgid "Sponsored offers"
943
  msgstr ""
944
 
945
- #: dashboard/info.php:129
946
  msgid ""
947
  "These are affiliate banners, clicking them costs you nothing but it helps me "
948
  "and AdRotate a lot!"
949
  msgstr ""
950
 
 
 
 
 
951
  #: dashboard/publisher/adverts-disabled.php:15
952
  msgid "Disabled Adverts"
953
  msgstr "Iklan dinonaktifkan"
@@ -2676,7 +2648,9 @@ msgid "Which Geo Service"
2676
  msgstr "Yang Geo Layanan"
2677
 
2678
  #: dashboard/settings/geotargeting.php:32
2679
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
2680
  msgstr ""
2681
  "30000 pencarian gratis setiap hari, menggunakan database GeoLite2 dari "
2682
  "MaxMind!"
@@ -2700,26 +2674,18 @@ msgid "Suitable for small to medium websites."
2700
  msgstr "Cocok untuk kecil untuk website menengah."
2701
 
2702
  #: dashboard/settings/geotargeting.php:36
2703
- #, fuzzy
2704
- #| msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2705
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2706
  msgstr ""
2707
- "30000 pencarian gratis setiap hari, menggunakan database GeoLite2 dari "
2708
- "MaxMind!"
2709
 
2710
  #: dashboard/settings/geotargeting.php:38
2711
- #, fuzzy
2712
- #| msgid "Suitable for any size website."
2713
- msgid "Suitable for medium sized websites."
2714
- msgstr "Cocok untuk setiap situs web ukuran."
2715
 
2716
  #: dashboard/settings/geotargeting.php:40
2717
- msgid ""
2718
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2719
- "lookups."
2720
  msgstr ""
2721
- "Geo paling akurat menargetkan Anda bisa mendapatkan untuk hanya $ 20 USD per "
2722
- "50.000 pencarian."
2723
 
2724
  #: dashboard/settings/geotargeting.php:42
2725
  msgid "Suitable for any size website as long as you have lookups."
@@ -3457,6 +3423,43 @@ msgstr ""
3457
  "Jumlah ini mungkin tidak kosong, lebih rendah dari 60 atau melebihi 86.400 "
3458
  "(24 jam)."
3459
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3460
  #, fuzzy
3461
  #~| msgid ""
3462
  #~| "You've been using <strong>AdRotate</strong> for a while now. Why not "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id_ID\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:720
21
  msgid "No files found"
22
  msgstr "Tidak ada file yang ditemukan"
23
 
24
+ #: adrotate-functions.php:723
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder tidak ditemukan atau tidak dapat diakses"
27
 
28
+ #: adrotate-functions.php:808
29
  msgid "Ad saved"
30
  msgstr "iklan tersimpan"
31
 
32
+ #: adrotate-functions.php:812
33
  msgid "Group saved"
34
  msgstr "kelompok disimpan"
35
 
36
+ #: adrotate-functions.php:816
37
  msgid "Ad(s) deleted"
38
  msgstr "Iklan (s) dihapus"
39
 
40
+ #: adrotate-functions.php:820
41
  msgid "Group deleted"
42
  msgstr "kelompok dihapus"
43
 
44
+ #: adrotate-functions.php:824
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Iklan (s) statistik ulang"
47
 
48
+ #: adrotate-functions.php:828
49
  msgid "Ad(s) renewed"
50
  msgstr "Iklan (s) baru"
51
 
52
+ #: adrotate-functions.php:832
53
  msgid "Ad(s) deactivated"
54
  msgstr "Iklan (s) dinonaktifkan"
55
 
56
+ #: adrotate-functions.php:836
57
  msgid "Ad(s) activated"
58
  msgstr "Iklan (s) diaktifkan"
59
 
60
+ #: adrotate-functions.php:840
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Kelompok termasuk itu iklan dihapus"
63
 
64
+ #: adrotate-functions.php:844
65
  msgid "Export created"
66
  msgstr "ekspor dibuat"
67
 
68
+ #: adrotate-functions.php:848
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:853
75
  msgid "Settings saved"
76
  msgstr "pengaturan disimpan"
77
 
78
+ #: adrotate-functions.php:857
79
  msgid "Database optimized"
80
  msgstr "database dioptimalkan"
81
 
82
+ #: adrotate-functions.php:861
83
  msgid "Database repaired"
84
  msgstr "database diperbaiki"
85
 
86
+ #: adrotate-functions.php:865
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Iklan dievaluasi dan status telah diperbaiki di mana diperlukan"
89
 
90
+ #: adrotate-functions.php:869
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Clean-up database"
95
 
96
+ #: adrotate-functions.php:874
97
  msgid "Action prohibited"
98
  msgstr "aksi dilarang"
99
 
100
+ #: adrotate-functions.php:878
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
105
  "iklan itu disimpan tapi memiliki masalah yang mungkin mencegah dari bekerja "
106
  "dengan baik. Tinjau iklan berwarna."
107
 
108
+ #: adrotate-functions.php:882
109
  msgid "No data found in selected time period"
110
  msgstr "Tidak ada data pada periode waktu yang dipilih"
111
 
112
+ #: adrotate-functions.php:886
113
  msgid "Database can only be optimized or cleaned once every hour"
114
  msgstr "Database hanya dapat dioptimalkan atau dibersihkan sekali setiap jam"
115
 
116
+ #: adrotate-functions.php:890
117
  msgid "Form can not be (partially) empty!"
118
  msgstr "Form tidak bisa (sebagian) kosong!"
119
 
120
+ #: adrotate-functions.php:894
121
  msgid "No ads found."
122
  msgstr "Tidak ada iklan yang ditemukan."
123
 
124
+ #: adrotate-functions.php:898
125
  msgid "Unexpected error"
126
  msgstr "Kesalahan tak terduga"
127
 
129
  msgid "AdRotate Advertiser"
130
  msgstr "AdRotate Pengiklan"
131
 
132
+ #: adrotate-output.php:572
133
  msgid "Oh no! Something went wrong!"
134
  msgstr "Oh tidak! Ada yang salah!"
135
 
136
+ #: adrotate-output.php:573
137
  msgid ""
138
  "WordPress was unable to verify the authenticity of the url you have clicked. "
139
  "Verify if the url used is valid or log in via your browser."
142
  "Periksa apakah url yang digunakan adalah valid atau masuk melalui browser "
143
  "Anda."
144
 
145
+ #: adrotate-output.php:574
146
  msgid ""
147
  "If you have received the url you want to visit via email, you are being "
148
  "tricked!"
150
  "Jika Anda telah menerima url yang ingin Anda kunjungi melalui email, Anda "
151
  "sedang ditipu!"
152
 
153
+ #: adrotate-output.php:575
154
  msgid "Contact support if the issue persists:"
155
  msgstr "Hubungi dukungan jika masalah terus berlanjut:"
156
 
157
+ #: adrotate-output.php:590
158
  msgid ""
159
  "Error, Ad is not available at this time due to schedule/geolocation "
160
  "restrictions or does not exist!"
162
  "Kesalahan, Iklan tidak tersedia pada saat ini karena jadwal pembatasan / "
163
  "geolocation atau tidak ada!"
164
 
165
+ #: adrotate-output.php:592
166
  msgid ""
167
  "Error, Ad is not available at this time due to schedule/geolocation "
168
  "restrictions!"
170
  "Kesalahan, Iklan tidak tersedia pada saat ini karena jadwal pembatasan / "
171
  "geolocation!"
172
 
173
+ #: adrotate-output.php:599 adrotate-output.php:601
174
  msgid ""
175
  "Either there are no banners, they are disabled or none qualified for this "
176
  "location!"
178
  "Entah ada spanduk, mereka dinonaktifkan atau tidak memenuhi syarat untuk "
179
  "lokasi ini!"
180
 
181
+ #: adrotate-output.php:607
182
  msgid "Error, no Ad ID set! Check your syntax!"
183
  msgstr "Kesalahan, tidak ada ID Iklan set! Memeriksa sintaks Anda!"
184
 
185
+ #: adrotate-output.php:613
186
  msgid "Error, no group ID set! Check your syntax!"
187
  msgstr "Kesalahan, tidak ada ID kelompok ditetapkan! Memeriksa sintaks Anda!"
188
 
189
+ #: adrotate-output.php:618
190
  msgid "Error, group does not exist! Check your syntax!"
191
  msgstr "Kesalahan, kelompok tidak ada! Memeriksa sintaks Anda!"
192
 
193
+ #: adrotate-output.php:624
194
  msgid ""
195
  "There was an error locating the database tables for AdRotate. Please "
196
  "deactivate and re-activate AdRotate from the plugin page!!"
198
  "Ada kesalahan menemukan tabel database untuk AdRotate. Harap menonaktifkan "
199
  "dan mengaktifkan kembali AdRotate dari halaman Plugin !!"
200
 
201
+ #: adrotate-output.php:624
202
  msgid "If this does not solve the issue please seek support at"
203
  msgstr "Jika ini tidak memecahkan masalah silahkan mencari dukungan di"
204
 
205
+ #: adrotate-output.php:630
206
  msgid "An unknown error occured."
207
  msgstr "Terjadi kesalahan tak dikenal."
208
 
209
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
210
  msgid "Check adverts"
211
  msgstr "periksa iklan"
212
 
213
+ #: adrotate-output.php:662
214
  #, fuzzy
215
  #| msgid ""
216
  #| "You have enable caching support but W3 Total Cache is not active on your "
222
  "Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
223
  "di situs Anda!"
224
 
225
+ #: adrotate-output.php:662
226
  #, fuzzy
227
  #| msgid "W3 Total Caching"
228
  msgid "Disable W3 Total Cache Support"
229
  msgstr "W3 Jumlah Caching"
230
 
231
+ #: adrotate-output.php:665
232
  msgid ""
233
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
234
  "not set."
236
  "Anda memiliki mengaktifkan dukungan caching tetapi definisi "
237
  "W3TC_DYNAMIC_SECURITY tidak diatur."
238
 
239
+ #: adrotate-output.php:665
240
  #, fuzzy
241
  #| msgid "Set up W3 Total Caching"
242
  msgid "How to configure W3 Total Cache"
243
  msgstr "Mengatur W3 Jumlah Caching"
244
 
245
+ #: adrotate-output.php:669
246
  #, fuzzy
247
  #| msgid ""
248
  #| "You have enable caching support but W3 Total Cache is not active on your "
253
  "Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
254
  "di situs Anda!"
255
 
256
+ #: adrotate-output.php:669
257
  msgid "Disable Borlabs Cache Support"
258
  msgstr ""
259
 
260
+ #: adrotate-output.php:677
261
  #, fuzzy
262
  #| msgid ""
263
  #| "You have enable caching support but W3 Total Cache is not active on your "
268
  "Anda memiliki mengaktifkan dukungan caching tapi W3 Total Cache tidak aktif "
269
  "di situs Anda!"
270
 
271
+ #: adrotate-output.php:677
272
  msgid "Enable Fragment Caching"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:683
276
  msgid "Your AdRotate Banner folder is not writable or does not exist."
277
  msgstr "Anda folder AdRotate Banner tidak dapat ditulis atau tidak ada."
278
 
279
+ #: adrotate-output.php:683
280
  #, fuzzy
281
  #| msgid "Where are your banner ads?"
282
  msgid "Set up your banner folder"
283
  msgstr "Къде се намират вашите рекламни банери?"
284
 
285
+ #: adrotate-output.php:703
286
  msgid "your attention:"
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:724 adrotate.php:447
290
  #: dashboard/publisher/schedules-main.php:13
291
  #, fuzzy
292
  #| msgid "AdRotate Pro"
293
  msgid "Get AdRotate Pro"
294
  msgstr "AdRotate Pro"
295
 
296
+ #: adrotate-output.php:725
297
  msgid ""
298
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
299
  "Schedules and more..."
300
  msgstr ""
301
 
302
+ #: adrotate-output.php:725
303
  #, php-format
304
  msgid ""
305
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
307
  "Gunakan kode diskon <b> getadrotatepro </ b> untuk 10% off pada setiap "
308
  "lisensi AdRotate!"
309
 
310
+ #: adrotate-output.php:725
311
  #, fuzzy
312
  #| msgid "Thank you for your purchase!"
313
  msgid "Thank you for your support!"
314
  msgstr "Terima kasih atas pembelian Anda!"
315
 
316
+ #: adrotate-output.php:793
317
  msgid ""
318
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
319
  "menu. If you need help getting started take a look at the"
321
  "Terima kasih telah memilih AdRotate. Semuanya terkait dengan AdRotate dalam "
322
  "menu ini. Jika Anda memerlukan bantuan mendapatkan mulai melihat pada"
323
 
324
+ #: adrotate-output.php:793
325
  msgid "manuals"
326
  msgstr "manual"
327
 
328
+ #: adrotate-output.php:793 adrotate-output.php:893
329
  msgid "and"
330
  msgstr "dan"
331
 
332
+ #: adrotate-output.php:793
333
  msgid "forums"
334
  msgstr "forum"
335
 
336
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  msgid "Help AdRotate Grow"
338
  msgstr "Помогнете за развитието на AdRotate"
339
 
340
+ #: adrotate-output.php:886 adrotate.php:152
341
  msgid "AdRotate Professional"
342
  msgstr "AdRotate profesional"
343
 
344
+ #: adrotate-output.php:893
345
  msgid ""
346
  "Many users only think to review AdRotate when something goes wrong while "
347
  "thousands of people happily use AdRotate."
350
  "berjalan salah sementara ribuan orang dengan senang hati menggunakan "
351
  "AdRotate."
352
 
353
+ #: adrotate-output.php:893
354
  msgid "If you find AdRotate useful please leave your"
355
  msgstr "Jika Anda menemukan AdRotate berguna silakan tinggalkan Anda"
356
 
357
+ #: adrotate-output.php:893
358
  msgid "rating"
359
  msgstr "penilaian"
360
 
361
+ #: adrotate-output.php:893
362
  msgid "review"
363
  msgstr "ulasan"
364
 
365
+ #: adrotate-output.php:893
366
  #, fuzzy
367
  #| msgid "on WordPress.org to help AdRotate grow in a positive way"
368
  msgid "on WordPress.org to help AdRotate grow in a positive way"
369
  msgstr ""
370
  "di WordPress.org untuk membantu AdRotate tumbuh dengan cara yang positif"
371
 
372
+ #: adrotate-output.php:894
373
  msgid ""
374
  "Get more advanced features like Geo Targeting, scheduling and much more with "
375
  "AdRotate Pro."
376
  msgstr ""
377
 
378
+ #: adrotate-output.php:894
379
  msgid "Includes premium support and free updates!"
380
  msgstr ""
381
 
382
+ #: adrotate-output.php:894
383
  #, fuzzy
384
  #| msgid "Getting Started With AdRotate"
385
  msgid "Get started today"
457
  msgid "Not found"
458
  msgstr "Tidak ada iklan yang ditemukan."
459
 
460
+ #: adrotate-widget.php:134
461
  msgid "Title (optional):"
462
  msgstr "Judul (opsional):"
463
 
464
+ #: adrotate-widget.php:137
465
  msgid "HTML will be stripped out."
466
  msgstr "HTML akan dilucuti keluar."
467
 
468
+ #: adrotate-widget.php:140
469
  msgid "Description (optional):"
470
  msgstr "Deskripsi (opsional):"
471
 
472
+ #: adrotate-widget.php:143
473
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
474
  msgstr ""
475
  "Apa yang widget ini digunakan untuk? (Tidak diurai, HTML akan dilucuti "
476
  "keluar.)"
477
 
478
+ #: adrotate-widget.php:146
479
  msgid "Type:"
480
  msgstr "Mengetik:"
481
 
482
+ #: adrotate-widget.php:148
483
  msgid "Advert - Use Advert ID"
484
  msgstr "Iklan - Gunakan iklan ID"
485
 
486
+ #: adrotate-widget.php:149
487
  msgid "Group - Use group ID"
488
  msgstr "Group - Gunakan ID grup"
489
 
490
+ #: adrotate-widget.php:152
491
  msgid "Choose what you want to use this widget for"
492
  msgstr "Pilih apa yang Anda ingin menggunakan widget ini untuk"
493
 
494
+ #: adrotate-widget.php:155
495
  msgid "ID:"
496
  msgstr "ID:"
497
 
498
+ #: adrotate-widget.php:158
499
  msgid "Fill in the ID of the type you want to display!"
500
  msgstr "Isi ID dari jenis yang ingin ditampilkan!"
501
 
697
  #| "support takes priority over the forums and is checked much more often "
698
  #| "than the forum. Get a solution (usually) within one business day."
699
  msgid ""
700
+ "When you activate your AdRotate Pro license you can use the more personal "
701
  "email support. No more queueing up in the forums. AdRotate support takes "
702
+ "priority over the forums and is checked once or twice a day. Get a solution "
703
+ "(usually) within two business days."
704
  msgstr ""
705
  "Bila Anda mengaktifkan lisensi Pro AdRotate Anda Anda dapat menggunakan "
706
  "cepat dan pribadi dukungan email. Tidak ada lagi antri di forum. dukungan "
772
  "lagi."
773
 
774
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
775
+ #: dashboard/info.php:90
776
  msgid "Buy AdRotate Professional"
777
  msgstr "Beli AdRotate profesional"
778
 
779
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
780
  msgid "Single License"
781
  msgstr "Lisensi tunggal"
782
 
783
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
784
  msgid "One WordPress installation."
785
  msgstr "Satu instalasi WordPress."
786
 
788
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
789
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
790
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
791
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
792
+ #: dashboard/info.php:97
793
  msgid "Buy now"
794
  msgstr "Beli sekarang"
795
 
796
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
797
+ #: dashboard/info.php:95
798
  msgid "Duo License"
799
  msgstr "Duo Lisensi"
800
 
801
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
802
  msgid "Two WordPress installations."
803
  msgstr "Dua instalasi WordPress."
804
 
805
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
806
+ #: dashboard/info.php:96
807
  msgid "Multi License"
808
  msgstr "multi License"
809
 
810
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
811
  #, fuzzy
812
  #| msgid "One WordPress installation."
813
  msgid "Five WordPress installations."
814
  msgstr "Satu instalasi WordPress."
815
 
816
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
817
+ #: dashboard/info.php:97
818
  msgid "Developer License"
819
  msgstr "Lisensi developer"
820
 
821
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
822
  msgid "Unlimited WordPress installations and/or networks."
823
  msgstr "instalasi WordPress terbatas dan / atau jaringan."
824
 
825
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
826
+ #: dashboard/info.php:98
827
  msgid "Compare licenses"
828
  msgstr "bandingkan lisensi"
829
 
830
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
831
  msgid "Not sure which license is for you? Compare them..."
832
  msgstr "Tidak yakin yang lisensi adalah untuk Anda? Membandingkan mereka..."
833
 
834
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
835
  msgid "All Licenses"
836
  msgstr "semua Lisensi"
837
 
906
  msgid "Arnan de Gans News & Updates"
907
  msgstr ""
908
 
909
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
910
  msgid "Sponsored offers"
911
  msgstr ""
912
 
913
+ #: dashboard/info.php:79
914
  msgid ""
915
  "These are affiliate banners, clicking them costs you nothing but it helps me "
916
  "and AdRotate a lot!"
917
  msgstr ""
918
 
919
+ #: dashboard/info.php:102
920
+ msgid "Join the Media.net advertising network"
921
+ msgstr ""
922
+
923
  #: dashboard/publisher/adverts-disabled.php:15
924
  msgid "Disabled Adverts"
925
  msgstr "Iklan dinonaktifkan"
2648
  msgstr "Yang Geo Layanan"
2649
 
2650
  #: dashboard/settings/geotargeting.php:32
2651
+ #, fuzzy
2652
+ #| msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2653
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2654
  msgstr ""
2655
  "30000 pencarian gratis setiap hari, menggunakan database GeoLite2 dari "
2656
  "MaxMind!"
2674
  msgstr "Cocok untuk kecil untuk website menengah."
2675
 
2676
  #: dashboard/settings/geotargeting.php:36
2677
+ msgid "10000 free lookups per month, requires account."
 
 
2678
  msgstr ""
 
 
2679
 
2680
  #: dashboard/settings/geotargeting.php:38
2681
+ msgid ""
2682
+ "Suitable for small to medium sized websites with a free account - Paid "
2683
+ "options available."
2684
+ msgstr ""
2685
 
2686
  #: dashboard/settings/geotargeting.php:40
2687
+ msgid "The most accurate geo targeting available."
 
 
2688
  msgstr ""
 
 
2689
 
2690
  #: dashboard/settings/geotargeting.php:42
2691
  msgid "Suitable for any size website as long as you have lookups."
3423
  "Jumlah ini mungkin tidak kosong, lebih rendah dari 60 atau melebihi 86.400 "
3424
  "(24 jam)."
3425
 
3426
+ #~ msgid "Useful Links"
3427
+ #~ msgstr "Link berguna"
3428
+
3429
+ #~ msgid "Useful links to learn more about AdRotate"
3430
+ #~ msgstr "link yang berguna untuk mempelajari lebih lanjut tentang AdRotate"
3431
+
3432
+ #~ msgid "AdRotate website"
3433
+ #~ msgstr "situs AdRotate"
3434
+
3435
+ #~ msgid "Getting Started With AdRotate"
3436
+ #~ msgstr "Memulai Dengan AdRotate"
3437
+
3438
+ #~ msgid "AdRotate manuals"
3439
+ #~ msgstr "manual AdRotate"
3440
+
3441
+ #~ msgid "AdRotate Support Forum"
3442
+ #~ msgstr "Forum Dukungan AdRotate"
3443
+
3444
+ #, fuzzy
3445
+ #~| msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
3446
+ #~ msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
3447
+ #~ msgstr ""
3448
+ #~ "30000 pencarian gratis setiap hari, menggunakan database GeoLite2 dari "
3449
+ #~ "MaxMind!"
3450
+
3451
+ #, fuzzy
3452
+ #~| msgid "Suitable for any size website."
3453
+ #~ msgid "Suitable for medium sized websites."
3454
+ #~ msgstr "Cocok untuk setiap situs web ukuran."
3455
+
3456
+ #~ msgid ""
3457
+ #~ "The most accurate geo targeting you can get for only $20 USD per 50000 "
3458
+ #~ "lookups."
3459
+ #~ msgstr ""
3460
+ #~ "Geo paling akurat menargetkan Anda bisa mendapatkan untuk hanya $ 20 USD "
3461
+ #~ "per 50.000 pencarian."
3462
+
3463
  #, fuzzy
3464
  #~| msgid ""
3465
  #~| "You've been using <strong>AdRotate</strong> for a while now. Why not "
language/adrotate-ja.mo CHANGED
Binary file
language/adrotate-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:28+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:28+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
@@ -16,111 +16,111 @@ msgstr ""
16
  "X-Generator: Poedit 2.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:730
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
- #: adrotate-functions.php:733
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
- #: adrotate-functions.php:818
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
- #: adrotate-functions.php:822
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:826
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
- #: adrotate-functions.php:830
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
- #: adrotate-functions.php:834
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
- #: adrotate-functions.php:838
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
- #: adrotate-functions.php:842
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
- #: adrotate-functions.php:846
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
- #: adrotate-functions.php:850
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
- #: adrotate-functions.php:854
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
- #: adrotate-functions.php:858
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:863
75
  msgid "Settings saved"
76
  msgstr "設定を保存します。"
77
 
78
- #: adrotate-functions.php:867
79
  msgid "Database optimized"
80
  msgstr "データベースの最適化"
81
 
82
- #: adrotate-functions.php:871
83
  msgid "Database repaired"
84
  msgstr "データベースの修復"
85
 
86
- #: adrotate-functions.php:875
87
  #, fuzzy
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr "広告"
90
 
91
- #: adrotate-functions.php:879
92
  #, fuzzy
93
  #| msgid "Clean-up Database"
94
  msgid "Cleanup complete"
95
  msgstr "データベースのクリーンアップ"
96
 
97
- #: adrotate-functions.php:884
98
  msgid "Action prohibited"
99
  msgstr "今の操作は禁止されました。"
100
 
101
- #: adrotate-functions.php:888
102
  msgid ""
103
  "The ad was saved but has an issue which might prevent it from working "
104
  "properly. Review the colored ad."
105
  msgstr ""
106
 
107
- #: adrotate-functions.php:892
108
  msgid "No data found in selected time period"
109
  msgstr "選ばれた期間が見つかりません。"
110
 
111
- #: adrotate-functions.php:896
112
  msgid "Database can only be optimized or cleaned once every hour"
113
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
114
 
115
- #: adrotate-functions.php:900
116
  msgid "Form can not be (partially) empty!"
117
  msgstr ""
118
 
119
- #: adrotate-functions.php:904
120
  msgid "No ads found."
121
  msgstr ""
122
 
123
- #: adrotate-functions.php:908
124
  msgid "Unexpected error"
125
  msgstr ""
126
 
@@ -128,11 +128,11 @@ msgstr ""
128
  msgid "AdRotate Advertiser"
129
  msgstr ""
130
 
131
- #: adrotate-output.php:557
132
  msgid "Oh no! Something went wrong!"
133
  msgstr ""
134
 
135
- #: adrotate-output.php:558
136
  #, fuzzy
137
  msgid ""
138
  "WordPress was unable to verify the authenticity of the url you have clicked. "
@@ -142,28 +142,28 @@ msgstr ""
142
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
143
  "さい。英語ですが。"
144
 
145
- #: adrotate-output.php:559
146
  #, fuzzy
147
  msgid ""
148
  "If you have received the url you want to visit via email, you are being "
149
  "tricked!"
150
  msgstr "このウィジェットに使いたい物を選んで下さい。"
151
 
152
- #: adrotate-output.php:560
153
  #, fuzzy
154
  msgid "Contact support if the issue persists:"
155
  msgstr ""
156
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
157
  "さい。"
158
 
159
- #: adrotate-output.php:575
160
  #, fuzzy
161
  msgid ""
162
  "Error, Ad is not available at this time due to schedule/geolocation "
163
  "restrictions or does not exist!"
164
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
165
 
166
- #: adrotate-output.php:577
167
  #, fuzzy
168
  msgid ""
169
  "Error, Ad is not available at this time due to schedule/geolocation "
@@ -172,30 +172,30 @@ msgstr ""
172
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
173
  "を再度保存してください!"
174
 
175
- #: adrotate-output.php:584 adrotate-output.php:586
176
  msgid ""
177
  "Either there are no banners, they are disabled or none qualified for this "
178
  "location!"
179
  msgstr "バナーがないか、利用不可か適応されていません。"
180
 
181
- #: adrotate-output.php:592
182
  #, fuzzy
183
  msgid "Error, no Ad ID set! Check your syntax!"
184
  msgstr "広告 - 広告IDを使ってください。"
185
 
186
- #: adrotate-output.php:598
187
  #, fuzzy
188
  msgid "Error, no group ID set! Check your syntax!"
189
  msgstr "広告グループ - グループIDを使ってください。"
190
 
191
- #: adrotate-output.php:603
192
  #, fuzzy
193
  msgid "Error, group does not exist! Check your syntax!"
194
  msgstr ""
195
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
196
  "クスをオンにします。"
197
 
198
- #: adrotate-output.php:609
199
  msgid ""
200
  "There was an error locating the database tables for AdRotate. Please "
201
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -203,187 +203,157 @@ msgstr ""
203
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
204
  "して、再登録して下さい。"
205
 
206
- #: adrotate-output.php:609
207
  msgid "If this does not solve the issue please seek support at"
208
  msgstr ""
209
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
210
  "さい。"
211
 
212
- #: adrotate-output.php:615
213
  msgid "An unknown error occured."
214
  msgstr "理解できないエラーが起こっています。"
215
 
216
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
217
  msgid "Check adverts"
218
  msgstr ""
219
 
220
- #: adrotate-output.php:652
221
  msgid ""
222
  "You have enabled caching support but W3 Total Cache is not active on your "
223
  "site!"
224
  msgstr ""
225
 
226
- #: adrotate-output.php:652
227
  msgid "Disable W3 Total Cache Support"
228
  msgstr ""
229
 
230
- #: adrotate-output.php:655
231
  msgid ""
232
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
233
  "not set."
234
  msgstr ""
235
 
236
- #: adrotate-output.php:655
237
  msgid "How to configure W3 Total Cache"
238
  msgstr ""
239
 
240
- #: adrotate-output.php:664
241
  msgid ""
242
  "You have enable caching support but Borlabs Cache is not active on your site!"
243
  msgstr ""
244
 
245
- #: adrotate-output.php:664
246
  msgid "Disable Borlabs Cache Support"
247
  msgstr ""
248
 
249
- #: adrotate-output.php:672
250
  msgid ""
251
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
252
  msgstr ""
253
 
254
- #: adrotate-output.php:672
255
  msgid "Enable Fragment Caching"
256
  msgstr ""
257
 
258
- #: adrotate-output.php:678
259
  msgid "Your AdRotate Banner folder is not writable or does not exist."
260
  msgstr ""
261
 
262
- #: adrotate-output.php:678
263
  #, fuzzy
264
  msgid "Set up your banner folder"
265
  msgstr "バナー画像"
266
 
267
- #: adrotate-output.php:698
268
  msgid "your attention:"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:719 adrotate.php:447
272
  #: dashboard/publisher/schedules-main.php:13
273
  #, fuzzy
274
  msgid "Get AdRotate Pro"
275
  msgstr "AdRotate Blog"
276
 
277
- #: adrotate-output.php:720
278
  msgid ""
279
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
280
  "Schedules and more..."
281
  msgstr ""
282
 
283
- #: adrotate-output.php:720
284
  #, php-format
285
  msgid ""
286
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
287
  msgstr ""
288
 
289
- #: adrotate-output.php:720
290
  #, fuzzy
291
  msgid "Thank you for your support!"
292
  msgstr "データベースのバックアップを取りましたか?"
293
 
294
- #: adrotate-output.php:837
295
  msgid ""
296
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
297
  "menu. If you need help getting started take a look at the"
298
  msgstr ""
299
 
300
- #: adrotate-output.php:837
301
  msgid "manuals"
302
  msgstr "マニュアル(英語サイト)"
303
 
304
- #: adrotate-output.php:837 adrotate-output.php:921
305
  msgid "and"
306
  msgstr ""
307
 
308
- #: adrotate-output.php:837
309
  #, fuzzy
310
  msgid "forums"
311
  msgstr "フォーラム"
312
 
313
- #: adrotate-output.php:870
314
- #, fuzzy
315
- msgid "Useful Links"
316
- msgstr "役に立つ情報"
317
-
318
- #: adrotate-output.php:871
319
- msgid "Useful links to learn more about AdRotate"
320
- msgstr ""
321
-
322
- #: adrotate-output.php:873
323
- msgid "AdRotate website"
324
- msgstr ""
325
-
326
- #: adrotate-output.php:874
327
- #, fuzzy
328
- msgid "Getting Started With AdRotate"
329
- msgstr ""
330
- "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
331
- "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
332
-
333
- #: adrotate-output.php:875
334
- #, fuzzy
335
- msgid "AdRotate manuals"
336
- msgstr "AdRotate Blog"
337
-
338
- #: adrotate-output.php:876
339
- #, fuzzy
340
- msgid "AdRotate Support Forum"
341
- msgstr "AdRotate Blog"
342
-
343
- #: adrotate-output.php:913
344
  #, fuzzy
345
  msgid "Help AdRotate Grow"
346
  msgstr "AdRotate Blog"
347
 
348
- #: adrotate-output.php:914 adrotate.php:152
349
  #, fuzzy
350
  msgid "AdRotate Professional"
351
  msgstr "AdRotate Blog"
352
 
353
- #: adrotate-output.php:921
354
  msgid ""
355
  "Many users only think to review AdRotate when something goes wrong while "
356
  "thousands of people happily use AdRotate."
357
  msgstr ""
358
 
359
- #: adrotate-output.php:921
360
  msgid "If you find AdRotate useful please leave your"
361
  msgstr ""
362
 
363
- #: adrotate-output.php:921
364
  msgid "rating"
365
  msgstr ""
366
 
367
- #: adrotate-output.php:921
368
  #, fuzzy
369
  msgid "review"
370
  msgstr "全般レポートを見れる権限"
371
 
372
- #: adrotate-output.php:921
373
  msgid "on WordPress.org to help AdRotate grow in a positive way"
374
  msgstr ""
375
 
376
- #: adrotate-output.php:922
377
  msgid ""
378
  "Get more advanced features like Geo Targeting, scheduling and much more with "
379
  "AdRotate Pro."
380
  msgstr ""
381
 
382
- #: adrotate-output.php:922
383
  msgid "Includes premium support and free updates!"
384
  msgstr ""
385
 
386
- #: adrotate-output.php:922
387
  #, fuzzy
388
  msgid "Get started today"
389
  msgstr "実行"
@@ -461,46 +431,46 @@ msgstr "表示できるデータがありません。"
461
  msgid "Not found"
462
  msgstr "ファイルが見つかりません。"
463
 
464
- #: adrotate-widget.php:132
465
  msgid "Title (optional):"
466
  msgstr "タイトル(オプション):"
467
 
468
- #: adrotate-widget.php:135
469
  msgid "HTML will be stripped out."
470
  msgstr "HTMLタグは取り除かれます。"
471
 
472
- #: adrotate-widget.php:138
473
  #, fuzzy
474
  msgid "Description (optional):"
475
  msgstr "タイトル(オプション):"
476
 
477
- #: adrotate-widget.php:141
478
  #, fuzzy
479
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
480
  msgstr "HTMLタグは取り除かれます。"
481
 
482
- #: adrotate-widget.php:144
483
  msgid "Type:"
484
  msgstr "タイプ:"
485
 
486
- #: adrotate-widget.php:146
487
  msgid "Advert - Use Advert ID"
488
  msgstr ""
489
 
490
- #: adrotate-widget.php:147
491
  msgid "Group - Use group ID"
492
  msgstr ""
493
 
494
- #: adrotate-widget.php:150
495
  msgid "Choose what you want to use this widget for"
496
  msgstr "このウィジェットに使いたい物を選んで下さい。"
497
 
498
- #: adrotate-widget.php:153
499
  #, fuzzy
500
  msgid "ID:"
501
  msgstr "広告ブロック - ブロックIDを使ってください。"
502
 
503
- #: adrotate-widget.php:156
504
  msgid "Fill in the ID of the type you want to display!"
505
  msgstr "表示したいタイプのIDを入力してください!"
506
 
@@ -681,10 +651,10 @@ msgstr ""
681
 
682
  #: dashboard/adrotatepro.php:44
683
  msgid ""
684
- "When you activate your AdRotate Pro license you can use fast and personal "
685
  "email support. No more queueing up in the forums. AdRotate support takes "
686
- "priority over the forums and is checked much more often than the forum. Get "
687
- "a solution (usually) within two business days."
688
  msgstr ""
689
 
690
  #: dashboard/adrotatepro.php:48
@@ -730,16 +700,16 @@ msgid ""
730
  msgstr ""
731
 
732
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
733
- #: dashboard/info.php:79
734
  #, fuzzy
735
  msgid "Buy AdRotate Professional"
736
  msgstr "AdRotate Blog"
737
 
738
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
739
  msgid "Single License"
740
  msgstr ""
741
 
742
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
743
  msgid "One WordPress installation."
744
  msgstr ""
745
 
@@ -747,50 +717,50 @@ msgstr ""
747
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
748
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
749
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
750
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
751
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
752
  #, fuzzy
753
  msgid "Buy now"
754
  msgstr "継続する場合は対応して下さい。"
755
 
756
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
757
- #: dashboard/info.php:84
758
  msgid "Duo License"
759
  msgstr ""
760
 
761
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
762
  msgid "Two WordPress installations."
763
  msgstr ""
764
 
765
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
766
- #: dashboard/info.php:85
767
  msgid "Multi License"
768
  msgstr ""
769
 
770
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
771
  msgid "Five WordPress installations."
772
  msgstr ""
773
 
774
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
775
- #: dashboard/info.php:86
776
  #, fuzzy
777
  msgid "Developer License"
778
  msgstr "開発者向けデバッグ"
779
 
780
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
781
  msgid "Unlimited WordPress installations and/or networks."
782
  msgstr ""
783
 
784
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
785
- #: dashboard/info.php:87
786
  msgid "Compare licenses"
787
  msgstr ""
788
 
789
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
790
  msgid "Not sure which license is for you? Compare them..."
791
  msgstr ""
792
 
793
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
794
  #, fuzzy
795
  msgid "All Licenses"
796
  msgstr "すべての広告の再評価"
@@ -871,24 +841,20 @@ msgstr ""
871
  msgid "Arnan de Gans News & Updates"
872
  msgstr ""
873
 
874
- #: dashboard/info.php:91
875
- msgid "AJdG Solutions Premium Support Group"
876
- msgstr ""
877
-
878
- #: dashboard/info.php:108
879
- msgid "Join the Media.net advertising network"
880
- msgstr ""
881
-
882
- #: dashboard/info.php:123
883
  msgid "Sponsored offers"
884
  msgstr ""
885
 
886
- #: dashboard/info.php:129
887
  msgid ""
888
  "These are affiliate banners, clicking them costs you nothing but it helps me "
889
  "and AdRotate a lot!"
890
  msgstr ""
891
 
 
 
 
 
892
  #: dashboard/publisher/adverts-disabled.php:15
893
  msgid "Disabled Adverts"
894
  msgstr ""
@@ -2582,7 +2548,7 @@ msgid "Which Geo Service"
2582
  msgstr ""
2583
 
2584
  #: dashboard/settings/geotargeting.php:32
2585
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2586
  msgstr ""
2587
 
2588
  #: dashboard/settings/geotargeting.php:33
@@ -2604,17 +2570,17 @@ msgid "Suitable for small to medium websites."
2604
  msgstr ""
2605
 
2606
  #: dashboard/settings/geotargeting.php:36
2607
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2608
  msgstr ""
2609
 
2610
  #: dashboard/settings/geotargeting.php:38
2611
- msgid "Suitable for medium sized websites."
 
 
2612
  msgstr ""
2613
 
2614
  #: dashboard/settings/geotargeting.php:40
2615
- msgid ""
2616
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2617
- "lookups."
2618
  msgstr ""
2619
 
2620
  #: dashboard/settings/geotargeting.php:42
@@ -3300,6 +3266,25 @@ msgid ""
3300
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3301
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
3302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3303
  #, fuzzy
3304
  #~ msgid "Push notifications to your smartphone."
3305
  #~ msgstr "この通知は、あなたのウェブサイトからあなたに送られています。"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 2.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:720
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:723
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-functions.php:808
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:812
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:816
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
+ #: adrotate-functions.php:820
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
+ #: adrotate-functions.php:824
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
+ #: adrotate-functions.php:828
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
+ #: adrotate-functions.php:832
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
+ #: adrotate-functions.php:836
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
+ #: adrotate-functions.php:840
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
+ #: adrotate-functions.php:844
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
+ #: adrotate-functions.php:848
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:853
75
  msgid "Settings saved"
76
  msgstr "設定を保存します。"
77
 
78
+ #: adrotate-functions.php:857
79
  msgid "Database optimized"
80
  msgstr "データベースの最適化"
81
 
82
+ #: adrotate-functions.php:861
83
  msgid "Database repaired"
84
  msgstr "データベースの修復"
85
 
86
+ #: adrotate-functions.php:865
87
  #, fuzzy
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr "広告"
90
 
91
+ #: adrotate-functions.php:869
92
  #, fuzzy
93
  #| msgid "Clean-up Database"
94
  msgid "Cleanup complete"
95
  msgstr "データベースのクリーンアップ"
96
 
97
+ #: adrotate-functions.php:874
98
  msgid "Action prohibited"
99
  msgstr "今の操作は禁止されました。"
100
 
101
+ #: adrotate-functions.php:878
102
  msgid ""
103
  "The ad was saved but has an issue which might prevent it from working "
104
  "properly. Review the colored ad."
105
  msgstr ""
106
 
107
+ #: adrotate-functions.php:882
108
  msgid "No data found in selected time period"
109
  msgstr "選ばれた期間が見つかりません。"
110
 
111
+ #: adrotate-functions.php:886
112
  msgid "Database can only be optimized or cleaned once every hour"
113
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
114
 
115
+ #: adrotate-functions.php:890
116
  msgid "Form can not be (partially) empty!"
117
  msgstr ""
118
 
119
+ #: adrotate-functions.php:894
120
  msgid "No ads found."
121
  msgstr ""
122
 
123
+ #: adrotate-functions.php:898
124
  msgid "Unexpected error"
125
  msgstr ""
126
 
128
  msgid "AdRotate Advertiser"
129
  msgstr ""
130
 
131
+ #: adrotate-output.php:572
132
  msgid "Oh no! Something went wrong!"
133
  msgstr ""
134
 
135
+ #: adrotate-output.php:573
136
  #, fuzzy
137
  msgid ""
138
  "WordPress was unable to verify the authenticity of the url you have clicked. "
142
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
143
  "さい。英語ですが。"
144
 
145
+ #: adrotate-output.php:574
146
  #, fuzzy
147
  msgid ""
148
  "If you have received the url you want to visit via email, you are being "
149
  "tricked!"
150
  msgstr "このウィジェットに使いたい物を選んで下さい。"
151
 
152
+ #: adrotate-output.php:575
153
  #, fuzzy
154
  msgid "Contact support if the issue persists:"
155
  msgstr ""
156
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
157
  "さい。"
158
 
159
+ #: adrotate-output.php:590
160
  #, fuzzy
161
  msgid ""
162
  "Error, Ad is not available at this time due to schedule/geolocation "
163
  "restrictions or does not exist!"
164
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
165
 
166
+ #: adrotate-output.php:592
167
  #, fuzzy
168
  msgid ""
169
  "Error, Ad is not available at this time due to schedule/geolocation "
172
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
173
  "を再度保存してください!"
174
 
175
+ #: adrotate-output.php:599 adrotate-output.php:601
176
  msgid ""
177
  "Either there are no banners, they are disabled or none qualified for this "
178
  "location!"
179
  msgstr "バナーがないか、利用不可か適応されていません。"
180
 
181
+ #: adrotate-output.php:607
182
  #, fuzzy
183
  msgid "Error, no Ad ID set! Check your syntax!"
184
  msgstr "広告 - 広告IDを使ってください。"
185
 
186
+ #: adrotate-output.php:613
187
  #, fuzzy
188
  msgid "Error, no group ID set! Check your syntax!"
189
  msgstr "広告グループ - グループIDを使ってください。"
190
 
191
+ #: adrotate-output.php:618
192
  #, fuzzy
193
  msgid "Error, group does not exist! Check your syntax!"
194
  msgstr ""
195
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
196
  "クスをオンにします。"
197
 
198
+ #: adrotate-output.php:624
199
  msgid ""
200
  "There was an error locating the database tables for AdRotate. Please "
201
  "deactivate and re-activate AdRotate from the plugin page!!"
203
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
204
  "して、再登録して下さい。"
205
 
206
+ #: adrotate-output.php:624
207
  msgid "If this does not solve the issue please seek support at"
208
  msgstr ""
209
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
210
  "さい。"
211
 
212
+ #: adrotate-output.php:630
213
  msgid "An unknown error occured."
214
  msgstr "理解できないエラーが起こっています。"
215
 
216
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
217
  msgid "Check adverts"
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:662
221
  msgid ""
222
  "You have enabled caching support but W3 Total Cache is not active on your "
223
  "site!"
224
  msgstr ""
225
 
226
+ #: adrotate-output.php:662
227
  msgid "Disable W3 Total Cache Support"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:665
231
  msgid ""
232
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
233
  "not set."
234
  msgstr ""
235
 
236
+ #: adrotate-output.php:665
237
  msgid "How to configure W3 Total Cache"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:669
241
  msgid ""
242
  "You have enable caching support but Borlabs Cache is not active on your site!"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:669
246
  msgid "Disable Borlabs Cache Support"
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:677
250
  msgid ""
251
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
252
  msgstr ""
253
 
254
+ #: adrotate-output.php:677
255
  msgid "Enable Fragment Caching"
256
  msgstr ""
257
 
258
+ #: adrotate-output.php:683
259
  msgid "Your AdRotate Banner folder is not writable or does not exist."
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:683
263
  #, fuzzy
264
  msgid "Set up your banner folder"
265
  msgstr "バナー画像"
266
 
267
+ #: adrotate-output.php:703
268
  msgid "your attention:"
269
  msgstr ""
270
 
271
+ #: adrotate-output.php:724 adrotate.php:447
272
  #: dashboard/publisher/schedules-main.php:13
273
  #, fuzzy
274
  msgid "Get AdRotate Pro"
275
  msgstr "AdRotate Blog"
276
 
277
+ #: adrotate-output.php:725
278
  msgid ""
279
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
280
  "Schedules and more..."
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:725
284
  #, php-format
285
  msgid ""
286
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:725
290
  #, fuzzy
291
  msgid "Thank you for your support!"
292
  msgstr "データベースのバックアップを取りましたか?"
293
 
294
+ #: adrotate-output.php:793
295
  msgid ""
296
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
297
  "menu. If you need help getting started take a look at the"
298
  msgstr ""
299
 
300
+ #: adrotate-output.php:793
301
  msgid "manuals"
302
  msgstr "マニュアル(英語サイト)"
303
 
304
+ #: adrotate-output.php:793 adrotate-output.php:893
305
  msgid "and"
306
  msgstr ""
307
 
308
+ #: adrotate-output.php:793
309
  #, fuzzy
310
  msgid "forums"
311
  msgstr "フォーラム"
312
 
313
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  #, fuzzy
315
  msgid "Help AdRotate Grow"
316
  msgstr "AdRotate Blog"
317
 
318
+ #: adrotate-output.php:886 adrotate.php:152
319
  #, fuzzy
320
  msgid "AdRotate Professional"
321
  msgstr "AdRotate Blog"
322
 
323
+ #: adrotate-output.php:893
324
  msgid ""
325
  "Many users only think to review AdRotate when something goes wrong while "
326
  "thousands of people happily use AdRotate."
327
  msgstr ""
328
 
329
+ #: adrotate-output.php:893
330
  msgid "If you find AdRotate useful please leave your"
331
  msgstr ""
332
 
333
+ #: adrotate-output.php:893
334
  msgid "rating"
335
  msgstr ""
336
 
337
+ #: adrotate-output.php:893
338
  #, fuzzy
339
  msgid "review"
340
  msgstr "全般レポートを見れる権限"
341
 
342
+ #: adrotate-output.php:893
343
  msgid "on WordPress.org to help AdRotate grow in a positive way"
344
  msgstr ""
345
 
346
+ #: adrotate-output.php:894
347
  msgid ""
348
  "Get more advanced features like Geo Targeting, scheduling and much more with "
349
  "AdRotate Pro."
350
  msgstr ""
351
 
352
+ #: adrotate-output.php:894
353
  msgid "Includes premium support and free updates!"
354
  msgstr ""
355
 
356
+ #: adrotate-output.php:894
357
  #, fuzzy
358
  msgid "Get started today"
359
  msgstr "実行"
431
  msgid "Not found"
432
  msgstr "ファイルが見つかりません。"
433
 
434
+ #: adrotate-widget.php:134
435
  msgid "Title (optional):"
436
  msgstr "タイトル(オプション):"
437
 
438
+ #: adrotate-widget.php:137
439
  msgid "HTML will be stripped out."
440
  msgstr "HTMLタグは取り除かれます。"
441
 
442
+ #: adrotate-widget.php:140
443
  #, fuzzy
444
  msgid "Description (optional):"
445
  msgstr "タイトル(オプション):"
446
 
447
+ #: adrotate-widget.php:143
448
  #, fuzzy
449
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
450
  msgstr "HTMLタグは取り除かれます。"
451
 
452
+ #: adrotate-widget.php:146
453
  msgid "Type:"
454
  msgstr "タイプ:"
455
 
456
+ #: adrotate-widget.php:148
457
  msgid "Advert - Use Advert ID"
458
  msgstr ""
459
 
460
+ #: adrotate-widget.php:149
461
  msgid "Group - Use group ID"
462
  msgstr ""
463
 
464
+ #: adrotate-widget.php:152
465
  msgid "Choose what you want to use this widget for"
466
  msgstr "このウィジェットに使いたい物を選んで下さい。"
467
 
468
+ #: adrotate-widget.php:155
469
  #, fuzzy
470
  msgid "ID:"
471
  msgstr "広告ブロック - ブロックIDを使ってください。"
472
 
473
+ #: adrotate-widget.php:158
474
  msgid "Fill in the ID of the type you want to display!"
475
  msgstr "表示したいタイプのIDを入力してください!"
476
 
651
 
652
  #: dashboard/adrotatepro.php:44
653
  msgid ""
654
+ "When you activate your AdRotate Pro license you can use the more personal "
655
  "email support. No more queueing up in the forums. AdRotate support takes "
656
+ "priority over the forums and is checked once or twice a day. Get a solution "
657
+ "(usually) within two business days."
658
  msgstr ""
659
 
660
  #: dashboard/adrotatepro.php:48
700
  msgstr ""
701
 
702
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
703
+ #: dashboard/info.php:90
704
  #, fuzzy
705
  msgid "Buy AdRotate Professional"
706
  msgstr "AdRotate Blog"
707
 
708
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
709
  msgid "Single License"
710
  msgstr ""
711
 
712
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
713
  msgid "One WordPress installation."
714
  msgstr ""
715
 
717
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
718
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
719
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
720
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
721
+ #: dashboard/info.php:97
722
  #, fuzzy
723
  msgid "Buy now"
724
  msgstr "継続する場合は対応して下さい。"
725
 
726
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
727
+ #: dashboard/info.php:95
728
  msgid "Duo License"
729
  msgstr ""
730
 
731
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
732
  msgid "Two WordPress installations."
733
  msgstr ""
734
 
735
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
736
+ #: dashboard/info.php:96
737
  msgid "Multi License"
738
  msgstr ""
739
 
740
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
741
  msgid "Five WordPress installations."
742
  msgstr ""
743
 
744
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
745
+ #: dashboard/info.php:97
746
  #, fuzzy
747
  msgid "Developer License"
748
  msgstr "開発者向けデバッグ"
749
 
750
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
751
  msgid "Unlimited WordPress installations and/or networks."
752
  msgstr ""
753
 
754
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
755
+ #: dashboard/info.php:98
756
  msgid "Compare licenses"
757
  msgstr ""
758
 
759
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
760
  msgid "Not sure which license is for you? Compare them..."
761
  msgstr ""
762
 
763
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
764
  #, fuzzy
765
  msgid "All Licenses"
766
  msgstr "すべての広告の再評価"
841
  msgid "Arnan de Gans News & Updates"
842
  msgstr ""
843
 
844
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
845
  msgid "Sponsored offers"
846
  msgstr ""
847
 
848
+ #: dashboard/info.php:79
849
  msgid ""
850
  "These are affiliate banners, clicking them costs you nothing but it helps me "
851
  "and AdRotate a lot!"
852
  msgstr ""
853
 
854
+ #: dashboard/info.php:102
855
+ msgid "Join the Media.net advertising network"
856
+ msgstr ""
857
+
858
  #: dashboard/publisher/adverts-disabled.php:15
859
  msgid "Disabled Adverts"
860
  msgstr ""
2548
  msgstr ""
2549
 
2550
  #: dashboard/settings/geotargeting.php:32
2551
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2552
  msgstr ""
2553
 
2554
  #: dashboard/settings/geotargeting.php:33
2570
  msgstr ""
2571
 
2572
  #: dashboard/settings/geotargeting.php:36
2573
+ msgid "10000 free lookups per month, requires account."
2574
  msgstr ""
2575
 
2576
  #: dashboard/settings/geotargeting.php:38
2577
+ msgid ""
2578
+ "Suitable for small to medium sized websites with a free account - Paid "
2579
+ "options available."
2580
  msgstr ""
2581
 
2582
  #: dashboard/settings/geotargeting.php:40
2583
+ msgid "The most accurate geo targeting available."
 
 
2584
  msgstr ""
2585
 
2586
  #: dashboard/settings/geotargeting.php:42
3266
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3267
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
3268
 
3269
+ #, fuzzy
3270
+ #~ msgid "Useful Links"
3271
+ #~ msgstr "役に立つ情報"
3272
+
3273
+ #, fuzzy
3274
+ #~ msgid "Getting Started With AdRotate"
3275
+ #~ msgstr ""
3276
+ #~ "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーな"
3277
+ #~ "どにはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さ"
3278
+ #~ "い。"
3279
+
3280
+ #, fuzzy
3281
+ #~ msgid "AdRotate manuals"
3282
+ #~ msgstr "AdRotate Blog"
3283
+
3284
+ #, fuzzy
3285
+ #~ msgid "AdRotate Support Forum"
3286
+ #~ msgstr "AdRotate Blog"
3287
+
3288
  #, fuzzy
3289
  #~ msgid "Push notifications to your smartphone."
3290
  #~ msgstr "この通知は、あなたのウェブサイトからあなたに送られています。"
language/adrotate-pl_PL.mo CHANGED
Binary file
language/adrotate-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:28+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:28+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
9
  "Language: pl_PL\n"
@@ -20,110 +20,110 @@ msgstr ""
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: adrotate-functions.php:730
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
- #: adrotate-functions.php:733
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
- #: adrotate-functions.php:818
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:822
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
- #: adrotate-functions.php:826
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
- #: adrotate-functions.php:830
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
- #: adrotate-functions.php:834
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
- #: adrotate-functions.php:838
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
- #: adrotate-functions.php:842
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
- #: adrotate-functions.php:846
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
- #: adrotate-functions.php:850
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
- #: adrotate-functions.php:854
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
- #: adrotate-functions.php:858
73
  msgid ""
74
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
75
  "below."
76
  msgstr ""
77
 
78
- #: adrotate-functions.php:863
79
  msgid "Settings saved"
80
  msgstr "Ustawienia zapisane"
81
 
82
- #: adrotate-functions.php:867
83
  msgid "Database optimized"
84
  msgstr "Baza danych zoptymalizowana"
85
 
86
- #: adrotate-functions.php:871
87
  msgid "Database repaired"
88
  msgstr "Baza danych naprawiona"
89
 
90
- #: adrotate-functions.php:875
91
  msgid "Ads evaluated and statuses have been corrected where required"
92
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
93
 
94
- #: adrotate-functions.php:879
95
  #, fuzzy
96
  #| msgid "Clean-up Database"
97
  msgid "Cleanup complete"
98
  msgstr "Wyczyść bazę danych"
99
 
100
- #: adrotate-functions.php:884
101
  msgid "Action prohibited"
102
  msgstr "Czynność zabroniona."
103
 
104
- #: adrotate-functions.php:888
105
  msgid ""
106
  "The ad was saved but has an issue which might prevent it from working "
107
  "properly. Review the colored ad."
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:892
111
  msgid "No data found in selected time period"
112
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
113
 
114
- #: adrotate-functions.php:896
115
  msgid "Database can only be optimized or cleaned once every hour"
116
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
117
 
118
- #: adrotate-functions.php:900
119
  msgid "Form can not be (partially) empty!"
120
  msgstr ""
121
 
122
- #: adrotate-functions.php:904
123
  msgid "No ads found."
124
  msgstr ""
125
 
126
- #: adrotate-functions.php:908
127
  msgid "Unexpected error"
128
  msgstr ""
129
 
@@ -131,11 +131,11 @@ msgstr ""
131
  msgid "AdRotate Advertiser"
132
  msgstr ""
133
 
134
- #: adrotate-output.php:557
135
  msgid "Oh no! Something went wrong!"
136
  msgstr "Uwaga ! Coś poszło nie tak !"
137
 
138
- #: adrotate-output.php:558
139
  msgid ""
140
  "WordPress was unable to verify the authenticity of the url you have clicked. "
141
  "Verify if the url used is valid or log in via your browser."
@@ -143,7 +143,7 @@ msgstr ""
143
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
144
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
145
 
146
- #: adrotate-output.php:559
147
  msgid ""
148
  "If you have received the url you want to visit via email, you are being "
149
  "tricked!"
@@ -151,11 +151,11 @@ msgstr ""
151
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
152
  "zostałeś oszukany. "
153
 
154
- #: adrotate-output.php:560
155
  msgid "Contact support if the issue persists:"
156
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
157
 
158
- #: adrotate-output.php:575
159
  msgid ""
160
  "Error, Ad is not available at this time due to schedule/geolocation "
161
  "restrictions or does not exist!"
@@ -163,7 +163,7 @@ msgstr ""
163
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
164
  "harmonogramie lub geolokalizacji lub może nie istnieć."
165
 
166
- #: adrotate-output.php:577
167
  msgid ""
168
  "Error, Ad is not available at this time due to schedule/geolocation "
169
  "restrictions!"
@@ -171,7 +171,7 @@ msgstr ""
171
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
172
  "harmonogramie lub geolokalizacji."
173
 
174
- #: adrotate-output.php:584 adrotate-output.php:586
175
  msgid ""
176
  "Either there are no banners, they are disabled or none qualified for this "
177
  "location!"
@@ -179,19 +179,19 @@ msgstr ""
179
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
180
  "lokalizacji!"
181
 
182
- #: adrotate-output.php:592
183
  msgid "Error, no Ad ID set! Check your syntax!"
184
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
185
 
186
- #: adrotate-output.php:598
187
  msgid "Error, no group ID set! Check your syntax!"
188
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
189
 
190
- #: adrotate-output.php:603
191
  msgid "Error, group does not exist! Check your syntax!"
192
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
193
 
194
- #: adrotate-output.php:609
195
  msgid ""
196
  "There was an error locating the database tables for AdRotate. Please "
197
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -199,16 +199,16 @@ msgstr ""
199
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
200
  "AdRote na panelu wtyczek."
201
 
202
- #: adrotate-output.php:609
203
  msgid "If this does not solve the issue please seek support at"
204
  msgstr ""
205
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
206
 
207
- #: adrotate-output.php:615
208
  msgid "An unknown error occured."
209
  msgstr "Pojawił się nieznany błąd."
210
 
211
- #: adrotate-output.php:635
212
  #, php-format
213
  msgid "One advert is expired."
214
  msgid_plural "%1$s adverts expired!"
@@ -216,11 +216,11 @@ msgstr[0] ""
216
  msgstr[1] ""
217
  msgstr[2] ""
218
 
219
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
220
  msgid "Check adverts"
221
  msgstr ""
222
 
223
- #: adrotate-output.php:638
224
  #, php-format
225
  msgid "One advert expires soon."
226
  msgid_plural "%1$s adverts are almost expiring!"
@@ -228,7 +228,7 @@ msgstr[0] ""
228
  msgstr[1] ""
229
  msgstr[2] ""
230
 
231
- #: adrotate-output.php:642
232
  #, php-format
233
  msgid "One advert with configuration errors."
234
  msgid_plural "%1$s adverts have configuration errors!"
@@ -236,188 +236,160 @@ msgstr[0] ""
236
  msgstr[1] ""
237
  msgstr[2] ""
238
 
239
- #: adrotate-output.php:652
240
  msgid ""
241
  "You have enabled caching support but W3 Total Cache is not active on your "
242
  "site!"
243
  msgstr ""
244
 
245
- #: adrotate-output.php:652
246
  #, fuzzy
247
  #| msgid "W3 Total Caching"
248
  msgid "Disable W3 Total Cache Support"
249
  msgstr "W3 Total Caching"
250
 
251
- #: adrotate-output.php:655
252
  msgid ""
253
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
254
  "not set."
255
  msgstr ""
256
 
257
- #: adrotate-output.php:655
258
  msgid "How to configure W3 Total Cache"
259
  msgstr ""
260
 
261
- #: adrotate-output.php:664
262
  msgid ""
263
  "You have enable caching support but Borlabs Cache is not active on your site!"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:664
267
  msgid "Disable Borlabs Cache Support"
268
  msgstr ""
269
 
270
- #: adrotate-output.php:672
271
  msgid ""
272
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:672
276
  msgid "Enable Fragment Caching"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:678
280
  msgid "Your AdRotate Banner folder is not writable or does not exist."
281
  msgstr ""
282
 
283
- #: adrotate-output.php:678
284
  #, fuzzy
285
  #| msgid "Banner folder:"
286
  msgid "Set up your banner folder"
287
  msgstr "Folder banerów:"
288
 
289
- #: adrotate-output.php:698
290
  msgid "one issue that requires"
291
  msgid_plural "several issues that require"
292
  msgstr[0] ""
293
  msgstr[1] ""
294
  msgstr[2] ""
295
 
296
- #: adrotate-output.php:698
297
  msgid "your attention:"
298
  msgstr ""
299
 
300
- #: adrotate-output.php:719 adrotate.php:447
301
  #: dashboard/publisher/schedules-main.php:13
302
  #, fuzzy
303
  #| msgid "AdRotate Pro"
304
  msgid "Get AdRotate Pro"
305
  msgstr "AdRotate Pro"
306
 
307
- #: adrotate-output.php:720
308
  msgid ""
309
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
310
  "Schedules and more..."
311
  msgstr ""
312
 
313
- #: adrotate-output.php:720
314
  #, php-format
315
  msgid ""
316
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
317
  msgstr ""
318
 
319
- #: adrotate-output.php:720
320
  #, fuzzy
321
  msgid "Thank you for your support!"
322
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
323
 
324
- #: adrotate-output.php:749
325
  msgid "one plugin"
326
  msgid_plural "several plugins"
327
  msgstr[0] ""
328
  msgstr[1] ""
329
  msgstr[2] ""
330
 
331
- #: adrotate-output.php:837
332
  msgid ""
333
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
334
  "menu. If you need help getting started take a look at the"
335
  msgstr ""
336
 
337
- #: adrotate-output.php:837
338
  msgid "manuals"
339
  msgstr "instrukcje"
340
 
341
- #: adrotate-output.php:837 adrotate-output.php:921
342
  msgid "and"
343
  msgstr ""
344
 
345
- #: adrotate-output.php:837
346
  msgid "forums"
347
  msgstr ""
348
 
349
- #: adrotate-output.php:870
350
- #, fuzzy
351
- msgid "Useful Links"
352
- msgstr "Użyteczne odnośniki."
353
-
354
- #: adrotate-output.php:871
355
- msgid "Useful links to learn more about AdRotate"
356
- msgstr ""
357
-
358
- #: adrotate-output.php:873
359
- msgid "AdRotate website"
360
- msgstr ""
361
-
362
- #: adrotate-output.php:874
363
- #, fuzzy
364
- msgid "Getting Started With AdRotate"
365
- msgstr "Więcej ustawień z AdRotate Pro"
366
-
367
- #: adrotate-output.php:875
368
- #, fuzzy
369
- msgid "AdRotate manuals"
370
- msgstr "Informacja AdRotate "
371
-
372
- #: adrotate-output.php:876
373
- #, fuzzy
374
- msgid "AdRotate Support Forum"
375
- msgstr "Sklep AdRotate"
376
-
377
- #: adrotate-output.php:913
378
  #, fuzzy
379
  msgid "Help AdRotate Grow"
380
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
381
 
382
- #: adrotate-output.php:914 adrotate.php:152
383
  msgid "AdRotate Professional"
384
  msgstr "AdRotate Professional"
385
 
386
- #: adrotate-output.php:921
387
  msgid ""
388
  "Many users only think to review AdRotate when something goes wrong while "
389
  "thousands of people happily use AdRotate."
390
  msgstr ""
391
 
392
- #: adrotate-output.php:921
393
  msgid "If you find AdRotate useful please leave your"
394
  msgstr ""
395
 
396
- #: adrotate-output.php:921
397
  msgid "rating"
398
  msgstr ""
399
 
400
- #: adrotate-output.php:921
401
  #, fuzzy
402
  msgid "review"
403
  msgstr ""
404
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
405
 
406
- #: adrotate-output.php:921
407
  msgid "on WordPress.org to help AdRotate grow in a positive way"
408
  msgstr ""
409
 
410
- #: adrotate-output.php:922
411
  msgid ""
412
  "Get more advanced features like Geo Targeting, scheduling and much more with "
413
  "AdRotate Pro."
414
  msgstr ""
415
 
416
- #: adrotate-output.php:922
417
  msgid "Includes premium support and free updates!"
418
  msgstr ""
419
 
420
- #: adrotate-output.php:922
421
  #, fuzzy
422
  msgid "Get started today"
423
  msgstr "Więcej ustawień z AdRotate Pro"
@@ -494,43 +466,43 @@ msgstr "Brak danych !"
494
  msgid "Not found"
495
  msgstr "Nie odnaleziono pliku"
496
 
497
- #: adrotate-widget.php:132
498
  msgid "Title (optional):"
499
  msgstr "Tytuł (opcjonalnie):"
500
 
501
- #: adrotate-widget.php:135
502
  msgid "HTML will be stripped out."
503
  msgstr "Znaczniki HTML będą wyrzucane."
504
 
505
- #: adrotate-widget.php:138
506
  msgid "Description (optional):"
507
  msgstr "Opis (opcjonalny):"
508
 
509
- #: adrotate-widget.php:141
510
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
511
  msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
512
 
513
- #: adrotate-widget.php:144
514
  msgid "Type:"
515
  msgstr "Typ:"
516
 
517
- #: adrotate-widget.php:146
518
  msgid "Advert - Use Advert ID"
519
  msgstr ""
520
 
521
- #: adrotate-widget.php:147
522
  msgid "Group - Use group ID"
523
  msgstr ""
524
 
525
- #: adrotate-widget.php:150
526
  msgid "Choose what you want to use this widget for"
527
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
528
 
529
- #: adrotate-widget.php:153
530
  msgid "ID:"
531
  msgstr "ID:"
532
 
533
- #: adrotate-widget.php:156
534
  msgid "Fill in the ID of the type you want to display!"
535
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
536
 
@@ -716,10 +688,10 @@ msgstr "Zakup Wsparcie premium na cały rok."
716
  #| "support. AdRotate premium support which takes priority over the Forums "
717
  #| "and even email. Get a solution (usually) within a day."
718
  msgid ""
719
- "When you activate your AdRotate Pro license you can use fast and personal "
720
  "email support. No more queueing up in the forums. AdRotate support takes "
721
- "priority over the forums and is checked much more often than the forum. Get "
722
- "a solution (usually) within two business days."
723
  msgstr ""
724
  "Kiedy aktywujesz licencje AdRotate Pro zyskuejsz pierwszeństwo przy "
725
  "zgłaszaniu problemów do systemy wsparcia technicznego. Twoje zgłoszenia maja "
@@ -776,15 +748,15 @@ msgstr ""
776
  "niczego nie przeoczysz !!"
777
 
778
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
779
- #: dashboard/info.php:79
780
  msgid "Buy AdRotate Professional"
781
  msgstr "Kup AdRotate Pro"
782
 
783
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
784
  msgid "Single License"
785
  msgstr ""
786
 
787
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
788
  msgid "One WordPress installation."
789
  msgstr ""
790
 
@@ -792,51 +764,51 @@ msgstr ""
792
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
793
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
794
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
795
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
796
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
797
  #, fuzzy
798
  msgid "Buy now"
799
  msgstr "Kup"
800
 
801
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
802
- #: dashboard/info.php:84
803
  msgid "Duo License"
804
  msgstr "Podwójna licencja"
805
 
806
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
807
  msgid "Two WordPress installations."
808
  msgstr ""
809
 
810
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
811
- #: dashboard/info.php:85
812
  msgid "Multi License"
813
  msgstr "Multi licencja"
814
 
815
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
816
  #, fuzzy
817
  #| msgid "For one WordPress installation."
818
  msgid "Five WordPress installations."
819
  msgstr "dla jednej instalcji Wordpressa"
820
 
821
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
822
- #: dashboard/info.php:86
823
  msgid "Developer License"
824
  msgstr "Licencja Programisty"
825
 
826
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
827
  msgid "Unlimited WordPress installations and/or networks."
828
  msgstr ""
829
 
830
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
831
- #: dashboard/info.php:87
832
  msgid "Compare licenses"
833
  msgstr "Porównaj licencje."
834
 
835
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
836
  msgid "Not sure which license is for you? Compare them..."
837
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
838
 
839
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
840
  msgid "All Licenses"
841
  msgstr "Wszystkie licencje"
842
 
@@ -907,24 +879,20 @@ msgstr ""
907
  msgid "Arnan de Gans News & Updates"
908
  msgstr ""
909
 
910
- #: dashboard/info.php:91
911
- msgid "AJdG Solutions Premium Support Group"
912
- msgstr ""
913
-
914
- #: dashboard/info.php:108
915
- msgid "Join the Media.net advertising network"
916
- msgstr ""
917
-
918
- #: dashboard/info.php:123
919
  msgid "Sponsored offers"
920
  msgstr ""
921
 
922
- #: dashboard/info.php:129
923
  msgid ""
924
  "These are affiliate banners, clicking them costs you nothing but it helps me "
925
  "and AdRotate a lot!"
926
  msgstr ""
927
 
 
 
 
 
928
  #: dashboard/publisher/adverts-disabled.php:15
929
  msgid "Disabled Adverts"
930
  msgstr ""
@@ -2579,7 +2547,7 @@ msgid "Which Geo Service"
2579
  msgstr ""
2580
 
2581
  #: dashboard/settings/geotargeting.php:32
2582
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2583
  msgstr ""
2584
 
2585
  #: dashboard/settings/geotargeting.php:33
@@ -2601,17 +2569,17 @@ msgid "Suitable for small to medium websites."
2601
  msgstr ""
2602
 
2603
  #: dashboard/settings/geotargeting.php:36
2604
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2605
  msgstr ""
2606
 
2607
  #: dashboard/settings/geotargeting.php:38
2608
- msgid "Suitable for medium sized websites."
 
 
2609
  msgstr ""
2610
 
2611
  #: dashboard/settings/geotargeting.php:40
2612
- msgid ""
2613
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2614
- "lookups."
2615
  msgstr ""
2616
 
2617
  #: dashboard/settings/geotargeting.php:42
@@ -3299,6 +3267,22 @@ msgid ""
3299
  msgstr ""
3300
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
3301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3302
  #~ msgid "Push notifications to your smartphone."
3303
  #~ msgstr "Wyślij powiadomienia na swój telefon."
3304
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
9
  "Language: pl_PL\n"
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: adrotate-functions.php:720
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:723
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-functions.php:808
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:812
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
+ #: adrotate-functions.php:816
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
+ #: adrotate-functions.php:820
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
+ #: adrotate-functions.php:824
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
+ #: adrotate-functions.php:828
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
+ #: adrotate-functions.php:832
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
+ #: adrotate-functions.php:836
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
+ #: adrotate-functions.php:840
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
+ #: adrotate-functions.php:844
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
+ #: adrotate-functions.php:848
73
  msgid ""
74
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
75
  "below."
76
  msgstr ""
77
 
78
+ #: adrotate-functions.php:853
79
  msgid "Settings saved"
80
  msgstr "Ustawienia zapisane"
81
 
82
+ #: adrotate-functions.php:857
83
  msgid "Database optimized"
84
  msgstr "Baza danych zoptymalizowana"
85
 
86
+ #: adrotate-functions.php:861
87
  msgid "Database repaired"
88
  msgstr "Baza danych naprawiona"
89
 
90
+ #: adrotate-functions.php:865
91
  msgid "Ads evaluated and statuses have been corrected where required"
92
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
93
 
94
+ #: adrotate-functions.php:869
95
  #, fuzzy
96
  #| msgid "Clean-up Database"
97
  msgid "Cleanup complete"
98
  msgstr "Wyczyść bazę danych"
99
 
100
+ #: adrotate-functions.php:874
101
  msgid "Action prohibited"
102
  msgstr "Czynność zabroniona."
103
 
104
+ #: adrotate-functions.php:878
105
  msgid ""
106
  "The ad was saved but has an issue which might prevent it from working "
107
  "properly. Review the colored ad."
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:882
111
  msgid "No data found in selected time period"
112
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
113
 
114
+ #: adrotate-functions.php:886
115
  msgid "Database can only be optimized or cleaned once every hour"
116
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
117
 
118
+ #: adrotate-functions.php:890
119
  msgid "Form can not be (partially) empty!"
120
  msgstr ""
121
 
122
+ #: adrotate-functions.php:894
123
  msgid "No ads found."
124
  msgstr ""
125
 
126
+ #: adrotate-functions.php:898
127
  msgid "Unexpected error"
128
  msgstr ""
129
 
131
  msgid "AdRotate Advertiser"
132
  msgstr ""
133
 
134
+ #: adrotate-output.php:572
135
  msgid "Oh no! Something went wrong!"
136
  msgstr "Uwaga ! Coś poszło nie tak !"
137
 
138
+ #: adrotate-output.php:573
139
  msgid ""
140
  "WordPress was unable to verify the authenticity of the url you have clicked. "
141
  "Verify if the url used is valid or log in via your browser."
143
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
144
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
145
 
146
+ #: adrotate-output.php:574
147
  msgid ""
148
  "If you have received the url you want to visit via email, you are being "
149
  "tricked!"
151
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
152
  "zostałeś oszukany. "
153
 
154
+ #: adrotate-output.php:575
155
  msgid "Contact support if the issue persists:"
156
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
157
 
158
+ #: adrotate-output.php:590
159
  msgid ""
160
  "Error, Ad is not available at this time due to schedule/geolocation "
161
  "restrictions or does not exist!"
163
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
164
  "harmonogramie lub geolokalizacji lub może nie istnieć."
165
 
166
+ #: adrotate-output.php:592
167
  msgid ""
168
  "Error, Ad is not available at this time due to schedule/geolocation "
169
  "restrictions!"
171
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
172
  "harmonogramie lub geolokalizacji."
173
 
174
+ #: adrotate-output.php:599 adrotate-output.php:601
175
  msgid ""
176
  "Either there are no banners, they are disabled or none qualified for this "
177
  "location!"
179
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
180
  "lokalizacji!"
181
 
182
+ #: adrotate-output.php:607
183
  msgid "Error, no Ad ID set! Check your syntax!"
184
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
185
 
186
+ #: adrotate-output.php:613
187
  msgid "Error, no group ID set! Check your syntax!"
188
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
189
 
190
+ #: adrotate-output.php:618
191
  msgid "Error, group does not exist! Check your syntax!"
192
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
193
 
194
+ #: adrotate-output.php:624
195
  msgid ""
196
  "There was an error locating the database tables for AdRotate. Please "
197
  "deactivate and re-activate AdRotate from the plugin page!!"
199
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
200
  "AdRote na panelu wtyczek."
201
 
202
+ #: adrotate-output.php:624
203
  msgid "If this does not solve the issue please seek support at"
204
  msgstr ""
205
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
206
 
207
+ #: adrotate-output.php:630
208
  msgid "An unknown error occured."
209
  msgstr "Pojawił się nieznany błąd."
210
 
211
+ #: adrotate-output.php:650
212
  #, php-format
213
  msgid "One advert is expired."
214
  msgid_plural "%1$s adverts expired!"
216
  msgstr[1] ""
217
  msgstr[2] ""
218
 
219
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
220
  msgid "Check adverts"
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:653
224
  #, php-format
225
  msgid "One advert expires soon."
226
  msgid_plural "%1$s adverts are almost expiring!"
228
  msgstr[1] ""
229
  msgstr[2] ""
230
 
231
+ #: adrotate-output.php:657
232
  #, php-format
233
  msgid "One advert with configuration errors."
234
  msgid_plural "%1$s adverts have configuration errors!"
236
  msgstr[1] ""
237
  msgstr[2] ""
238
 
239
+ #: adrotate-output.php:662
240
  msgid ""
241
  "You have enabled caching support but W3 Total Cache is not active on your "
242
  "site!"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:662
246
  #, fuzzy
247
  #| msgid "W3 Total Caching"
248
  msgid "Disable W3 Total Cache Support"
249
  msgstr "W3 Total Caching"
250
 
251
+ #: adrotate-output.php:665
252
  msgid ""
253
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
254
  "not set."
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:665
258
  msgid "How to configure W3 Total Cache"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:669
262
  msgid ""
263
  "You have enable caching support but Borlabs Cache is not active on your site!"
264
  msgstr ""
265
 
266
+ #: adrotate-output.php:669
267
  msgid "Disable Borlabs Cache Support"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:677
271
  msgid ""
272
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:677
276
  msgid "Enable Fragment Caching"
277
  msgstr ""
278
 
279
+ #: adrotate-output.php:683
280
  msgid "Your AdRotate Banner folder is not writable or does not exist."
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:683
284
  #, fuzzy
285
  #| msgid "Banner folder:"
286
  msgid "Set up your banner folder"
287
  msgstr "Folder banerów:"
288
 
289
+ #: adrotate-output.php:703
290
  msgid "one issue that requires"
291
  msgid_plural "several issues that require"
292
  msgstr[0] ""
293
  msgstr[1] ""
294
  msgstr[2] ""
295
 
296
+ #: adrotate-output.php:703
297
  msgid "your attention:"
298
  msgstr ""
299
 
300
+ #: adrotate-output.php:724 adrotate.php:447
301
  #: dashboard/publisher/schedules-main.php:13
302
  #, fuzzy
303
  #| msgid "AdRotate Pro"
304
  msgid "Get AdRotate Pro"
305
  msgstr "AdRotate Pro"
306
 
307
+ #: adrotate-output.php:725
308
  msgid ""
309
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
310
  "Schedules and more..."
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:725
314
  #, php-format
315
  msgid ""
316
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
317
  msgstr ""
318
 
319
+ #: adrotate-output.php:725
320
  #, fuzzy
321
  msgid "Thank you for your support!"
322
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
323
 
324
+ #: adrotate-output.php:754
325
  msgid "one plugin"
326
  msgid_plural "several plugins"
327
  msgstr[0] ""
328
  msgstr[1] ""
329
  msgstr[2] ""
330
 
331
+ #: adrotate-output.php:793
332
  msgid ""
333
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
334
  "menu. If you need help getting started take a look at the"
335
  msgstr ""
336
 
337
+ #: adrotate-output.php:793
338
  msgid "manuals"
339
  msgstr "instrukcje"
340
 
341
+ #: adrotate-output.php:793 adrotate-output.php:893
342
  msgid "and"
343
  msgstr ""
344
 
345
+ #: adrotate-output.php:793
346
  msgid "forums"
347
  msgstr ""
348
 
349
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  #, fuzzy
351
  msgid "Help AdRotate Grow"
352
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
353
 
354
+ #: adrotate-output.php:886 adrotate.php:152
355
  msgid "AdRotate Professional"
356
  msgstr "AdRotate Professional"
357
 
358
+ #: adrotate-output.php:893
359
  msgid ""
360
  "Many users only think to review AdRotate when something goes wrong while "
361
  "thousands of people happily use AdRotate."
362
  msgstr ""
363
 
364
+ #: adrotate-output.php:893
365
  msgid "If you find AdRotate useful please leave your"
366
  msgstr ""
367
 
368
+ #: adrotate-output.php:893
369
  msgid "rating"
370
  msgstr ""
371
 
372
+ #: adrotate-output.php:893
373
  #, fuzzy
374
  msgid "review"
375
  msgstr ""
376
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
377
 
378
+ #: adrotate-output.php:893
379
  msgid "on WordPress.org to help AdRotate grow in a positive way"
380
  msgstr ""
381
 
382
+ #: adrotate-output.php:894
383
  msgid ""
384
  "Get more advanced features like Geo Targeting, scheduling and much more with "
385
  "AdRotate Pro."
386
  msgstr ""
387
 
388
+ #: adrotate-output.php:894
389
  msgid "Includes premium support and free updates!"
390
  msgstr ""
391
 
392
+ #: adrotate-output.php:894
393
  #, fuzzy
394
  msgid "Get started today"
395
  msgstr "Więcej ustawień z AdRotate Pro"
466
  msgid "Not found"
467
  msgstr "Nie odnaleziono pliku"
468
 
469
+ #: adrotate-widget.php:134
470
  msgid "Title (optional):"
471
  msgstr "Tytuł (opcjonalnie):"
472
 
473
+ #: adrotate-widget.php:137
474
  msgid "HTML will be stripped out."
475
  msgstr "Znaczniki HTML będą wyrzucane."
476
 
477
+ #: adrotate-widget.php:140
478
  msgid "Description (optional):"
479
  msgstr "Opis (opcjonalny):"
480
 
481
+ #: adrotate-widget.php:143
482
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
483
  msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
484
 
485
+ #: adrotate-widget.php:146
486
  msgid "Type:"
487
  msgstr "Typ:"
488
 
489
+ #: adrotate-widget.php:148
490
  msgid "Advert - Use Advert ID"
491
  msgstr ""
492
 
493
+ #: adrotate-widget.php:149
494
  msgid "Group - Use group ID"
495
  msgstr ""
496
 
497
+ #: adrotate-widget.php:152
498
  msgid "Choose what you want to use this widget for"
499
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
500
 
501
+ #: adrotate-widget.php:155
502
  msgid "ID:"
503
  msgstr "ID:"
504
 
505
+ #: adrotate-widget.php:158
506
  msgid "Fill in the ID of the type you want to display!"
507
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
508
 
688
  #| "support. AdRotate premium support which takes priority over the Forums "
689
  #| "and even email. Get a solution (usually) within a day."
690
  msgid ""
691
+ "When you activate your AdRotate Pro license you can use the more personal "
692
  "email support. No more queueing up in the forums. AdRotate support takes "
693
+ "priority over the forums and is checked once or twice a day. Get a solution "
694
+ "(usually) within two business days."
695
  msgstr ""
696
  "Kiedy aktywujesz licencje AdRotate Pro zyskuejsz pierwszeństwo przy "
697
  "zgłaszaniu problemów do systemy wsparcia technicznego. Twoje zgłoszenia maja "
748
  "niczego nie przeoczysz !!"
749
 
750
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
751
+ #: dashboard/info.php:90
752
  msgid "Buy AdRotate Professional"
753
  msgstr "Kup AdRotate Pro"
754
 
755
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
756
  msgid "Single License"
757
  msgstr ""
758
 
759
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
760
  msgid "One WordPress installation."
761
  msgstr ""
762
 
764
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
765
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
766
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
767
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
768
+ #: dashboard/info.php:97
769
  #, fuzzy
770
  msgid "Buy now"
771
  msgstr "Kup"
772
 
773
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
774
+ #: dashboard/info.php:95
775
  msgid "Duo License"
776
  msgstr "Podwójna licencja"
777
 
778
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
779
  msgid "Two WordPress installations."
780
  msgstr ""
781
 
782
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
783
+ #: dashboard/info.php:96
784
  msgid "Multi License"
785
  msgstr "Multi licencja"
786
 
787
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
788
  #, fuzzy
789
  #| msgid "For one WordPress installation."
790
  msgid "Five WordPress installations."
791
  msgstr "dla jednej instalcji Wordpressa"
792
 
793
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
794
+ #: dashboard/info.php:97
795
  msgid "Developer License"
796
  msgstr "Licencja Programisty"
797
 
798
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
799
  msgid "Unlimited WordPress installations and/or networks."
800
  msgstr ""
801
 
802
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
803
+ #: dashboard/info.php:98
804
  msgid "Compare licenses"
805
  msgstr "Porównaj licencje."
806
 
807
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
808
  msgid "Not sure which license is for you? Compare them..."
809
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
810
 
811
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
812
  msgid "All Licenses"
813
  msgstr "Wszystkie licencje"
814
 
879
  msgid "Arnan de Gans News & Updates"
880
  msgstr ""
881
 
882
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
883
  msgid "Sponsored offers"
884
  msgstr ""
885
 
886
+ #: dashboard/info.php:79
887
  msgid ""
888
  "These are affiliate banners, clicking them costs you nothing but it helps me "
889
  "and AdRotate a lot!"
890
  msgstr ""
891
 
892
+ #: dashboard/info.php:102
893
+ msgid "Join the Media.net advertising network"
894
+ msgstr ""
895
+
896
  #: dashboard/publisher/adverts-disabled.php:15
897
  msgid "Disabled Adverts"
898
  msgstr ""
2547
  msgstr ""
2548
 
2549
  #: dashboard/settings/geotargeting.php:32
2550
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2551
  msgstr ""
2552
 
2553
  #: dashboard/settings/geotargeting.php:33
2569
  msgstr ""
2570
 
2571
  #: dashboard/settings/geotargeting.php:36
2572
+ msgid "10000 free lookups per month, requires account."
2573
  msgstr ""
2574
 
2575
  #: dashboard/settings/geotargeting.php:38
2576
+ msgid ""
2577
+ "Suitable for small to medium sized websites with a free account - Paid "
2578
+ "options available."
2579
  msgstr ""
2580
 
2581
  #: dashboard/settings/geotargeting.php:40
2582
+ msgid "The most accurate geo targeting available."
 
 
2583
  msgstr ""
2584
 
2585
  #: dashboard/settings/geotargeting.php:42
3267
  msgstr ""
3268
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
3269
 
3270
+ #, fuzzy
3271
+ #~ msgid "Useful Links"
3272
+ #~ msgstr "Użyteczne odnośniki."
3273
+
3274
+ #, fuzzy
3275
+ #~ msgid "Getting Started With AdRotate"
3276
+ #~ msgstr "Więcej ustawień z AdRotate Pro"
3277
+
3278
+ #, fuzzy
3279
+ #~ msgid "AdRotate manuals"
3280
+ #~ msgstr "Informacja AdRotate "
3281
+
3282
+ #, fuzzy
3283
+ #~ msgid "AdRotate Support Forum"
3284
+ #~ msgstr "Sklep AdRotate"
3285
+
3286
  #~ msgid "Push notifications to your smartphone."
3287
  #~ msgstr "Wyślij powiadomienia na swój telefon."
3288
 
language/adrotate-sr_RS.mo CHANGED
Binary file
language/adrotate-sr_RS.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:28+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:28+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
@@ -16,110 +16,110 @@ msgstr ""
16
  "X-Generator: Poedit 2.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:730
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
- #: adrotate-functions.php:733
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
- #: adrotate-functions.php:818
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
- #: adrotate-functions.php:822
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:826
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
- #: adrotate-functions.php:830
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
- #: adrotate-functions.php:834
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
- #: adrotate-functions.php:838
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
- #: adrotate-functions.php:842
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
- #: adrotate-functions.php:846
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
- #: adrotate-functions.php:850
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
- #: adrotate-functions.php:854
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
- #: adrotate-functions.php:858
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
- #: adrotate-functions.php:863
75
  msgid "Settings saved"
76
  msgstr "Postavke sačuvane"
77
 
78
- #: adrotate-functions.php:867
79
  msgid "Database optimized"
80
  msgstr "Baza podataka optimizirana"
81
 
82
- #: adrotate-functions.php:871
83
  msgid "Database repaired"
84
  msgstr "Baza podataka popravljena"
85
 
86
- #: adrotate-functions.php:875
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
89
 
90
- #: adrotate-functions.php:879
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Čišćenje baze"
95
 
96
- #: adrotate-functions.php:884
97
  msgid "Action prohibited"
98
  msgstr "Zabranjeno delo"
99
 
100
- #: adrotate-functions.php:888
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
104
  msgstr ""
105
 
106
- #: adrotate-functions.php:892
107
  msgid "No data found in selected time period"
108
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
109
 
110
- #: adrotate-functions.php:896
111
  msgid "Database can only be optimized or cleaned once every hour"
112
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
113
 
114
- #: adrotate-functions.php:900
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
- #: adrotate-functions.php:904
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
- #: adrotate-functions.php:908
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
@@ -127,11 +127,11 @@ msgstr ""
127
  msgid "AdRotate Advertiser"
128
  msgstr ""
129
 
130
- #: adrotate-output.php:557
131
  msgid "Oh no! Something went wrong!"
132
  msgstr "O ne! Nešto nije kako treba!"
133
 
134
- #: adrotate-output.php:558
135
  msgid ""
136
  "WordPress was unable to verify the authenticity of the url you have clicked. "
137
  "Verify if the url used is valid or log in via your browser."
@@ -140,51 +140,51 @@ msgstr ""
140
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
141
  "pretraživača."
142
 
143
- #: adrotate-output.php:559
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
147
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
148
 
149
- #: adrotate-output.php:560
150
  msgid "Contact support if the issue persists:"
151
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
152
 
153
- #: adrotate-output.php:575
154
  #, fuzzy
155
  msgid ""
156
  "Error, Ad is not available at this time due to schedule/geolocation "
157
  "restrictions or does not exist!"
158
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
159
 
160
- #: adrotate-output.php:577
161
  #, fuzzy
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions!"
165
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
166
 
167
- #: adrotate-output.php:584 adrotate-output.php:586
168
  msgid ""
169
  "Either there are no banners, they are disabled or none qualified for this "
170
  "location!"
171
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
172
 
173
- #: adrotate-output.php:592
174
  msgid "Error, no Ad ID set! Check your syntax!"
175
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
176
 
177
- #: adrotate-output.php:598
178
  #, fuzzy
179
  msgid "Error, no group ID set! Check your syntax!"
180
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
181
 
182
- #: adrotate-output.php:603
183
  #, fuzzy
184
  msgid "Error, group does not exist! Check your syntax!"
185
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
186
 
187
- #: adrotate-output.php:609
188
  msgid ""
189
  "There was an error locating the database tables for AdRotate. Please "
190
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -192,185 +192,157 @@ msgstr ""
192
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
193
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
194
 
195
- #: adrotate-output.php:609
196
  msgid "If this does not solve the issue please seek support at"
197
  msgstr "Ako ne reši problem potražite podršku na"
198
 
199
- #: adrotate-output.php:615
200
  msgid "An unknown error occured."
201
  msgstr "Nepoznati error se ukazao."
202
 
203
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
204
  msgid "Check adverts"
205
  msgstr ""
206
 
207
- #: adrotate-output.php:652
208
  msgid ""
209
  "You have enabled caching support but W3 Total Cache is not active on your "
210
  "site!"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:652
214
  #, fuzzy
215
  #| msgid "W3 Total Caching"
216
  msgid "Disable W3 Total Cache Support"
217
  msgstr "W3 Total Caching"
218
 
219
- #: adrotate-output.php:655
220
  msgid ""
221
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
222
  "not set."
223
  msgstr ""
224
 
225
- #: adrotate-output.php:655
226
  msgid "How to configure W3 Total Cache"
227
  msgstr ""
228
 
229
- #: adrotate-output.php:664
230
  msgid ""
231
  "You have enable caching support but Borlabs Cache is not active on your site!"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:664
235
  msgid "Disable Borlabs Cache Support"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:672
239
  msgid ""
240
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
241
  msgstr ""
242
 
243
- #: adrotate-output.php:672
244
  msgid "Enable Fragment Caching"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:678
248
  msgid "Your AdRotate Banner folder is not writable or does not exist."
249
  msgstr ""
250
 
251
- #: adrotate-output.php:678
252
  #, fuzzy
253
  #| msgid "Where are your banner ads?"
254
  msgid "Set up your banner folder"
255
  msgstr "Gde su ti baneri ?"
256
 
257
- #: adrotate-output.php:698
258
  msgid "your attention:"
259
  msgstr ""
260
 
261
- #: adrotate-output.php:719 adrotate.php:447
262
  #: dashboard/publisher/schedules-main.php:13
263
  #, fuzzy
264
  #| msgid "AdRotate Pro"
265
  msgid "Get AdRotate Pro"
266
  msgstr "AdRotate Pro"
267
 
268
- #: adrotate-output.php:720
269
  msgid ""
270
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
271
  "Schedules and more..."
272
  msgstr ""
273
 
274
- #: adrotate-output.php:720
275
  #, php-format
276
  msgid ""
277
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
278
  msgstr ""
279
 
280
- #: adrotate-output.php:720
281
  msgid "Thank you for your support!"
282
  msgstr ""
283
 
284
- #: adrotate-output.php:837
285
  msgid ""
286
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
287
  "menu. If you need help getting started take a look at the"
288
  msgstr ""
289
 
290
- #: adrotate-output.php:837
291
  msgid "manuals"
292
  msgstr "priručnici"
293
 
294
- #: adrotate-output.php:837 adrotate-output.php:921
295
  msgid "and"
296
  msgstr ""
297
 
298
- #: adrotate-output.php:837
299
  msgid "forums"
300
  msgstr ""
301
 
302
- #: adrotate-output.php:870
303
- #, fuzzy
304
- msgid "Useful Links"
305
- msgstr "Korisni linkovi"
306
-
307
- #: adrotate-output.php:871
308
- msgid "Useful links to learn more about AdRotate"
309
- msgstr ""
310
-
311
- #: adrotate-output.php:873
312
- msgid "AdRotate website"
313
- msgstr ""
314
-
315
- #: adrotate-output.php:874
316
- #, fuzzy
317
- msgid "Getting Started With AdRotate"
318
- msgstr "Nabvite jos karakteristika! AdRotate Pro."
319
-
320
- #: adrotate-output.php:875
321
- #, fuzzy
322
- msgid "AdRotate manuals"
323
- msgstr "AdRotate informacije"
324
-
325
- #: adrotate-output.php:876
326
- #, fuzzy
327
- msgid "AdRotate Support Forum"
328
- msgstr "AdRotate prodavnica"
329
-
330
- #: adrotate-output.php:913
331
  #, fuzzy
332
  msgid "Help AdRotate Grow"
333
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
334
 
335
- #: adrotate-output.php:914 adrotate.php:152
336
  #, fuzzy
337
  msgid "AdRotate Professional"
338
  msgstr "AdRotate promocije"
339
 
340
- #: adrotate-output.php:921
341
  msgid ""
342
  "Many users only think to review AdRotate when something goes wrong while "
343
  "thousands of people happily use AdRotate."
344
  msgstr ""
345
 
346
- #: adrotate-output.php:921
347
  msgid "If you find AdRotate useful please leave your"
348
  msgstr ""
349
 
350
- #: adrotate-output.php:921
351
  msgid "rating"
352
  msgstr ""
353
 
354
- #: adrotate-output.php:921
355
  #, fuzzy
356
  msgid "review"
357
  msgstr "Dajte ocenu i komentar"
358
 
359
- #: adrotate-output.php:921
360
  msgid "on WordPress.org to help AdRotate grow in a positive way"
361
  msgstr ""
362
 
363
- #: adrotate-output.php:922
364
  msgid ""
365
  "Get more advanced features like Geo Targeting, scheduling and much more with "
366
  "AdRotate Pro."
367
  msgstr ""
368
 
369
- #: adrotate-output.php:922
370
  msgid "Includes premium support and free updates!"
371
  msgstr ""
372
 
373
- #: adrotate-output.php:922
374
  #, fuzzy
375
  #| msgid "Go Pro today"
376
  msgid "Get started today"
@@ -448,45 +420,45 @@ msgstr "Nema podataka za prikaz!"
448
  msgid "Not found"
449
  msgstr "Nijedan fajl nije pronadjen"
450
 
451
- #: adrotate-widget.php:132
452
  msgid "Title (optional):"
453
  msgstr "Naslov (opcionalno):"
454
 
455
- #: adrotate-widget.php:135
456
  msgid "HTML will be stripped out."
457
  msgstr "HTML će biti skinut."
458
 
459
- #: adrotate-widget.php:138
460
  #, fuzzy
461
  msgid "Description (optional):"
462
  msgstr "Naslov (opcionalno):"
463
 
464
- #: adrotate-widget.php:141
465
  #, fuzzy
466
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
467
  msgstr "HTML će biti skinut."
468
 
469
- #: adrotate-widget.php:144
470
  msgid "Type:"
471
  msgstr "Tip:"
472
 
473
- #: adrotate-widget.php:146
474
  msgid "Advert - Use Advert ID"
475
  msgstr ""
476
 
477
- #: adrotate-widget.php:147
478
  msgid "Group - Use group ID"
479
  msgstr ""
480
 
481
- #: adrotate-widget.php:150
482
  msgid "Choose what you want to use this widget for"
483
  msgstr "Izaberite za šta želite da koristite ovaj widget "
484
 
485
- #: adrotate-widget.php:153
486
  msgid "ID:"
487
  msgstr "ID:"
488
 
489
- #: adrotate-widget.php:156
490
  msgid "Fill in the ID of the type you want to display!"
491
  msgstr "Popunite ID tipa koji želite da prikažete!"
492
 
@@ -660,10 +632,10 @@ msgstr ""
660
 
661
  #: dashboard/adrotatepro.php:44
662
  msgid ""
663
- "When you activate your AdRotate Pro license you can use fast and personal "
664
  "email support. No more queueing up in the forums. AdRotate support takes "
665
- "priority over the forums and is checked much more often than the forum. Get "
666
- "a solution (usually) within two business days."
667
  msgstr ""
668
 
669
  #: dashboard/adrotatepro.php:48
@@ -708,16 +680,16 @@ msgid ""
708
  msgstr ""
709
 
710
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
711
- #: dashboard/info.php:79
712
  #, fuzzy
713
  msgid "Buy AdRotate Professional"
714
  msgstr "Kupite odmah"
715
 
716
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
717
  msgid "Single License"
718
  msgstr ""
719
 
720
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
721
  msgid "One WordPress installation."
722
  msgstr ""
723
 
@@ -725,51 +697,51 @@ msgstr ""
725
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
726
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
727
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
728
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
729
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
730
  #, fuzzy
731
  msgid "Buy now"
732
  msgstr "Kupite odmah"
733
 
734
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
735
- #: dashboard/info.php:84
736
  msgid "Duo License"
737
  msgstr ""
738
 
739
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
740
  msgid "Two WordPress installations."
741
  msgstr ""
742
 
743
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
744
- #: dashboard/info.php:85
745
  msgid "Multi License"
746
  msgstr ""
747
 
748
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
749
  #, fuzzy
750
  msgid "Five WordPress installations."
751
  msgstr "Instalacije"
752
 
753
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
754
- #: dashboard/info.php:86
755
  #, fuzzy
756
  msgid "Developer License"
757
  msgstr "Debug za programera"
758
 
759
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
760
  msgid "Unlimited WordPress installations and/or networks."
761
  msgstr ""
762
 
763
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
764
- #: dashboard/info.php:87
765
  msgid "Compare licenses"
766
  msgstr ""
767
 
768
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
769
  msgid "Not sure which license is for you? Compare them..."
770
  msgstr ""
771
 
772
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
773
  #, fuzzy
774
  msgid "All Licenses"
775
  msgstr "Ponovo ocenite sve oglase"
@@ -841,24 +813,20 @@ msgstr ""
841
  msgid "Arnan de Gans News & Updates"
842
  msgstr ""
843
 
844
- #: dashboard/info.php:91
845
- msgid "AJdG Solutions Premium Support Group"
846
- msgstr ""
847
-
848
- #: dashboard/info.php:108
849
- msgid "Join the Media.net advertising network"
850
- msgstr ""
851
-
852
- #: dashboard/info.php:123
853
  msgid "Sponsored offers"
854
  msgstr ""
855
 
856
- #: dashboard/info.php:129
857
  msgid ""
858
  "These are affiliate banners, clicking them costs you nothing but it helps me "
859
  "and AdRotate a lot!"
860
  msgstr ""
861
 
 
 
 
 
862
  #: dashboard/publisher/adverts-disabled.php:15
863
  msgid "Disabled Adverts"
864
  msgstr ""
@@ -2561,7 +2529,7 @@ msgid "Which Geo Service"
2561
  msgstr ""
2562
 
2563
  #: dashboard/settings/geotargeting.php:32
2564
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2565
  msgstr ""
2566
 
2567
  #: dashboard/settings/geotargeting.php:33
@@ -2583,17 +2551,17 @@ msgid "Suitable for small to medium websites."
2583
  msgstr ""
2584
 
2585
  #: dashboard/settings/geotargeting.php:36
2586
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2587
  msgstr ""
2588
 
2589
  #: dashboard/settings/geotargeting.php:38
2590
- msgid "Suitable for medium sized websites."
 
 
2591
  msgstr ""
2592
 
2593
  #: dashboard/settings/geotargeting.php:40
2594
- msgid ""
2595
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2596
- "lookups."
2597
  msgstr ""
2598
 
2599
  #: dashboard/settings/geotargeting.php:42
@@ -3286,6 +3254,22 @@ msgid ""
3286
  msgstr ""
3287
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
3288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3289
  #, fuzzy
3290
  #~ msgid "Push Notifications"
3291
  #~ msgstr "Notifikacije"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
16
  "X-Generator: Poedit 2.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:720
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:723
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-functions.php:808
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:812
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:816
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
+ #: adrotate-functions.php:820
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
+ #: adrotate-functions.php:824
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
+ #: adrotate-functions.php:828
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
+ #: adrotate-functions.php:832
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
+ #: adrotate-functions.php:836
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
+ #: adrotate-functions.php:840
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
+ #: adrotate-functions.php:844
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
+ #: adrotate-functions.php:848
69
  msgid ""
70
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
71
  "below."
72
  msgstr ""
73
 
74
+ #: adrotate-functions.php:853
75
  msgid "Settings saved"
76
  msgstr "Postavke sačuvane"
77
 
78
+ #: adrotate-functions.php:857
79
  msgid "Database optimized"
80
  msgstr "Baza podataka optimizirana"
81
 
82
+ #: adrotate-functions.php:861
83
  msgid "Database repaired"
84
  msgstr "Baza podataka popravljena"
85
 
86
+ #: adrotate-functions.php:865
87
  msgid "Ads evaluated and statuses have been corrected where required"
88
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
89
 
90
+ #: adrotate-functions.php:869
91
  #, fuzzy
92
  #| msgid "Clean-up Database"
93
  msgid "Cleanup complete"
94
  msgstr "Čišćenje baze"
95
 
96
+ #: adrotate-functions.php:874
97
  msgid "Action prohibited"
98
  msgstr "Zabranjeno delo"
99
 
100
+ #: adrotate-functions.php:878
101
  msgid ""
102
  "The ad was saved but has an issue which might prevent it from working "
103
  "properly. Review the colored ad."
104
  msgstr ""
105
 
106
+ #: adrotate-functions.php:882
107
  msgid "No data found in selected time period"
108
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
109
 
110
+ #: adrotate-functions.php:886
111
  msgid "Database can only be optimized or cleaned once every hour"
112
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
113
 
114
+ #: adrotate-functions.php:890
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
+ #: adrotate-functions.php:894
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
+ #: adrotate-functions.php:898
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
127
  msgid "AdRotate Advertiser"
128
  msgstr ""
129
 
130
+ #: adrotate-output.php:572
131
  msgid "Oh no! Something went wrong!"
132
  msgstr "O ne! Nešto nije kako treba!"
133
 
134
+ #: adrotate-output.php:573
135
  msgid ""
136
  "WordPress was unable to verify the authenticity of the url you have clicked. "
137
  "Verify if the url used is valid or log in via your browser."
140
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
141
  "pretraživača."
142
 
143
+ #: adrotate-output.php:574
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
147
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
148
 
149
+ #: adrotate-output.php:575
150
  msgid "Contact support if the issue persists:"
151
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
152
 
153
+ #: adrotate-output.php:590
154
  #, fuzzy
155
  msgid ""
156
  "Error, Ad is not available at this time due to schedule/geolocation "
157
  "restrictions or does not exist!"
158
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
159
 
160
+ #: adrotate-output.php:592
161
  #, fuzzy
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions!"
165
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
166
 
167
+ #: adrotate-output.php:599 adrotate-output.php:601
168
  msgid ""
169
  "Either there are no banners, they are disabled or none qualified for this "
170
  "location!"
171
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
172
 
173
+ #: adrotate-output.php:607
174
  msgid "Error, no Ad ID set! Check your syntax!"
175
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
176
 
177
+ #: adrotate-output.php:613
178
  #, fuzzy
179
  msgid "Error, no group ID set! Check your syntax!"
180
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
181
 
182
+ #: adrotate-output.php:618
183
  #, fuzzy
184
  msgid "Error, group does not exist! Check your syntax!"
185
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
186
 
187
+ #: adrotate-output.php:624
188
  msgid ""
189
  "There was an error locating the database tables for AdRotate. Please "
190
  "deactivate and re-activate AdRotate from the plugin page!!"
192
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
193
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
194
 
195
+ #: adrotate-output.php:624
196
  msgid "If this does not solve the issue please seek support at"
197
  msgstr "Ako ne reši problem potražite podršku na"
198
 
199
+ #: adrotate-output.php:630
200
  msgid "An unknown error occured."
201
  msgstr "Nepoznati error se ukazao."
202
 
203
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
204
  msgid "Check adverts"
205
  msgstr ""
206
 
207
+ #: adrotate-output.php:662
208
  msgid ""
209
  "You have enabled caching support but W3 Total Cache is not active on your "
210
  "site!"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:662
214
  #, fuzzy
215
  #| msgid "W3 Total Caching"
216
  msgid "Disable W3 Total Cache Support"
217
  msgstr "W3 Total Caching"
218
 
219
+ #: adrotate-output.php:665
220
  msgid ""
221
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
222
  "not set."
223
  msgstr ""
224
 
225
+ #: adrotate-output.php:665
226
  msgid "How to configure W3 Total Cache"
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:669
230
  msgid ""
231
  "You have enable caching support but Borlabs Cache is not active on your site!"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:669
235
  msgid "Disable Borlabs Cache Support"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:677
239
  msgid ""
240
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:677
244
  msgid "Enable Fragment Caching"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:683
248
  msgid "Your AdRotate Banner folder is not writable or does not exist."
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:683
252
  #, fuzzy
253
  #| msgid "Where are your banner ads?"
254
  msgid "Set up your banner folder"
255
  msgstr "Gde su ti baneri ?"
256
 
257
+ #: adrotate-output.php:703
258
  msgid "your attention:"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:724 adrotate.php:447
262
  #: dashboard/publisher/schedules-main.php:13
263
  #, fuzzy
264
  #| msgid "AdRotate Pro"
265
  msgid "Get AdRotate Pro"
266
  msgstr "AdRotate Pro"
267
 
268
+ #: adrotate-output.php:725
269
  msgid ""
270
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
271
  "Schedules and more..."
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:725
275
  #, php-format
276
  msgid ""
277
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:725
281
  msgid "Thank you for your support!"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:793
285
  msgid ""
286
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
287
  "menu. If you need help getting started take a look at the"
288
  msgstr ""
289
 
290
+ #: adrotate-output.php:793
291
  msgid "manuals"
292
  msgstr "priručnici"
293
 
294
+ #: adrotate-output.php:793 adrotate-output.php:893
295
  msgid "and"
296
  msgstr ""
297
 
298
+ #: adrotate-output.php:793
299
  msgid "forums"
300
  msgstr ""
301
 
302
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
303
  #, fuzzy
304
  msgid "Help AdRotate Grow"
305
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
306
 
307
+ #: adrotate-output.php:886 adrotate.php:152
308
  #, fuzzy
309
  msgid "AdRotate Professional"
310
  msgstr "AdRotate promocije"
311
 
312
+ #: adrotate-output.php:893
313
  msgid ""
314
  "Many users only think to review AdRotate when something goes wrong while "
315
  "thousands of people happily use AdRotate."
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:893
319
  msgid "If you find AdRotate useful please leave your"
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:893
323
  msgid "rating"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:893
327
  #, fuzzy
328
  msgid "review"
329
  msgstr "Dajte ocenu i komentar"
330
 
331
+ #: adrotate-output.php:893
332
  msgid "on WordPress.org to help AdRotate grow in a positive way"
333
  msgstr ""
334
 
335
+ #: adrotate-output.php:894
336
  msgid ""
337
  "Get more advanced features like Geo Targeting, scheduling and much more with "
338
  "AdRotate Pro."
339
  msgstr ""
340
 
341
+ #: adrotate-output.php:894
342
  msgid "Includes premium support and free updates!"
343
  msgstr ""
344
 
345
+ #: adrotate-output.php:894
346
  #, fuzzy
347
  #| msgid "Go Pro today"
348
  msgid "Get started today"
420
  msgid "Not found"
421
  msgstr "Nijedan fajl nije pronadjen"
422
 
423
+ #: adrotate-widget.php:134
424
  msgid "Title (optional):"
425
  msgstr "Naslov (opcionalno):"
426
 
427
+ #: adrotate-widget.php:137
428
  msgid "HTML will be stripped out."
429
  msgstr "HTML će biti skinut."
430
 
431
+ #: adrotate-widget.php:140
432
  #, fuzzy
433
  msgid "Description (optional):"
434
  msgstr "Naslov (opcionalno):"
435
 
436
+ #: adrotate-widget.php:143
437
  #, fuzzy
438
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
439
  msgstr "HTML će biti skinut."
440
 
441
+ #: adrotate-widget.php:146
442
  msgid "Type:"
443
  msgstr "Tip:"
444
 
445
+ #: adrotate-widget.php:148
446
  msgid "Advert - Use Advert ID"
447
  msgstr ""
448
 
449
+ #: adrotate-widget.php:149
450
  msgid "Group - Use group ID"
451
  msgstr ""
452
 
453
+ #: adrotate-widget.php:152
454
  msgid "Choose what you want to use this widget for"
455
  msgstr "Izaberite za šta želite da koristite ovaj widget "
456
 
457
+ #: adrotate-widget.php:155
458
  msgid "ID:"
459
  msgstr "ID:"
460
 
461
+ #: adrotate-widget.php:158
462
  msgid "Fill in the ID of the type you want to display!"
463
  msgstr "Popunite ID tipa koji želite da prikažete!"
464
 
632
 
633
  #: dashboard/adrotatepro.php:44
634
  msgid ""
635
+ "When you activate your AdRotate Pro license you can use the more personal "
636
  "email support. No more queueing up in the forums. AdRotate support takes "
637
+ "priority over the forums and is checked once or twice a day. Get a solution "
638
+ "(usually) within two business days."
639
  msgstr ""
640
 
641
  #: dashboard/adrotatepro.php:48
680
  msgstr ""
681
 
682
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
683
+ #: dashboard/info.php:90
684
  #, fuzzy
685
  msgid "Buy AdRotate Professional"
686
  msgstr "Kupite odmah"
687
 
688
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
689
  msgid "Single License"
690
  msgstr ""
691
 
692
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
693
  msgid "One WordPress installation."
694
  msgstr ""
695
 
697
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
698
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
699
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
700
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
701
+ #: dashboard/info.php:97
702
  #, fuzzy
703
  msgid "Buy now"
704
  msgstr "Kupite odmah"
705
 
706
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
707
+ #: dashboard/info.php:95
708
  msgid "Duo License"
709
  msgstr ""
710
 
711
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
712
  msgid "Two WordPress installations."
713
  msgstr ""
714
 
715
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
716
+ #: dashboard/info.php:96
717
  msgid "Multi License"
718
  msgstr ""
719
 
720
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
721
  #, fuzzy
722
  msgid "Five WordPress installations."
723
  msgstr "Instalacije"
724
 
725
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
726
+ #: dashboard/info.php:97
727
  #, fuzzy
728
  msgid "Developer License"
729
  msgstr "Debug za programera"
730
 
731
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
732
  msgid "Unlimited WordPress installations and/or networks."
733
  msgstr ""
734
 
735
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
736
+ #: dashboard/info.php:98
737
  msgid "Compare licenses"
738
  msgstr ""
739
 
740
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
741
  msgid "Not sure which license is for you? Compare them..."
742
  msgstr ""
743
 
744
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
745
  #, fuzzy
746
  msgid "All Licenses"
747
  msgstr "Ponovo ocenite sve oglase"
813
  msgid "Arnan de Gans News & Updates"
814
  msgstr ""
815
 
816
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
817
  msgid "Sponsored offers"
818
  msgstr ""
819
 
820
+ #: dashboard/info.php:79
821
  msgid ""
822
  "These are affiliate banners, clicking them costs you nothing but it helps me "
823
  "and AdRotate a lot!"
824
  msgstr ""
825
 
826
+ #: dashboard/info.php:102
827
+ msgid "Join the Media.net advertising network"
828
+ msgstr ""
829
+
830
  #: dashboard/publisher/adverts-disabled.php:15
831
  msgid "Disabled Adverts"
832
  msgstr ""
2529
  msgstr ""
2530
 
2531
  #: dashboard/settings/geotargeting.php:32
2532
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2533
  msgstr ""
2534
 
2535
  #: dashboard/settings/geotargeting.php:33
2551
  msgstr ""
2552
 
2553
  #: dashboard/settings/geotargeting.php:36
2554
+ msgid "10000 free lookups per month, requires account."
2555
  msgstr ""
2556
 
2557
  #: dashboard/settings/geotargeting.php:38
2558
+ msgid ""
2559
+ "Suitable for small to medium sized websites with a free account - Paid "
2560
+ "options available."
2561
  msgstr ""
2562
 
2563
  #: dashboard/settings/geotargeting.php:40
2564
+ msgid "The most accurate geo targeting available."
 
 
2565
  msgstr ""
2566
 
2567
  #: dashboard/settings/geotargeting.php:42
3254
  msgstr ""
3255
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
3256
 
3257
+ #, fuzzy
3258
+ #~ msgid "Useful Links"
3259
+ #~ msgstr "Korisni linkovi"
3260
+
3261
+ #, fuzzy
3262
+ #~ msgid "Getting Started With AdRotate"
3263
+ #~ msgstr "Nabvite jos karakteristika! AdRotate Pro."
3264
+
3265
+ #, fuzzy
3266
+ #~ msgid "AdRotate manuals"
3267
+ #~ msgstr "AdRotate informacije"
3268
+
3269
+ #, fuzzy
3270
+ #~ msgid "AdRotate Support Forum"
3271
+ #~ msgstr "AdRotate prodavnica"
3272
+
3273
  #, fuzzy
3274
  #~ msgid "Push Notifications"
3275
  #~ msgstr "Notifikacije"
language/adrotate-sv_SV.mo CHANGED
Binary file
language/adrotate-sv_SV.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-07-25 12:28+0800\n"
6
- "PO-Revision-Date: 2018-07-25 12:28+0800\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
@@ -17,110 +17,110 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:730
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
- #: adrotate-functions.php:733
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
- #: adrotate-functions.php:818
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:822
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:826
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
- #: adrotate-functions.php:830
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
- #: adrotate-functions.php:834
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
- #: adrotate-functions.php:838
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
- #: adrotate-functions.php:842
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
- #: adrotate-functions.php:846
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
- #: adrotate-functions.php:850
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
- #: adrotate-functions.php:854
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
- #: adrotate-functions.php:858
70
  msgid ""
71
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
72
  "below."
73
  msgstr ""
74
 
75
- #: adrotate-functions.php:863
76
  msgid "Settings saved"
77
  msgstr "Inställningar sparas"
78
 
79
- #: adrotate-functions.php:867
80
  msgid "Database optimized"
81
  msgstr "Databas optimerad"
82
 
83
- #: adrotate-functions.php:871
84
  msgid "Database repaired"
85
  msgstr "Databas reparation"
86
 
87
- #: adrotate-functions.php:875
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr "annonser utvärderas och status har rättats till vid behov"
90
 
91
- #: adrotate-functions.php:879
92
  #, fuzzy
93
  #| msgid "Clean-up Database"
94
  msgid "Cleanup complete"
95
  msgstr "Städa upp Databas"
96
 
97
- #: adrotate-functions.php:884
98
  msgid "Action prohibited"
99
  msgstr "Åtgärden förbjuden"
100
 
101
- #: adrotate-functions.php:888
102
  msgid ""
103
  "The ad was saved but has an issue which might prevent it from working "
104
  "properly. Review the colored ad."
105
  msgstr ""
106
 
107
- #: adrotate-functions.php:892
108
  msgid "No data found in selected time period"
109
  msgstr "Inga data finns i vald tidsperiod"
110
 
111
- #: adrotate-functions.php:896
112
  msgid "Database can only be optimized or cleaned once every hour"
113
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
114
 
115
- #: adrotate-functions.php:900
116
  msgid "Form can not be (partially) empty!"
117
  msgstr ""
118
 
119
- #: adrotate-functions.php:904
120
  msgid "No ads found."
121
  msgstr ""
122
 
123
- #: adrotate-functions.php:908
124
  msgid "Unexpected error"
125
  msgstr ""
126
 
@@ -128,11 +128,11 @@ msgstr ""
128
  msgid "AdRotate Advertiser"
129
  msgstr ""
130
 
131
- #: adrotate-output.php:557
132
  msgid "Oh no! Something went wrong!"
133
  msgstr "Åh nej! Något gick fel!"
134
 
135
- #: adrotate-output.php:558
136
  msgid ""
137
  "WordPress was unable to verify the authenticity of the url you have clicked. "
138
  "Verify if the url used is valid or log in via your browser."
@@ -141,18 +141,18 @@ msgstr ""
141
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
142
  "via webbläsaren."
143
 
144
- #: adrotate-output.php:559
145
  msgid ""
146
  "If you have received the url you want to visit via email, you are being "
147
  "tricked!"
148
  msgstr ""
149
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
150
 
151
- #: adrotate-output.php:560
152
  msgid "Contact support if the issue persists:"
153
  msgstr "Kontakta support om problemet kvarstår:"
154
 
155
- #: adrotate-output.php:575
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions or does not exist!"
@@ -160,7 +160,7 @@ msgstr ""
160
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
161
  "geolokalisering restriktioner eller finns inte!"
162
 
163
- #: adrotate-output.php:577
164
  msgid ""
165
  "Error, Ad is not available at this time due to schedule/geolocation "
166
  "restrictions!"
@@ -168,7 +168,7 @@ msgstr ""
168
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
169
  "geolokalisering begränsningar!"
170
 
171
- #: adrotate-output.php:584 adrotate-output.php:586
172
  msgid ""
173
  "Either there are no banners, they are disabled or none qualified for this "
174
  "location!"
@@ -176,19 +176,19 @@ msgstr ""
176
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
177
  "kvalificerade för den här platsen!"
178
 
179
- #: adrotate-output.php:592
180
  msgid "Error, no Ad ID set! Check your syntax!"
181
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
182
 
183
- #: adrotate-output.php:598
184
  msgid "Error, no group ID set! Check your syntax!"
185
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
186
 
187
- #: adrotate-output.php:603
188
  msgid "Error, group does not exist! Check your syntax!"
189
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
190
 
191
- #: adrotate-output.php:609
192
  msgid ""
193
  "There was an error locating the database tables for AdRotate. Please "
194
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -196,186 +196,158 @@ msgstr ""
196
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
197
  "avaktivera och återaktivera AdRotate från plugin sidan!"
198
 
199
- #: adrotate-output.php:609
200
  msgid "If this does not solve the issue please seek support at"
201
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
202
 
203
- #: adrotate-output.php:615
204
  msgid "An unknown error occured."
205
  msgstr "Ett okänt fel uppstod."
206
 
207
- #: adrotate-output.php:635 adrotate-output.php:638 adrotate-output.php:642
208
  msgid "Check adverts"
209
  msgstr ""
210
 
211
- #: adrotate-output.php:652
212
  msgid ""
213
  "You have enabled caching support but W3 Total Cache is not active on your "
214
  "site!"
215
  msgstr ""
216
 
217
- #: adrotate-output.php:652
218
  #, fuzzy
219
  #| msgid "W3 Total Caching"
220
  msgid "Disable W3 Total Cache Support"
221
  msgstr "W3 Total Caching"
222
 
223
- #: adrotate-output.php:655
224
  msgid ""
225
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
226
  "not set."
227
  msgstr ""
228
 
229
- #: adrotate-output.php:655
230
  msgid "How to configure W3 Total Cache"
231
  msgstr ""
232
 
233
- #: adrotate-output.php:664
234
  msgid ""
235
  "You have enable caching support but Borlabs Cache is not active on your site!"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:664
239
  msgid "Disable Borlabs Cache Support"
240
  msgstr ""
241
 
242
- #: adrotate-output.php:672
243
  msgid ""
244
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:672
248
  msgid "Enable Fragment Caching"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:678
252
  msgid "Your AdRotate Banner folder is not writable or does not exist."
253
  msgstr ""
254
 
255
- #: adrotate-output.php:678
256
  #, fuzzy
257
  #| msgid "Where are your banner ads?"
258
  msgid "Set up your banner folder"
259
  msgstr "Var är dina bannerannonser?"
260
 
261
- #: adrotate-output.php:698
262
  msgid "your attention:"
263
  msgstr ""
264
 
265
- #: adrotate-output.php:719 adrotate.php:447
266
  #: dashboard/publisher/schedules-main.php:13
267
  #, fuzzy
268
  #| msgid "AdRotate Pro"
269
  msgid "Get AdRotate Pro"
270
  msgstr "AdRotate Pro"
271
 
272
- #: adrotate-output.php:720
273
  msgid ""
274
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
275
  "Schedules and more..."
276
  msgstr ""
277
 
278
- #: adrotate-output.php:720
279
  #, php-format
280
  msgid ""
281
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
282
  msgstr ""
283
 
284
- #: adrotate-output.php:720
285
  #, fuzzy
286
  msgid "Thank you for your support!"
287
  msgstr "Tack. Din licens är nu aktiv"
288
 
289
- #: adrotate-output.php:837
290
  msgid ""
291
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
292
  "menu. If you need help getting started take a look at the"
293
  msgstr ""
294
 
295
- #: adrotate-output.php:837
296
  msgid "manuals"
297
  msgstr "manual"
298
 
299
- #: adrotate-output.php:837 adrotate-output.php:921
300
  msgid "and"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:837
304
  msgid "forums"
305
  msgstr ""
306
 
307
- #: adrotate-output.php:870
308
- #, fuzzy
309
- msgid "Useful Links"
310
- msgstr "Nyttiga länkar"
311
-
312
- #: adrotate-output.php:871
313
- msgid "Useful links to learn more about AdRotate"
314
- msgstr ""
315
-
316
- #: adrotate-output.php:873
317
- msgid "AdRotate website"
318
- msgstr ""
319
-
320
- #: adrotate-output.php:874
321
- #, fuzzy
322
- msgid "Getting Started With AdRotate"
323
- msgstr "Få fler funktioner! Skaffa AdRotate Pro."
324
-
325
- #: adrotate-output.php:875
326
- #, fuzzy
327
- msgid "AdRotate manuals"
328
- msgstr "AdRotate Information"
329
-
330
- #: adrotate-output.php:876
331
- #, fuzzy
332
- msgid "AdRotate Support Forum"
333
- msgstr "AdRotate butik"
334
-
335
- #: adrotate-output.php:913
336
  #, fuzzy
337
  msgid "Help AdRotate Grow"
338
  msgstr "Fastnat med AdRotate? Jag hjälper!"
339
 
340
- #: adrotate-output.php:914 adrotate.php:152
341
  #, fuzzy
342
  msgid "AdRotate Professional"
343
  msgstr "AdRotate"
344
 
345
- #: adrotate-output.php:921
346
  msgid ""
347
  "Many users only think to review AdRotate when something goes wrong while "
348
  "thousands of people happily use AdRotate."
349
  msgstr ""
350
 
351
- #: adrotate-output.php:921
352
  msgid "If you find AdRotate useful please leave your"
353
  msgstr ""
354
 
355
- #: adrotate-output.php:921
356
  msgid "rating"
357
  msgstr ""
358
 
359
- #: adrotate-output.php:921
360
  #, fuzzy
361
  msgid "review"
362
  msgstr "Betygsätt och omdöme"
363
 
364
- #: adrotate-output.php:921
365
  msgid "on WordPress.org to help AdRotate grow in a positive way"
366
  msgstr ""
367
 
368
- #: adrotate-output.php:922
369
  msgid ""
370
  "Get more advanced features like Geo Targeting, scheduling and much more with "
371
  "AdRotate Pro."
372
  msgstr ""
373
 
374
- #: adrotate-output.php:922
375
  msgid "Includes premium support and free updates!"
376
  msgstr ""
377
 
378
- #: adrotate-output.php:922
379
  #, fuzzy
380
  #| msgid "Go Pro today"
381
  msgid "Get started today"
@@ -453,44 +425,44 @@ msgstr "Inga data att visa!"
453
  msgid "Not found"
454
  msgstr "Inga filer hittades"
455
 
456
- #: adrotate-widget.php:132
457
  msgid "Title (optional):"
458
  msgstr "Titel (valfritt):"
459
 
460
- #: adrotate-widget.php:135
461
  msgid "HTML will be stripped out."
462
  msgstr "HTML kommer att demonteras ut."
463
 
464
- #: adrotate-widget.php:138
465
  msgid "Description (optional):"
466
  msgstr "Beskrivning (valfritt):"
467
 
468
- #: adrotate-widget.php:141
469
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
470
  msgstr ""
471
  "Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
472
 
473
- #: adrotate-widget.php:144
474
  msgid "Type:"
475
  msgstr "Typ:"
476
 
477
- #: adrotate-widget.php:146
478
  msgid "Advert - Use Advert ID"
479
  msgstr ""
480
 
481
- #: adrotate-widget.php:147
482
  msgid "Group - Use group ID"
483
  msgstr ""
484
 
485
- #: adrotate-widget.php:150
486
  msgid "Choose what you want to use this widget for"
487
  msgstr "Välj vad du vill använda denna widget för"
488
 
489
- #: adrotate-widget.php:153
490
  msgid "ID:"
491
  msgstr "ID:"
492
 
493
- #: adrotate-widget.php:156
494
  msgid "Fill in the ID of the type you want to display!"
495
  msgstr "Fyll i ID för den typ som du vill visa!"
496
 
@@ -664,10 +636,10 @@ msgstr ""
664
 
665
  #: dashboard/adrotatepro.php:44
666
  msgid ""
667
- "When you activate your AdRotate Pro license you can use fast and personal "
668
  "email support. No more queueing up in the forums. AdRotate support takes "
669
- "priority over the forums and is checked much more often than the forum. Get "
670
- "a solution (usually) within two business days."
671
  msgstr ""
672
 
673
  #: dashboard/adrotatepro.php:48
@@ -712,16 +684,16 @@ msgid ""
712
  msgstr ""
713
 
714
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
715
- #: dashboard/info.php:79
716
  #, fuzzy
717
  msgid "Buy AdRotate Professional"
718
  msgstr "Köp nu"
719
 
720
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
721
  msgid "Single License"
722
  msgstr ""
723
 
724
- #: dashboard/adrotatepro.php:86 dashboard/info.php:83
725
  msgid "One WordPress installation."
726
  msgstr ""
727
 
@@ -729,53 +701,53 @@ msgstr ""
729
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
730
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
731
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
732
- #: dashboard/info.php:83 dashboard/info.php:84 dashboard/info.php:85
733
- #: dashboard/info.php:86 dashboard/settings/geotargeting.php:40
734
  #, fuzzy
735
  msgid "Buy now"
736
  msgstr "Köp nu"
737
 
738
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
739
- #: dashboard/info.php:84
740
  #, fuzzy
741
  msgid "Duo License"
742
  msgstr "AdRotate Licens"
743
 
744
- #: dashboard/adrotatepro.php:87 dashboard/info.php:84
745
  msgid "Two WordPress installations."
746
  msgstr ""
747
 
748
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
749
- #: dashboard/info.php:85
750
  #, fuzzy
751
  msgid "Multi License"
752
  msgstr "AdRotate Licens"
753
 
754
- #: dashboard/adrotatepro.php:88 dashboard/info.php:85
755
  #, fuzzy
756
  msgid "Five WordPress installations."
757
  msgstr "Installation"
758
 
759
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
760
- #: dashboard/info.php:86
761
  #, fuzzy
762
  msgid "Developer License"
763
  msgstr "Utvecklar Debug"
764
 
765
- #: dashboard/adrotatepro.php:89 dashboard/info.php:86
766
  msgid "Unlimited WordPress installations and/or networks."
767
  msgstr ""
768
 
769
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
770
- #: dashboard/info.php:87
771
  msgid "Compare licenses"
772
  msgstr ""
773
 
774
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
775
  msgid "Not sure which license is for you? Compare them..."
776
  msgstr ""
777
 
778
- #: dashboard/adrotatepro.php:90 dashboard/info.php:87
779
  msgid "All Licenses"
780
  msgstr ""
781
 
@@ -846,24 +818,20 @@ msgstr ""
846
  msgid "Arnan de Gans News & Updates"
847
  msgstr ""
848
 
849
- #: dashboard/info.php:91
850
- msgid "AJdG Solutions Premium Support Group"
851
- msgstr ""
852
-
853
- #: dashboard/info.php:108
854
- msgid "Join the Media.net advertising network"
855
- msgstr ""
856
-
857
- #: dashboard/info.php:123
858
  msgid "Sponsored offers"
859
  msgstr ""
860
 
861
- #: dashboard/info.php:129
862
  msgid ""
863
  "These are affiliate banners, clicking them costs you nothing but it helps me "
864
  "and AdRotate a lot!"
865
  msgstr ""
866
 
 
 
 
 
867
  #: dashboard/publisher/adverts-disabled.php:15
868
  msgid "Disabled Adverts"
869
  msgstr ""
@@ -2545,7 +2513,7 @@ msgid "Which Geo Service"
2545
  msgstr ""
2546
 
2547
  #: dashboard/settings/geotargeting.php:32
2548
- msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2549
  msgstr ""
2550
 
2551
  #: dashboard/settings/geotargeting.php:33
@@ -2567,17 +2535,17 @@ msgid "Suitable for small to medium websites."
2567
  msgstr ""
2568
 
2569
  #: dashboard/settings/geotargeting.php:36
2570
- msgid "15000 free lookups per hour, uses GeoLite2 databases from MaxMind!"
2571
  msgstr ""
2572
 
2573
  #: dashboard/settings/geotargeting.php:38
2574
- msgid "Suitable for medium sized websites."
 
 
2575
  msgstr ""
2576
 
2577
  #: dashboard/settings/geotargeting.php:40
2578
- msgid ""
2579
- "The most accurate geo targeting you can get for only $20 USD per 50000 "
2580
- "lookups."
2581
  msgstr ""
2582
 
2583
  #: dashboard/settings/geotargeting.php:42
@@ -3270,6 +3238,22 @@ msgid ""
3270
  msgstr ""
3271
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
3272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3273
  #, fuzzy
3274
  #~ msgid "Push Notifications"
3275
  #~ msgstr "Meddelanden"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-01-22 09:48+0100\n"
6
+ "PO-Revision-Date: 2019-01-22 09:48+0100\n"
7
  "Last-Translator: Arnan de Gans <support@ajdg.solutions>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:720
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:723
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-functions.php:808
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:812
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:816
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
+ #: adrotate-functions.php:820
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
+ #: adrotate-functions.php:824
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
+ #: adrotate-functions.php:828
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
+ #: adrotate-functions.php:832
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
+ #: adrotate-functions.php:836
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
+ #: adrotate-functions.php:840
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
+ #: adrotate-functions.php:844
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
+ #: adrotate-functions.php:848
70
  msgid ""
71
  "Advert HTML generated and placed in the AdCode field. Configure your advert "
72
  "below."
73
  msgstr ""
74
 
75
+ #: adrotate-functions.php:853
76
  msgid "Settings saved"
77
  msgstr "Inställningar sparas"
78
 
79
+ #: adrotate-functions.php:857
80
  msgid "Database optimized"
81
  msgstr "Databas optimerad"
82
 
83
+ #: adrotate-functions.php:861
84
  msgid "Database repaired"
85
  msgstr "Databas reparation"
86
 
87
+ #: adrotate-functions.php:865
88
  msgid "Ads evaluated and statuses have been corrected where required"
89
  msgstr "annonser utvärderas och status har rättats till vid behov"
90
 
91
+ #: adrotate-functions.php:869
92
  #, fuzzy
93
  #| msgid "Clean-up Database"
94
  msgid "Cleanup complete"
95
  msgstr "Städa upp Databas"
96
 
97
+ #: adrotate-functions.php:874
98
  msgid "Action prohibited"
99
  msgstr "Åtgärden förbjuden"
100
 
101
+ #: adrotate-functions.php:878
102
  msgid ""
103
  "The ad was saved but has an issue which might prevent it from working "
104
  "properly. Review the colored ad."
105
  msgstr ""
106
 
107
+ #: adrotate-functions.php:882
108
  msgid "No data found in selected time period"
109
  msgstr "Inga data finns i vald tidsperiod"
110
 
111
+ #: adrotate-functions.php:886
112
  msgid "Database can only be optimized or cleaned once every hour"
113
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
114
 
115
+ #: adrotate-functions.php:890
116
  msgid "Form can not be (partially) empty!"
117
  msgstr ""
118
 
119
+ #: adrotate-functions.php:894
120
  msgid "No ads found."
121
  msgstr ""
122
 
123
+ #: adrotate-functions.php:898
124
  msgid "Unexpected error"
125
  msgstr ""
126
 
128
  msgid "AdRotate Advertiser"
129
  msgstr ""
130
 
131
+ #: adrotate-output.php:572
132
  msgid "Oh no! Something went wrong!"
133
  msgstr "Åh nej! Något gick fel!"
134
 
135
+ #: adrotate-output.php:573
136
  msgid ""
137
  "WordPress was unable to verify the authenticity of the url you have clicked. "
138
  "Verify if the url used is valid or log in via your browser."
141
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
142
  "via webbläsaren."
143
 
144
+ #: adrotate-output.php:574
145
  msgid ""
146
  "If you have received the url you want to visit via email, you are being "
147
  "tricked!"
148
  msgstr ""
149
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
150
 
151
+ #: adrotate-output.php:575
152
  msgid "Contact support if the issue persists:"
153
  msgstr "Kontakta support om problemet kvarstår:"
154
 
155
+ #: adrotate-output.php:590
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions or does not exist!"
160
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
161
  "geolokalisering restriktioner eller finns inte!"
162
 
163
+ #: adrotate-output.php:592
164
  msgid ""
165
  "Error, Ad is not available at this time due to schedule/geolocation "
166
  "restrictions!"
168
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
169
  "geolokalisering begränsningar!"
170
 
171
+ #: adrotate-output.php:599 adrotate-output.php:601
172
  msgid ""
173
  "Either there are no banners, they are disabled or none qualified for this "
174
  "location!"
176
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
177
  "kvalificerade för den här platsen!"
178
 
179
+ #: adrotate-output.php:607
180
  msgid "Error, no Ad ID set! Check your syntax!"
181
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
182
 
183
+ #: adrotate-output.php:613
184
  msgid "Error, no group ID set! Check your syntax!"
185
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
186
 
187
+ #: adrotate-output.php:618
188
  msgid "Error, group does not exist! Check your syntax!"
189
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
190
 
191
+ #: adrotate-output.php:624
192
  msgid ""
193
  "There was an error locating the database tables for AdRotate. Please "
194
  "deactivate and re-activate AdRotate from the plugin page!!"
196
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
197
  "avaktivera och återaktivera AdRotate från plugin sidan!"
198
 
199
+ #: adrotate-output.php:624
200
  msgid "If this does not solve the issue please seek support at"
201
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
202
 
203
+ #: adrotate-output.php:630
204
  msgid "An unknown error occured."
205
  msgstr "Ett okänt fel uppstod."
206
 
207
+ #: adrotate-output.php:650 adrotate-output.php:653 adrotate-output.php:657
208
  msgid "Check adverts"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:662
212
  msgid ""
213
  "You have enabled caching support but W3 Total Cache is not active on your "
214
  "site!"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:662
218
  #, fuzzy
219
  #| msgid "W3 Total Caching"
220
  msgid "Disable W3 Total Cache Support"
221
  msgstr "W3 Total Caching"
222
 
223
+ #: adrotate-output.php:665
224
  msgid ""
225
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
226
  "not set."
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:665
230
  msgid "How to configure W3 Total Cache"
231
  msgstr ""
232
 
233
+ #: adrotate-output.php:669
234
  msgid ""
235
  "You have enable caching support but Borlabs Cache is not active on your site!"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:669
239
  msgid "Disable Borlabs Cache Support"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:677
243
  msgid ""
244
  "You have enabled Borlabs Cache support but Fragment caching is not enabled!"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:677
248
  msgid "Enable Fragment Caching"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:683
252
  msgid "Your AdRotate Banner folder is not writable or does not exist."
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:683
256
  #, fuzzy
257
  #| msgid "Where are your banner ads?"
258
  msgid "Set up your banner folder"
259
  msgstr "Var är dina bannerannonser?"
260
 
261
+ #: adrotate-output.php:703
262
  msgid "your attention:"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:724 adrotate.php:447
266
  #: dashboard/publisher/schedules-main.php:13
267
  #, fuzzy
268
  #| msgid "AdRotate Pro"
269
  msgid "Get AdRotate Pro"
270
  msgstr "AdRotate Pro"
271
 
272
+ #: adrotate-output.php:725
273
  msgid ""
274
  "Upgrade to <strong>AdRotate Professional</strong> and get Geo Targeting, "
275
  "Schedules and more..."
276
  msgstr ""
277
 
278
+ #: adrotate-output.php:725
279
  #, php-format
280
  msgid ""
281
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:725
285
  #, fuzzy
286
  msgid "Thank you for your support!"
287
  msgstr "Tack. Din licens är nu aktiv"
288
 
289
+ #: adrotate-output.php:793
290
  msgid ""
291
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
292
  "menu. If you need help getting started take a look at the"
293
  msgstr ""
294
 
295
+ #: adrotate-output.php:793
296
  msgid "manuals"
297
  msgstr "manual"
298
 
299
+ #: adrotate-output.php:793 adrotate-output.php:893
300
  msgid "and"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:793
304
  msgid "forums"
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  #, fuzzy
309
  msgid "Help AdRotate Grow"
310
  msgstr "Fastnat med AdRotate? Jag hjälper!"
311
 
312
+ #: adrotate-output.php:886 adrotate.php:152
313
  #, fuzzy
314
  msgid "AdRotate Professional"
315
  msgstr "AdRotate"
316
 
317
+ #: adrotate-output.php:893
318
  msgid ""
319
  "Many users only think to review AdRotate when something goes wrong while "
320
  "thousands of people happily use AdRotate."
321
  msgstr ""
322
 
323
+ #: adrotate-output.php:893
324
  msgid "If you find AdRotate useful please leave your"
325
  msgstr ""
326
 
327
+ #: adrotate-output.php:893
328
  msgid "rating"
329
  msgstr ""
330
 
331
+ #: adrotate-output.php:893
332
  #, fuzzy
333
  msgid "review"
334
  msgstr "Betygsätt och omdöme"
335
 
336
+ #: adrotate-output.php:893
337
  msgid "on WordPress.org to help AdRotate grow in a positive way"
338
  msgstr ""
339
 
340
+ #: adrotate-output.php:894
341
  msgid ""
342
  "Get more advanced features like Geo Targeting, scheduling and much more with "
343
  "AdRotate Pro."
344
  msgstr ""
345
 
346
+ #: adrotate-output.php:894
347
  msgid "Includes premium support and free updates!"
348
  msgstr ""
349
 
350
+ #: adrotate-output.php:894
351
  #, fuzzy
352
  #| msgid "Go Pro today"
353
  msgid "Get started today"
425
  msgid "Not found"
426
  msgstr "Inga filer hittades"
427
 
428
+ #: adrotate-widget.php:134
429
  msgid "Title (optional):"
430
  msgstr "Titel (valfritt):"
431
 
432
+ #: adrotate-widget.php:137
433
  msgid "HTML will be stripped out."
434
  msgstr "HTML kommer att demonteras ut."
435
 
436
+ #: adrotate-widget.php:140
437
  msgid "Description (optional):"
438
  msgstr "Beskrivning (valfritt):"
439
 
440
+ #: adrotate-widget.php:143
441
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
442
  msgstr ""
443
  "Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
444
 
445
+ #: adrotate-widget.php:146
446
  msgid "Type:"
447
  msgstr "Typ:"
448
 
449
+ #: adrotate-widget.php:148
450
  msgid "Advert - Use Advert ID"
451
  msgstr ""
452
 
453
+ #: adrotate-widget.php:149
454
  msgid "Group - Use group ID"
455
  msgstr ""
456
 
457
+ #: adrotate-widget.php:152
458
  msgid "Choose what you want to use this widget for"
459
  msgstr "Välj vad du vill använda denna widget för"
460
 
461
+ #: adrotate-widget.php:155
462
  msgid "ID:"
463
  msgstr "ID:"
464
 
465
+ #: adrotate-widget.php:158
466
  msgid "Fill in the ID of the type you want to display!"
467
  msgstr "Fyll i ID för den typ som du vill visa!"
468
 
636
 
637
  #: dashboard/adrotatepro.php:44
638
  msgid ""
639
+ "When you activate your AdRotate Pro license you can use the more personal "
640
  "email support. No more queueing up in the forums. AdRotate support takes "
641
+ "priority over the forums and is checked once or twice a day. Get a solution "
642
+ "(usually) within two business days."
643
  msgstr ""
644
 
645
  #: dashboard/adrotatepro.php:48
684
  msgstr ""
685
 
686
  #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
687
+ #: dashboard/info.php:90
688
  #, fuzzy
689
  msgid "Buy AdRotate Professional"
690
  msgstr "Köp nu"
691
 
692
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
693
  msgid "Single License"
694
  msgstr ""
695
 
696
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:94
697
  msgid "One WordPress installation."
698
  msgstr ""
699
 
701
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
702
  #: dashboard/adrotatepro.php:98 dashboard/adrotatepro.php:99
703
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
704
+ #: dashboard/info.php:94 dashboard/info.php:95 dashboard/info.php:96
705
+ #: dashboard/info.php:97
706
  #, fuzzy
707
  msgid "Buy now"
708
  msgstr "Köp nu"
709
 
710
  #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
711
+ #: dashboard/info.php:95
712
  #, fuzzy
713
  msgid "Duo License"
714
  msgstr "AdRotate Licens"
715
 
716
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:95
717
  msgid "Two WordPress installations."
718
  msgstr ""
719
 
720
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
721
+ #: dashboard/info.php:96
722
  #, fuzzy
723
  msgid "Multi License"
724
  msgstr "AdRotate Licens"
725
 
726
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:96
727
  #, fuzzy
728
  msgid "Five WordPress installations."
729
  msgstr "Installation"
730
 
731
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
732
+ #: dashboard/info.php:97
733
  #, fuzzy
734
  msgid "Developer License"
735
  msgstr "Utvecklar Debug"
736
 
737
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:97
738
  msgid "Unlimited WordPress installations and/or networks."
739
  msgstr ""
740
 
741
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
742
+ #: dashboard/info.php:98
743
  msgid "Compare licenses"
744
  msgstr ""
745
 
746
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
747
  msgid "Not sure which license is for you? Compare them..."
748
  msgstr ""
749
 
750
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:98
751
  msgid "All Licenses"
752
  msgstr ""
753
 
818
  msgid "Arnan de Gans News & Updates"
819
  msgstr ""
820
 
821
+ #: dashboard/info.php:73
 
 
 
 
 
 
 
 
822
  msgid "Sponsored offers"
823
  msgstr ""
824
 
825
+ #: dashboard/info.php:79
826
  msgid ""
827
  "These are affiliate banners, clicking them costs you nothing but it helps me "
828
  "and AdRotate a lot!"
829
  msgstr ""
830
 
831
+ #: dashboard/info.php:102
832
+ msgid "Join the Media.net advertising network"
833
+ msgstr ""
834
+
835
  #: dashboard/publisher/adverts-disabled.php:15
836
  msgid "Disabled Adverts"
837
  msgstr ""
2513
  msgstr ""
2514
 
2515
  #: dashboard/settings/geotargeting.php:32
2516
+ msgid "20000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2517
  msgstr ""
2518
 
2519
  #: dashboard/settings/geotargeting.php:33
2535
  msgstr ""
2536
 
2537
  #: dashboard/settings/geotargeting.php:36
2538
+ msgid "10000 free lookups per month, requires account."
2539
  msgstr ""
2540
 
2541
  #: dashboard/settings/geotargeting.php:38
2542
+ msgid ""
2543
+ "Suitable for small to medium sized websites with a free account - Paid "
2544
+ "options available."
2545
  msgstr ""
2546
 
2547
  #: dashboard/settings/geotargeting.php:40
2548
+ msgid "The most accurate geo targeting available."
 
 
2549
  msgstr ""
2550
 
2551
  #: dashboard/settings/geotargeting.php:42
3238
  msgstr ""
3239
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
3240
 
3241
+ #, fuzzy
3242
+ #~ msgid "Useful Links"
3243
+ #~ msgstr "Nyttiga länkar"
3244
+
3245
+ #, fuzzy
3246
+ #~ msgid "Getting Started With AdRotate"
3247
+ #~ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
3248
+
3249
+ #, fuzzy
3250
+ #~ msgid "AdRotate manuals"
3251
+ #~ msgstr "AdRotate Information"
3252
+
3253
+ #, fuzzy
3254
+ #~ msgid "AdRotate Support Forum"
3255
+ #~ msgstr "AdRotate butik"
3256
+
3257
  #, fuzzy
3258
  #~ msgid "Push Notifications"
3259
  #~ msgstr "Meddelanden"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.arnan.me/donate.html
4
  Tags: ads, advert, adsense, advertising, doubleclick, responsive adverts, ad manager, banner manager, advert manager, monetise, advertisement, banner
5
  Requires at least: 3.8
6
  Tested up to: 5.0
7
- Stable tag: 4.14
8
  License: GPLv3
9
 
10
  Monetise your website with adverts while keeping things simple. Start making money today!
@@ -97,23 +97,21 @@ You can also post your questions on the [forum](https://ajdg.solutions/forums/)!
97
 
98
  Be a Professional and go Pro. With [AdRotate Professional](https://ajdg.solutions/plugins/adrotate-for-wordpress/)!
99
 
100
- = 4.14 FREE =
101
- * [change] Updated demo banners
102
- * [change] Updated help tabs
103
- * [change] Updated action links
104
 
105
- = 4.17 PRO =
106
- * [change] AdRotate Geo auto-disables when overusing the API
107
- * [change] Updated demo banners
108
- * [change] Updated help tabs
109
- * [change] Updated action links
110
- * [fix] Improved PHP7 compatibility
111
 
112
  All recent changes are available on the [AdRotate website](https://ajdg.solutions/plugins/adrotate-for-wordpress/development/).
113
 
114
  == Upgrade Notice ==
115
 
116
- Updated readme, support documents and dashboard tweaks.
117
 
118
  == Screenshots ==
119
 
4
  Tags: ads, advert, adsense, advertising, doubleclick, responsive adverts, ad manager, banner manager, advert manager, monetise, advertisement, banner
5
  Requires at least: 3.8
6
  Tested up to: 5.0
7
+ Stable tag: 4.15
8
  License: GPLv3
9
 
10
  Monetise your website with adverts while keeping things simple. Start making money today!
97
 
98
  Be a Professional and go Pro. With [AdRotate Professional](https://ajdg.solutions/plugins/adrotate-for-wordpress/)!
99
 
100
+ = 4.15 FREE =
101
+ * [new] Post injection now compatible with Caching plugins
102
+ * [i18n] Updated translations
 
103
 
104
+ = 4.18 PRO =
105
+ * [change] Now uses AdRotate Geo v5
106
+ * [new] Post injection now compatible with Caching plugins
107
+ * [fix] AdRotate Geo sending empty responses
108
+ * [i18n] Updated translations
 
109
 
110
  All recent changes are available on the [AdRotate website](https://ajdg.solutions/plugins/adrotate-for-wordpress/development/).
111
 
112
  == Upgrade Notice ==
113
 
114
+ Improved Post Injection and updated translation files.
115
 
116
  == Screenshots ==
117