Boxzilla - Version 3.2.16

Version Description

Download this release

Release Info

Developer DvanKooten
Plugin Icon 128x128 Boxzilla
Version 3.2.16
Comparing to
See all releases

Code changes from version 3.2.15 to 3.2.16

Files changed (56) hide show
  1. CHANGELOG.md +9 -0
  2. bootstrap.php +4 -0
  3. boxzilla.php +2 -2
  4. languages/boxzilla-cs_CZ.mo +0 -0
  5. languages/boxzilla-cs_CZ.po +0 -491
  6. languages/boxzilla-es_ES.mo +0 -0
  7. languages/boxzilla-es_ES.po +0 -212
  8. languages/boxzilla-fr_FR.mo +0 -0
  9. languages/boxzilla-fr_FR.po +0 -211
  10. languages/boxzilla-nl_NL.mo +0 -0
  11. languages/boxzilla-nl_NL.po +0 -209
  12. languages/boxzilla-ro_RO.mo +0 -0
  13. languages/boxzilla-ro_RO.po +0 -468
  14. languages/boxzilla.pot +131 -83
  15. languages/index.php +7 -0
  16. phpcs.xml +46 -0
  17. readme.txt +11 -2
  18. src/admin/class-admin.php +775 -799
  19. src/admin/class-autocomplete.php +107 -96
  20. src/admin/class-installer.php +88 -92
  21. src/admin/class-menu.php +109 -110
  22. src/admin/class-migrations.php +86 -90
  23. src/admin/class-notices.php +38 -41
  24. src/admin/class-review-notice.php +67 -71
  25. src/admin/migrations/3.1-cookie-option.php +16 -16
  26. src/admin/migrations/3.1.11-screen-width-condition.php +19 -19
  27. src/admin/views/extensions.php +17 -15
  28. src/admin/views/metaboxes/box-appearance-controls.php +24 -24
  29. src/admin/views/metaboxes/box-option-controls.php +243 -231
  30. src/admin/views/metaboxes/email-optin.php +4 -4
  31. src/admin/views/metaboxes/need-help.php +5 -5
  32. src/admin/views/metaboxes/our-other-plugins.php +1 -1
  33. src/admin/views/settings.php +15 -15
  34. src/class-bootstrapper.php +105 -0
  35. src/class-box.php +254 -262
  36. src/class-boxzilla-service-provider.php +52 -51
  37. src/class-boxzilla.php +2 -3
  38. src/class-loader.php +332 -338
  39. src/class-php-fallback.php +55 -58
  40. src/class-plugin.php +105 -113
  41. src/default-actions.php +66 -61
  42. src/default-filters.php +23 -19
  43. src/di/class-container-with-property-access.php +42 -47
  44. src/di/class-container.php +237 -248
  45. src/di/interface-service-provider.php +11 -11
  46. src/functions.php +6 -7
  47. src/licensing/class-api-exception.php +26 -28
  48. src/licensing/class-api.php +166 -174
  49. src/licensing/class-license-manager.php +171 -179
  50. src/licensing/class-license-service-provider.php +30 -31
  51. src/licensing/class-license.php +101 -108
  52. src/licensing/class-poller.php +53 -56
  53. src/licensing/class-update-manager.php +251 -247
  54. src/licensing/views/license-form.php +42 -32
  55. vendor/composer/autoload_classmap.php +1 -0
  56. vendor/composer/autoload_static.php +1 -0
CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
  Changelog
2
  ==========
3
 
 
 
 
 
 
 
 
 
 
4
  #### 3.2.15 - Nov 6, 2019
5
 
6
  **Improvements**
1
  Changelog
2
  ==========
3
 
4
+ #### 3.2.16 - Nov 15, 2019
5
+
6
+ **Improvements**
7
+
8
+ Roll-back a change in version 3.2.15 that caused an issue with Boxzilla Theme Pack and Boxzilla WooCommerce.
9
+
10
+ Please make sure your [Boxzilla plugin license](https://my.boxzillaplugin.com/) is activated and then update Boxzilla Theme Pack and Boxzilla WooCommerce to the latest version.
11
+
12
+
13
  #### 3.2.15 - Nov 6, 2019
14
 
15
  **Improvements**
bootstrap.php CHANGED
@@ -43,4 +43,8 @@ add_action( 'plugins_loaded', function() use( $boxzilla ) {
43
  $boxzilla['update_manager']->init();
44
  }
45
  }
 
 
 
 
46
  }, 90 );
43
  $boxzilla['update_manager']->init();
44
  }
45
  }
46
+
47
+ // for legacy reasons: Boxzilla Theme Pack & Boxzilla WooCommerce used this
48
+ // we will be removing this in future versions
49
+ $boxzilla['bootstrapper']->run();
50
  }, 90 );
boxzilla.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Boxzilla
4
- Version: 3.2.15
5
  Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
6
  Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
7
  Author: ibericode
@@ -41,7 +41,7 @@ if ( ! defined( 'ABSPATH' ) ) {
41
  function _load_boxzilla() {
42
 
43
  define( 'BOXZILLA_FILE', __FILE__ );
44
- define('BOXZILLA_VERSION', '3.2.15');
45
 
46
  require __DIR__ . '/bootstrap.php';
47
  }
1
  <?php
2
  /*
3
  Plugin Name: Boxzilla
4
+ Version: 3.2.16
5
  Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
6
  Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
7
  Author: ibericode
41
  function _load_boxzilla() {
42
 
43
  define( 'BOXZILLA_FILE', __FILE__ );
44
+ define('BOXZILLA_VERSION', '3.2.16');
45
 
46
  require __DIR__ . '/bootstrap.php';
47
  }
languages/boxzilla-cs_CZ.mo DELETED
Binary file
languages/boxzilla-cs_CZ.po DELETED
@@ -1,491 +0,0 @@
1
- # Copyright (C) 2018 boxzilla
2
- # This file is distributed under the same license as the boxzilla package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: boxzilla\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "X-Poedit-Basepath: ..\n"
10
- "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
11
- "_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
12
- "esc_html_e;esc_html_x:1,2c\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
- "POT-Creation-Date: \n"
16
- "PO-Revision-Date: \n"
17
- "Language-Team: Webstudio <webstudio@petrbok.cz>\n"
18
- "X-Generator: Poedit 1.8.9\n"
19
- "Last-Translator: Webstudio Petrbok <webstudio@petrbok.cz>\n"
20
- "Language: cs_CZ\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
-
24
- #: src/default-actions.php:12, src/default-actions.php:24
25
- msgid "Boxzilla"
26
- msgstr "Boxzilla"
27
-
28
- #: src/default-actions.php:13
29
- msgid "Box"
30
- msgstr "Box"
31
-
32
- #: src/default-actions.php:14
33
- msgid "Add New"
34
- msgstr "Přidat nový"
35
-
36
- #: src/default-actions.php:15
37
- msgid "Add New Box"
38
- msgstr "Přidat nový box"
39
-
40
- #: src/default-actions.php:16
41
- msgid "Edit Box"
42
- msgstr "Upravit box"
43
-
44
- #: src/default-actions.php:17
45
- msgid "New Box"
46
- msgstr "Nový box"
47
-
48
- #: src/default-actions.php:18
49
- msgid "All Boxes"
50
- msgstr "Všechny boxy"
51
-
52
- #: src/default-actions.php:19
53
- msgid "View Box"
54
- msgstr "Zobrazit box"
55
-
56
- #: src/default-actions.php:20
57
- msgid "Search Boxes"
58
- msgstr "Hledat box"
59
-
60
- #: src/default-actions.php:21
61
- msgid "No Boxes found"
62
- msgstr "Nenalezen žádný box"
63
-
64
- #: src/default-actions.php:22
65
- msgid "No Boxes found in Trash"
66
- msgstr "V koši nenalezen žádný box"
67
-
68
- #: src/admin/class-admin.php:104
69
- msgid ""
70
- "Awesome, you are using Boxzilla! You can now safely <a href=\"%s"
71
- "\">deactivate the Scroll Triggered Boxes plugin</a>."
72
- msgstr ""
73
- "Skvělé, používáte Boxzilla! Nyní můžete bezpečně <a href=\"%s\">deaktivovat "
74
- "plugin Scroll Triggered Boxes"
75
-
76
- #: src/admin/class-admin.php:172
77
- msgid "Box ID"
78
- msgstr "Box ID"
79
-
80
- #: src/admin/class-admin.php:175
81
- msgid "Box Title"
82
- msgstr "Název boxu"
83
-
84
- #: src/admin/class-admin.php:209, src/admin/class-admin.php:210,
85
- #: src/admin/views/settings.php:7
86
- msgid "Settings"
87
- msgstr "Nastavení"
88
-
89
- #: src/admin/class-admin.php:215, src/admin/class-admin.php:216
90
- msgid "Extensions"
91
- msgstr "Rozšíření"
92
-
93
- #: src/admin/class-admin.php:308
94
- msgid "Enter a comma-separated list of values."
95
- msgstr "Zadejte seznam hodnot oddělených čárkami."
96
-
97
- #: src/admin/class-admin.php:309
98
- msgid "Enter a comma-separated list of post slugs or post ID's.."
99
- msgstr "Zadejte seznam příspěvků nebo ID příspěvků oddělených čárkami.."
100
-
101
- #: src/admin/class-admin.php:310
102
- msgid "Enter a comma-separated list of page slugs or page ID's.."
103
- msgstr "Zadejte seznam stránek nebo ID stránek, oddělených čárkami.."
104
-
105
- #: src/admin/class-admin.php:311
106
- msgid "Enter a comma-separated list of post types.."
107
- msgstr "Zadejte seznam typů příspěvků oddělených čárkami.."
108
-
109
- #: src/admin/class-admin.php:312
110
- msgid "Enter a comma-separated list of relative URL's, eg /contact/"
111
- msgstr ""
112
- "Zadejte seznam relativních adres URL oddělených čárkami, např. / kontakt /"
113
-
114
- #: src/admin/class-admin.php:344
115
- msgid "Box Appearance"
116
- msgstr "Vzhled boxu"
117
-
118
- #: src/admin/class-admin.php:353
119
- msgid "Box Options"
120
- msgstr "Možnosti boxu"
121
-
122
- #: src/admin/class-admin.php:362
123
- msgid "Looking for help?"
124
- msgstr "Hledáte pomoc?"
125
-
126
- #: src/admin/class-admin.php:370
127
- msgid "Subscribe to our newsletter"
128
- msgstr "Přihlásit se k odběru novinek"
129
-
130
- #: src/admin/class-review-notice.php:74
131
- msgid "You've been using Boxzilla for some time now; we hope you love it!"
132
- msgstr "Používáte Boxzilla už nějakou dobu; Doufáme, že ji milujete!"
133
-
134
- #: src/admin/class-review-notice.php:75
135
- msgid ""
136
- "If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
137
- "It would be of great help to us."
138
- msgstr ""
139
- "Pokud můžete, prosím <a href=\"%s\">ohodnoťte nás 5★ na WordPress.org</a>. "
140
- "Byl by pro nás velkou pomocí."
141
-
142
- #: src/admin/class-review-notice.php:77
143
- msgid "Dismiss this notice."
144
- msgstr "Zrušit toto oznámení."
145
-
146
- #: src/licensing/class-api.php:165
147
- msgid "The Boxzilla server returned an invalid response."
148
- msgstr "Server Boxzilla vrátil neplatnou odpověď."
149
-
150
- #: src/admin/views/extensions.php:4
151
- msgid "Available Add-On Plugins"
152
- msgstr "Dostupné doplňky pro pluginy"
153
-
154
- #: src/admin/views/extensions.php:6
155
- msgid ""
156
- "There are various add-ons available for Boxzilla which further enhance the "
157
- "functionality of the core plugin."
158
- msgstr ""
159
- "K dispozici jsou různé doplňky pro Boxzilla, které dále zvyšují funkčnost "
160
- "hlavního pluginu."
161
-
162
- #: src/admin/views/extensions.php:9
163
- msgid ""
164
- "To gain instant access the premium add-on plugins listed here, <a href=\"%s"
165
- "\">have a look at our pricing</a>."
166
- msgstr ""
167
- "Chcete-li získat okamžitý přístup k přídavným modulům plug-in Premium "
168
- "uvedených zde, <a href=\"%s\"> podívejte se na naše ceny</a>."
169
-
170
- #: src/admin/views/extensions.php:18
171
- msgid "You will be redirected to the Boxzilla site in a few seconds.."
172
- msgstr "Budete přesměrováni na stránku Boxzilla během několika sekund .."
173
-
174
- #: src/admin/views/extensions.php:19
175
- msgid "If not, please click here: %s."
176
- msgstr "Pokud ne, klikněte zde: %s."
177
-
178
- #: src/admin/views/settings.php:20,
179
- #: src/admin/views/metaboxes/box-option-controls.php:196
180
- msgid "Enable test mode?"
181
- msgstr "Povolit testovací režim?"
182
-
183
- #: src/admin/views/settings.php:24,
184
- #: src/admin/views/metaboxes/box-option-controls.php:200
185
- msgid ""
186
- "If test mode is enabled, all boxes will show up regardless of whether a "
187
- "cookie has been set."
188
- msgstr ""
189
- "Je-li testovací režim zapnutý, zobrazí se všechna pole bez ohledu na to, zda "
190
- "byl nastaven soubor cookie."
191
-
192
- #: src/licensing/views/license-form.php:8
193
- msgid "License & Plugin Updates"
194
- msgstr "Licence & aktualizace pluginu"
195
-
196
- #: src/licensing/views/license-form.php:13
197
- msgid ""
198
- "Warning! You are <u>not</u> receiving plugin updates for the following "
199
- "plugin(s):"
200
- msgstr ""
201
- "Varování! Nemůžete <u> obdržet </ u> aktualizace pluginů pro následující "
202
- "zásuvný modul(y):"
203
-
204
- #: src/licensing/views/license-form.php:33
205
- msgid "License Key"
206
- msgstr "Licenční klíč"
207
-
208
- #: src/licensing/views/license-form.php:35
209
- msgid "Enter your license key.."
210
- msgstr "Zadejte váš licenční klíč.."
211
-
212
- #: src/licensing/views/license-form.php:38
213
- msgid ""
214
- "The license key received when purchasing your premium Boxzilla plan. <a href="
215
- "\"%s\">You can find it here</a>."
216
- msgstr ""
217
- "Licenční klíč byl přijat při nákupu vašeho prémium Boxzilla planu. <a href="
218
- "\"%s\">Naleznete ho zde</a>."
219
-
220
- #: src/licensing/views/license-form.php:43
221
- msgid "License Status"
222
- msgstr "Stav licence"
223
-
224
- #: src/licensing/views/license-form.php:47
225
- msgid "ACTIVE"
226
- msgstr "AKTIVNÍ"
227
-
228
- #: src/licensing/views/license-form.php:47
229
- msgid "you are receiving plugin updates"
230
- msgstr "obdržíte aktualizace pluginu"
231
-
232
- #: src/licensing/views/license-form.php:49
233
- msgid "INACTIVE"
234
- msgstr "NEAKTIVNÍ"
235
-
236
- #: src/licensing/views/license-form.php:49
237
- msgid "you are <strong>not</strong> receiving plugin updates"
238
- msgstr "Vy <strong>neobdržíte</strong> aktualizace pluginů"
239
-
240
- #: src/admin/views/metaboxes/box-appearance-controls.php:2
241
- msgid ""
242
- "For the best experience when styling your box, please use the default "
243
- "WordPress visual editor."
244
- msgstr ""
245
- "Pro nejlepší zážitek při úpravě stylu vašeho boxu použijte výchozí vizuální "
246
- "editor WordPress."
247
-
248
- #: src/admin/views/metaboxes/box-appearance-controls.php:8
249
- msgid "Background color"
250
- msgstr "Barva pozadí"
251
-
252
- #: src/admin/views/metaboxes/box-appearance-controls.php:12
253
- msgid "Text color"
254
- msgstr "Barva textu"
255
-
256
- #: src/admin/views/metaboxes/box-appearance-controls.php:16
257
- msgid "Box width"
258
- msgstr "Box šířka"
259
-
260
- #: src/admin/views/metaboxes/box-appearance-controls.php:18,
261
- #: src/admin/views/metaboxes/box-appearance-controls.php:29
262
- msgid "Width in px"
263
- msgstr "Šířka v px"
264
-
265
- #: src/admin/views/metaboxes/box-appearance-controls.php:23
266
- msgid "Border color"
267
- msgstr "Barva ohraničení"
268
-
269
- #: src/admin/views/metaboxes/box-appearance-controls.php:27
270
- msgid "Border width"
271
- msgstr "Šířka ohraničení"
272
-
273
- #: src/admin/views/metaboxes/box-appearance-controls.php:32,
274
- #: src/admin/views/metaboxes/box-appearance-controls.php:40
275
- msgid "Border style"
276
- msgstr "Styl ohraničení"
277
-
278
- #: src/admin/views/metaboxes/box-appearance-controls.php:46
279
- msgid "<a href=\"%s\">Click here to reset all styling settings</a>."
280
- msgstr ""
281
- "<a href=\"%s\">Chcete-li obnovit všechna nastavení stylů klikněte zde</a>."
282
-
283
- #: src/admin/views/metaboxes/box-option-controls.php:11
284
- msgid "everywhere"
285
- msgstr "všude"
286
-
287
- #: src/admin/views/metaboxes/box-option-controls.php:12
288
- msgid "if page"
289
- msgstr "pokud stránka"
290
-
291
- #: src/admin/views/metaboxes/box-option-controls.php:13
292
- msgid "if post"
293
- msgstr "pokud příspěvek"
294
-
295
- #: src/admin/views/metaboxes/box-option-controls.php:14
296
- msgid "if post tag"
297
- msgstr "pokud tag příspěvku"
298
-
299
- #: src/admin/views/metaboxes/box-option-controls.php:15
300
- msgid "if post category"
301
- msgstr "pokud kategorie"
302
-
303
- #: src/admin/views/metaboxes/box-option-controls.php:16
304
- msgid "if post type"
305
- msgstr "pokud typ příspěvku"
306
-
307
- #: src/admin/views/metaboxes/box-option-controls.php:17
308
- msgid "if URL"
309
- msgstr "pokud URL"
310
-
311
- #: src/admin/views/metaboxes/box-option-controls.php:18
312
- msgid "if referer"
313
- msgstr "pokud referer"
314
-
315
- #: src/admin/views/metaboxes/box-option-controls.php:19
316
- msgid "if user"
317
- msgstr "pokud uživatel"
318
-
319
- #: src/admin/views/metaboxes/box-option-controls.php:38
320
- msgid "Load this box if"
321
- msgstr "Načíst tento box pokud"
322
-
323
- #: src/admin/views/metaboxes/box-option-controls.php:41
324
- msgid "Request matches"
325
- msgstr "Požádat o shodu"
326
-
327
- #: src/admin/views/metaboxes/box-option-controls.php:43
328
- msgid "any"
329
- msgstr "žádný"
330
-
331
- #: src/admin/views/metaboxes/box-option-controls.php:44
332
- msgid "all"
333
- msgstr "vše"
334
-
335
- #: src/admin/views/metaboxes/box-option-controls.php:46
336
- msgid "of the following conditions."
337
- msgstr "za následujících podmínek."
338
-
339
- #: src/admin/views/metaboxes/box-option-controls.php:56,
340
- #: src/admin/views/metaboxes/box-option-controls.php:216
341
- msgid "Remove rule"
342
- msgstr "Odstranit pravidlo"
343
-
344
- #: src/admin/views/metaboxes/box-option-controls.php:66,
345
- #: src/admin/views/metaboxes/box-option-controls.php:225
346
- msgid "is"
347
- msgstr "je"
348
-
349
- #: src/admin/views/metaboxes/box-option-controls.php:67,
350
- #: src/admin/views/metaboxes/box-option-controls.php:226
351
- msgid "is not"
352
- msgstr "není"
353
-
354
- #: src/admin/views/metaboxes/box-option-controls.php:70,
355
- #: src/admin/views/metaboxes/box-option-controls.php:229
356
- msgid "Leave empty for any or enter (comma-separated) names or ID's"
357
- msgstr ""
358
- "Ponechte prázdné pro všechny nebo zadejte (oddělené čárkami) jména nebo ID"
359
-
360
- #: src/admin/views/metaboxes/box-option-controls.php:78
361
- msgid "Add rule"
362
- msgstr "Přidat pravidlo"
363
-
364
- #: src/admin/views/metaboxes/box-option-controls.php:81
365
- msgid "Box Position"
366
- msgstr "Umístění boxu"
367
-
368
- #: src/admin/views/metaboxes/box-option-controls.php:87
369
- msgid "Top Left"
370
- msgstr "Vlevo nahoře"
371
-
372
- #: src/admin/views/metaboxes/box-option-controls.php:94
373
- msgid "Top Right"
374
- msgstr "Vpravo nahoře"
375
-
376
- #: src/admin/views/metaboxes/box-option-controls.php:103
377
- msgid "Center"
378
- msgstr "Střed"
379
-
380
- #: src/admin/views/metaboxes/box-option-controls.php:112
381
- msgid "Bottom Left"
382
- msgstr "Vlevo dole"
383
-
384
- #: src/admin/views/metaboxes/box-option-controls.php:119
385
- msgid "Bottom Right"
386
- msgstr "Vpravo dole"
387
-
388
- #: src/admin/views/metaboxes/box-option-controls.php:128
389
- msgid "Animation"
390
- msgstr "Animace"
391
-
392
- #: src/admin/views/metaboxes/box-option-controls.php:130
393
- msgid "Fade In"
394
- msgstr "pozvolna sílit"
395
-
396
- #: src/admin/views/metaboxes/box-option-controls.php:131
397
- msgid "Slide In"
398
- msgstr "zasunout"
399
-
400
- #: src/admin/views/metaboxes/box-option-controls.php:132
401
- msgid "Which animation type should be used to show the box when triggered?"
402
- msgstr "Který typ animace by měl být použit při zobrazení spouštěcího boxu?"
403
-
404
- #: src/admin/views/metaboxes/box-option-controls.php:136
405
- msgid "Auto-show box?"
406
- msgstr "Automatické zobrazení boxu?"
407
-
408
- #: src/admin/views/metaboxes/box-option-controls.php:138
409
- msgid "Never"
410
- msgstr "Nikdy"
411
-
412
- #: src/admin/views/metaboxes/box-option-controls.php:139
413
- msgid "Yes, after %s seconds on the page."
414
- msgstr "Ano, po %s sekundách na stránce."
415
-
416
- #: src/admin/views/metaboxes/box-option-controls.php:140
417
- msgid "Yes, when at %s of page height"
418
- msgstr "Ano, při %s výšky stránky"
419
-
420
- #: src/admin/views/metaboxes/box-option-controls.php:141
421
- msgid "Yes, when at element %s"
422
- msgstr "Ano, když na prvku %s"
423
-
424
- #: src/admin/views/metaboxes/box-option-controls.php:141
425
- msgid "Example: #comments"
426
- msgstr "Příklad: #comentáře"
427
-
428
- #: src/admin/views/metaboxes/box-option-controls.php:147
429
- msgid "Cookie expiration"
430
- msgstr "Vypršení platnosti cookie"
431
-
432
- #: src/admin/views/metaboxes/box-option-controls.php:152,
433
- #: src/admin/views/metaboxes/box-option-controls.php:157
434
- msgid "hours"
435
- msgstr "hodin"
436
-
437
- #: src/admin/views/metaboxes/box-option-controls.php:161
438
- msgid ""
439
- "After this box is triggered or dismissed, how many hours should it stay "
440
- "hidden?"
441
- msgstr ""
442
- "Po spuštění nebo odmítnutí tohoto boxu, kolik hodin by mělo zůstat skryto?"
443
-
444
- #: src/admin/views/metaboxes/box-option-controls.php:165
445
- msgid "Screen width"
446
- msgstr "Šířka obrazovky"
447
-
448
- #: src/admin/views/metaboxes/box-option-controls.php:170
449
- msgid "larger"
450
- msgstr "větší"
451
-
452
- #: src/admin/views/metaboxes/box-option-controls.php:170
453
- msgid "smaller"
454
- msgstr "menší"
455
-
456
- #: src/admin/views/metaboxes/box-option-controls.php:171
457
- msgid "Only show on screens %s than %s."
458
- msgstr "Zobrazovat se pouze na obrazovkách %s než %s."
459
-
460
- #: src/admin/views/metaboxes/box-option-controls.php:172
461
- msgid "Leave empty if you want to show the box on all screen sizes."
462
- msgstr ""
463
- "Ponechte prázdné, chcete-li zobrazit pole na všech velikostech obrazovky."
464
-
465
- #: src/admin/views/metaboxes/box-option-controls.php:177
466
- msgid "Auto-hide?"
467
- msgstr "Auto-skrývání?"
468
-
469
- #: src/admin/views/metaboxes/box-option-controls.php:181
470
- msgid "Hide box again when visitors scroll back up?"
471
- msgstr "Skrýt box znovu, když se návštěvníci posouvají zpět?"
472
-
473
- #: src/admin/views/metaboxes/box-option-controls.php:185
474
- msgid "Show close icon?"
475
- msgstr "Zobrazit ikonu zavřít?"
476
-
477
- #: src/admin/views/metaboxes/box-option-controls.php:190
478
- msgid ""
479
- "If you decide to hide the close icon, make sure to offer an alternative way "
480
- "to close the box."
481
- msgstr ""
482
- "Pokud se rozhodnete skrýt ikonu zavření, ujistěte se, že nabízíte "
483
- "alternativní způsob uzavření boxu."
484
-
485
- #: src/admin/views/metaboxes/box-option-controls.php:191
486
- msgid "Example: "
487
- msgstr "Příklad: "
488
-
489
- #: src/admin/views/metaboxes/need-help.php:2
490
- msgid "Please make sure to look at the following available resources."
491
- msgstr "Nezapomeňte se podívat na následující dostupné zdroje."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/boxzilla-es_ES.mo DELETED
Binary file
languages/boxzilla-es_ES.po DELETED
@@ -1,212 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Scroll Triggered Boxes\n"
4
- "POT-Creation-Date: 2014-04-18 12:14+0100\n"
5
- "PO-Revision-Date: 2014-06-23 01:46+0100\n"
6
- "Last-Translator: Danny <hi@dannyvankooten.com>\n"
7
- "Language-Team: Danny van Kooten <hi@dannyvankooten.com>\n"
8
- "Language: en_US\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.5\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #: ../includes/class-admin.php:58
19
- msgid "Box Options"
20
- msgstr "Opciones de caja"
21
-
22
- #: ../includes/class-admin.php:67
23
- msgid "Need support?"
24
- msgstr "¿Necesitas soporte?"
25
-
26
- #: ../includes/class-admin.php:75
27
- msgid "Donate $10, $20 or $50"
28
- msgstr "Dona 10, 20 o 50 dólares"
29
-
30
- #: ../includes/class-admin.php:83
31
- msgid "About the developer"
32
- msgstr "Sobre el desarrollador"
33
-
34
- #: ../includes/views/metabox-options.php:7
35
- msgid "Scroll Triggered Box Options"
36
- msgstr "Opciones de Scroll Triggered Box"
37
-
38
- #: ../includes/views/metabox-options.php:9
39
- msgid "Display Options"
40
- msgstr "Opciones de visualización"
41
-
42
- #: ../includes/views/metabox-options.php:15
43
- msgid "Show this box"
44
- msgstr "Mostrar esta caja"
45
-
46
- #: ../includes/views/metabox-options.php:18
47
- msgid "Basic"
48
- msgstr "Básico"
49
-
50
- #: ../includes/views/metabox-options.php:19
51
- msgid "Everywhere"
52
- msgstr "En todas partes"
53
-
54
- #: ../includes/views/metabox-options.php:20
55
- msgid "if Post Type is"
56
- msgstr "Si la entrada es de tipo"
57
-
58
- #: ../includes/views/metabox-options.php:21
59
- msgid "if Page is"
60
- msgstr "Si la página es"
61
-
62
- #: ../includes/views/metabox-options.php:22
63
- msgid "if Page is not"
64
- msgstr "Si la página no es"
65
-
66
- #: ../includes/views/metabox-options.php:23
67
- msgid "if Post is"
68
- msgstr "Si la entrada es"
69
-
70
- #: ../includes/views/metabox-options.php:25
71
- msgid "Advanced"
72
- msgstr "Avanzado"
73
-
74
- #: ../includes/views/metabox-options.php:26
75
- msgid "Manual conditon"
76
- msgstr "Condicion manual"
77
-
78
- #: ../includes/views/metabox-options.php:31
79
- msgid "Leave empty for any or enter (comma-separated) names or ID's"
80
- msgstr ""
81
- "Dejar en blanco para cualquiera o introduzca (separado por comas) nombres o "
82
- "IDs"
83
-
84
- #: ../includes/views/metabox-options.php:39
85
- msgid "Add rule"
86
- msgstr "Añadir regla"
87
-
88
- #: ../includes/views/metabox-options.php:42
89
- #, php-format
90
- msgid ""
91
- "For using advanced (manual) rules, have a look at %sthe WordPress "
92
- "Conditional Tags Codex page%s."
93
- msgstr ""
94
- "Para el uso de reglas avanzadas (manuales) echar un vistazo a las "
95
- "%setiquetas condicionales de WordPress en el Codex%s"
96
-
97
- #: ../includes/views/metabox-options.php:45
98
- msgid "Box Position"
99
- msgstr "Posición de la caja"
100
-
101
- #: ../includes/views/metabox-options.php:48
102
- msgid "Top Left"
103
- msgstr "Arriba a la izquierda"
104
-
105
- #: ../includes/views/metabox-options.php:49
106
- msgid "Top Right"
107
- msgstr "Arriba a la derecha"
108
-
109
- #: ../includes/views/metabox-options.php:50
110
- msgid "Bottom Left"
111
- msgstr "Abajo a la izquierda"
112
-
113
- #: ../includes/views/metabox-options.php:51
114
- msgid "Bottom Right"
115
- msgstr "Abajo a la derecha"
116
-
117
- #: ../includes/views/metabox-options.php:57
118
- msgid "Trigger Point"
119
- msgstr "Punto de disparo"
120
-
121
- #: ../includes/views/metabox-options.php:61
122
- msgid "of page height"
123
- msgstr "de altura de la página"
124
-
125
- #: ../includes/views/metabox-options.php:64
126
- msgid "Element Selector"
127
- msgstr "Selecto de elementos"
128
-
129
- #: ../includes/views/metabox-options.php:70
130
- msgid "Example: #comments (element must exist or box won't be shown)"
131
- msgstr ""
132
- "Ejemplo: #Comentarios (el elemento debe existir o la caja no será mostrada)"
133
-
134
- #: ../includes/views/metabox-options.php:74
135
- msgid "Animation"
136
- msgstr "Animación"
137
-
138
- #: ../includes/views/metabox-options.php:76
139
- msgid "Fade In"
140
- msgstr "Fade In"
141
-
142
- #: ../includes/views/metabox-options.php:77
143
- msgid "Slide In"
144
- msgstr "Slide in"
145
-
146
- #: ../includes/views/metabox-options.php:78
147
- msgid "Which animation type should be used to show the box when triggered?"
148
- msgstr ""
149
- "¿Qué tipo de animación se debe utilizar cuando se activa el desencadenador "
150
- "de la caja?"
151
-
152
- #: ../includes/views/metabox-options.php:82
153
- msgid "Cookie expiration days"
154
- msgstr "Dias de vencimiento de la cookie"
155
-
156
- #: ../includes/views/metabox-options.php:85
157
- msgid "After closing the box, how many days should it stay hidden?"
158
- msgstr "Después de cerrar la caja, ¿cuantos días debería permanecer oculta?"
159
-
160
- #: ../includes/views/metabox-options.php:90
161
- msgid "Auto-hide?"
162
- msgstr "¿Auto-ocultar?"
163
-
164
- #: ../includes/views/metabox-options.php:92
165
- #: ../includes/views/metabox-options.php:101
166
- msgid "Yes"
167
- msgstr "Si"
168
-
169
- #: ../includes/views/metabox-options.php:93
170
- #: ../includes/views/metabox-options.php:102
171
- msgid "No"
172
- msgstr "No"
173
-
174
- #: ../includes/views/metabox-options.php:94
175
- msgid "Hide box again when visitors scroll back up?"
176
- msgstr "¿Ocultar la caja cuando los visitantes se desplacen hacia arriba?"
177
-
178
- #: ../includes/views/metabox-options.php:99
179
- msgid "Enable test mode?"
180
- msgstr "¿Activar el modo de prueba?"
181
-
182
- #: ../includes/views/metabox-options.php:103
183
- msgid ""
184
- "If test mode is enabled, the box will show up regardless of whether a cookie "
185
- "has been set."
186
- msgstr ""
187
- "Si el modo de pruebas está activo, la caja se mostrará independientemente de "
188
- "la configuración de cookie establecida."
189
-
190
- #: ../includes/views/metabox-options.php:108
191
- msgid "Appearance"
192
- msgstr "Apariencia"
193
-
194
- #: ../includes/views/metabox-options.php:112
195
- msgid "Background color"
196
- msgstr "Color de fondo"
197
-
198
- #: ../includes/views/metabox-options.php:116
199
- msgid "Text color"
200
- msgstr "Color del texto"
201
-
202
- #: ../includes/views/metabox-options.php:120
203
- msgid "Box width"
204
- msgstr "Ancho de la caja"
205
-
206
- #: ../includes/views/metabox-options.php:126
207
- msgid "Border color"
208
- msgstr "Color del borde"
209
-
210
- #: ../includes/views/metabox-options.php:130
211
- msgid "Border width"
212
- msgstr "Ancho del borde"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/boxzilla-fr_FR.mo DELETED
Binary file
languages/boxzilla-fr_FR.po DELETED
@@ -1,211 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Scroll Triggered Boxes\n"
4
- "POT-Creation-Date: 2014-04-18 12:14+0100\n"
5
- "PO-Revision-Date: 2016-06-09 11:58+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.5.5\n"
12
- "X-Poedit-Basepath: .\n"
13
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../includes/class-admin.php:58
18
- msgid "Box Options"
19
- msgstr "Options de boîte"
20
-
21
- #: ../includes/class-admin.php:67
22
- msgid "Need support?"
23
- msgstr "Besoin de support ?"
24
-
25
- #: ../includes/class-admin.php:75
26
- msgid "Donate $10, $20 or $50"
27
- msgstr "Donner 10 $, 20 $ ou 50 $"
28
-
29
- #: ../includes/class-admin.php:83
30
- msgid "About the developer"
31
- msgstr "A propos du développeur"
32
-
33
- #: ../includes/views/metabox-options.php:7
34
- msgid "Scroll Triggered Box Options"
35
- msgstr "Options de Scroll Triggered Box"
36
-
37
- #: ../includes/views/metabox-options.php:9
38
- msgid "Display Options"
39
- msgstr "Options d'affichage"
40
-
41
- #: ../includes/views/metabox-options.php:15
42
- msgid "Show this box"
43
- msgstr "Afficher cette boîte"
44
-
45
- #: ../includes/views/metabox-options.php:18
46
- msgid "Basic"
47
- msgstr "Basique"
48
-
49
- #: ../includes/views/metabox-options.php:19
50
- msgid "Everywhere"
51
- msgstr "Partout sur le site"
52
-
53
- #: ../includes/views/metabox-options.php:20
54
- msgid "if Post Type is"
55
- msgstr "Si le Post Type est"
56
-
57
- #: ../includes/views/metabox-options.php:21
58
- msgid "if Page is"
59
- msgstr "Si la page est"
60
-
61
- #: ../includes/views/metabox-options.php:22
62
- msgid "if Page is not"
63
- msgstr "Si la page n'est pas"
64
-
65
- #: ../includes/views/metabox-options.php:23
66
- msgid "if Post is"
67
- msgstr "Si l'article est"
68
-
69
- #: ../includes/views/metabox-options.php:25
70
- msgid "Advanced"
71
- msgstr "Avancé"
72
-
73
- #: ../includes/views/metabox-options.php:26
74
- msgid "Manual conditon"
75
- msgstr "Condition manuelle"
76
-
77
- #: ../includes/views/metabox-options.php:31
78
- msgid "Leave empty for any or enter (comma-separated) names or ID's"
79
- msgstr ""
80
- "Laisser vide pour tous ou une liste de noms ou d'ID séparés par des virgules"
81
-
82
- #: ../includes/views/metabox-options.php:39
83
- msgid "Add rule"
84
- msgstr "Ajouter une règle"
85
-
86
- #: ../includes/views/metabox-options.php:42
87
- #, php-format
88
- msgid ""
89
- "For using advanced (manual) rules, have a look at %sthe WordPress "
90
- "Conditional Tags Codex page%s."
91
- msgstr ""
92
- "Pour des régles manuelles avancées, voir %sthe WordPress Conditional Tags "
93
- "Codex page%s."
94
-
95
- #: ../includes/views/metabox-options.php:45
96
- msgid "Box Position"
97
- msgstr "Position de la boîte"
98
-
99
- #: ../includes/views/metabox-options.php:48
100
- msgid "Top Left"
101
- msgstr "En haut à gauche"
102
-
103
- #: ../includes/views/metabox-options.php:49
104
- msgid "Top Right"
105
- msgstr "En haut à droite"
106
-
107
- #: ../includes/views/metabox-options.php:50
108
- msgid "Bottom Left"
109
- msgstr "En bas à gauche"
110
-
111
- #: ../includes/views/metabox-options.php:51
112
- msgid "Bottom Right"
113
- msgstr "En bas à droite"
114
-
115
- #: ../includes/views/metabox-options.php:57
116
- msgid "Trigger Point"
117
- msgstr "Seuil de déclenchement"
118
-
119
- #: ../includes/views/metabox-options.php:61
120
- msgid "of page height"
121
- msgstr "de la hauteur de la page"
122
-
123
- #: ../includes/views/metabox-options.php:64
124
- msgid "Element Selector"
125
- msgstr "Un élément précis dans la page"
126
-
127
- #: ../includes/views/metabox-options.php:70
128
- msgid "Example: #comments (element must exist or box won't be shown)"
129
- msgstr ""
130
- "Exemple: #comments (l'élément doit exister sinon la boîte n'apparaîtra pas)"
131
-
132
- #: ../includes/views/metabox-options.php:74
133
- msgid "Animation"
134
- msgstr "Animation"
135
-
136
- #: ../includes/views/metabox-options.php:76
137
- msgid "Fade In"
138
- msgstr "Fondu enchaîné"
139
-
140
- #: ../includes/views/metabox-options.php:77
141
- msgid "Slide In"
142
- msgstr "Glissement"
143
-
144
- #: ../includes/views/metabox-options.php:78
145
- msgid "Which animation type should be used to show the box when triggered?"
146
- msgstr "Quelle type d'animation lors de l'apparition de le boîte ?"
147
-
148
- #: ../includes/views/metabox-options.php:82
149
- msgid "Cookie expiration days"
150
- msgstr "Nombre de jours avant expiration du cookie"
151
-
152
- #: ../includes/views/metabox-options.php:85
153
- msgid "After closing the box, how many days should it stay hidden?"
154
- msgstr ""
155
- "Après la fermeture de la boîte, combien de jours avant qu'elle ne s'affiche "
156
- "à nouveau ?"
157
-
158
- #: ../includes/views/metabox-options.php:90
159
- msgid "Auto-hide?"
160
- msgstr "Masquage automatique ?"
161
-
162
- #: ../includes/views/metabox-options.php:92
163
- #: ../includes/views/metabox-options.php:101
164
- msgid "Yes"
165
- msgstr "Oui"
166
-
167
- #: ../includes/views/metabox-options.php:93
168
- #: ../includes/views/metabox-options.php:102
169
- msgid "No"
170
- msgstr "Non"
171
-
172
- #: ../includes/views/metabox-options.php:94
173
- msgid "Hide box again when visitors scroll back up?"
174
- msgstr ""
175
- "Masque la boîte à nouveau lorsque le visiteur revient en haut de page ?"
176
-
177
- #: ../includes/views/metabox-options.php:99
178
- msgid "Enable test mode?"
179
- msgstr "Activer le mode test ?"
180
-
181
- #: ../includes/views/metabox-options.php:103
182
- msgid ""
183
- "If test mode is enabled, the box will show up regardless of whether a cookie "
184
- "has been set."
185
- msgstr ""
186
- "Si le mode test est activé, la boîte va s'afficher indépendamment des "
187
- "cookies."
188
-
189
- #: ../includes/views/metabox-options.php:108
190
- msgid "Appearance"
191
- msgstr "Apparence"
192
-
193
- #: ../includes/views/metabox-options.php:112
194
- msgid "Background color"
195
- msgstr "Couleur de fond"
196
-
197
- #: ../includes/views/metabox-options.php:116
198
- msgid "Text color"
199
- msgstr "Couleur du texte"
200
-
201
- #: ../includes/views/metabox-options.php:120
202
- msgid "Box width"
203
- msgstr "Largeur de bordure"
204
-
205
- #: ../includes/views/metabox-options.php:126
206
- msgid "Border color"
207
- msgstr "Couleur de bordure"
208
-
209
- #: ../includes/views/metabox-options.php:130
210
- msgid "Border width"
211
- msgstr "Largeur de bordure"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/boxzilla-nl_NL.mo DELETED
Binary file
languages/boxzilla-nl_NL.po DELETED
@@ -1,209 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Scroll Triggered Boxes\n"
4
- "POT-Creation-Date: 2014-04-18 12:14+0100\n"
5
- "PO-Revision-Date: 2014-04-18 12:16+0100\n"
6
- "Last-Translator: Danny <hi@dannyvankooten.com>\n"
7
- "Language-Team: Danny van Kooten <hi@dannyvankooten.com>\n"
8
- "Language: en_US\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.4\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #: ../includes/class-admin.php:58
19
- msgid "Box Options"
20
- msgstr "Box Opties"
21
-
22
- #: ../includes/class-admin.php:67
23
- msgid "Need support?"
24
- msgstr "Support nodig?"
25
-
26
- #: ../includes/class-admin.php:75
27
- msgid "Donate $10, $20 or $50"
28
- msgstr "Doneer $10, $20 of $50"
29
-
30
- #: ../includes/class-admin.php:83
31
- msgid "About the developer"
32
- msgstr "Over de ontwikkelaar"
33
-
34
- #: ../includes/views/metabox-options.php:7
35
- msgid "Scroll Triggered Box Options"
36
- msgstr "Scroll Triggered Box Opties"
37
-
38
- #: ../includes/views/metabox-options.php:9
39
- msgid "Display Options"
40
- msgstr "Weergave Opties"
41
-
42
- #: ../includes/views/metabox-options.php:15
43
- msgid "Show this box"
44
- msgstr "Toon deze box"
45
-
46
- #: ../includes/views/metabox-options.php:18
47
- msgid "Basic"
48
- msgstr "Standaard"
49
-
50
- #: ../includes/views/metabox-options.php:19
51
- msgid "Everywhere"
52
- msgstr "Overal"
53
-
54
- #: ../includes/views/metabox-options.php:20
55
- msgid "if Post Type is"
56
- msgstr "Als \"post type\" ... is"
57
-
58
- #: ../includes/views/metabox-options.php:21
59
- msgid "if Page is"
60
- msgstr "Als \"page\" niet ... is"
61
-
62
- #: ../includes/views/metabox-options.php:22
63
- msgid "if Page is not"
64
- msgstr "Als \"page\" niet ... is"
65
-
66
- #: ../includes/views/metabox-options.php:23
67
- msgid "if Post is"
68
- msgstr "Als \"post\" niet ... is"
69
-
70
- #: ../includes/views/metabox-options.php:25
71
- msgid "Advanced"
72
- msgstr "Geavanceerd"
73
-
74
- #: ../includes/views/metabox-options.php:26
75
- msgid "Manual conditon"
76
- msgstr "Manuele Voorwaarde"
77
-
78
- #: ../includes/views/metabox-options.php:31
79
- msgid "Leave empty for any or enter (comma-separated) names or ID's"
80
- msgstr ""
81
- "Laat leeg voor alles of voer de namen of ID's in, gescheiden door een komma."
82
-
83
- #: ../includes/views/metabox-options.php:39
84
- msgid "Add rule"
85
- msgstr "Regel toevoegen"
86
-
87
- #: ../includes/views/metabox-options.php:42
88
- #, php-format
89
- msgid ""
90
- "For using advanced (manual) rules, have a look at %sthe WordPress "
91
- "Conditional Tags Codex page%s."
92
- msgstr ""
93
- "Voor het gebruken van geavanceerde manuele voorwaardes, bekijk de "
94
- "%sWordPress Conditional Tags Codex pagina%s"
95
-
96
- #: ../includes/views/metabox-options.php:45
97
- msgid "Box Position"
98
- msgstr "Box Positie"
99
-
100
- #: ../includes/views/metabox-options.php:48
101
- msgid "Top Left"
102
- msgstr "Linksboven"
103
-
104
- #: ../includes/views/metabox-options.php:49
105
- msgid "Top Right"
106
- msgstr "Rechtsboven"
107
-
108
- #: ../includes/views/metabox-options.php:50
109
- msgid "Bottom Left"
110
- msgstr "Linksonder"
111
-
112
- #: ../includes/views/metabox-options.php:51
113
- msgid "Bottom Right"
114
- msgstr "Rechtsonder"
115
-
116
- #: ../includes/views/metabox-options.php:57
117
- msgid "Trigger Point"
118
- msgstr "Triggerpunt"
119
-
120
- #: ../includes/views/metabox-options.php:61
121
- msgid "of page height"
122
- msgstr "van pagina hoogte"
123
-
124
- #: ../includes/views/metabox-options.php:64
125
- msgid "Element Selector"
126
- msgstr "Element selector"
127
-
128
- #: ../includes/views/metabox-options.php:70
129
- msgid "Example: #comments (element must exist or box won't be shown)"
130
- msgstr "Voorbeeld: #comments (element moet bestaan of de box blijft verborgen)"
131
-
132
- #: ../includes/views/metabox-options.php:74
133
- msgid "Animation"
134
- msgstr "Animatie"
135
-
136
- #: ../includes/views/metabox-options.php:76
137
- msgid "Fade In"
138
- msgstr "Fade In"
139
-
140
- #: ../includes/views/metabox-options.php:77
141
- msgid "Slide In"
142
- msgstr "Slide In"
143
-
144
- #: ../includes/views/metabox-options.php:78
145
- msgid "Which animation type should be used to show the box when triggered?"
146
- msgstr ""
147
- "Welk animatietype moet worden gebruikt wanneer de box wordt getriggert?"
148
-
149
- #: ../includes/views/metabox-options.php:82
150
- msgid "Cookie expiration days"
151
- msgstr "Cookie verloopt in ... dagen"
152
-
153
- #: ../includes/views/metabox-options.php:85
154
- msgid "After closing the box, how many days should it stay hidden?"
155
- msgstr "Hoelang moet de box verborgen blijven nadat iemand de box sluit?"
156
-
157
- #: ../includes/views/metabox-options.php:90
158
- msgid "Auto-hide?"
159
- msgstr "Automatisch verbergen?"
160
-
161
- #: ../includes/views/metabox-options.php:92
162
- #: ../includes/views/metabox-options.php:101
163
- msgid "Yes"
164
- msgstr "Ja"
165
-
166
- #: ../includes/views/metabox-options.php:93
167
- #: ../includes/views/metabox-options.php:102
168
- msgid "No"
169
- msgstr "Nee"
170
-
171
- #: ../includes/views/metabox-options.php:94
172
- msgid "Hide box again when visitors scroll back up?"
173
- msgstr "Verberg box wanneer bezoekers terug omhoog scrollen?"
174
-
175
- #: ../includes/views/metabox-options.php:99
176
- msgid "Enable test mode?"
177
- msgstr "Test modus activeren?"
178
-
179
- #: ../includes/views/metabox-options.php:103
180
- msgid ""
181
- "If test mode is enabled, the box will show up regardless of whether a cookie "
182
- "has been set."
183
- msgstr ""
184
- "Als test modus actief is zal de box altijd getoond worden, zelfs als er een "
185
- "cookie geplaatst is."
186
-
187
- #: ../includes/views/metabox-options.php:108
188
- msgid "Appearance"
189
- msgstr "Weergave"
190
-
191
- #: ../includes/views/metabox-options.php:112
192
- msgid "Background color"
193
- msgstr "Achtergrondkleur"
194
-
195
- #: ../includes/views/metabox-options.php:116
196
- msgid "Text color"
197
- msgstr "Tekstkleur"
198
-
199
- #: ../includes/views/metabox-options.php:120
200
- msgid "Box width"
201
- msgstr "Box breedte"
202
-
203
- #: ../includes/views/metabox-options.php:126
204
- msgid "Border color"
205
- msgstr "Border kleur"
206
-
207
- #: ../includes/views/metabox-options.php:130
208
- msgid "Border width"
209
- msgstr "Border breedte"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/boxzilla-ro_RO.mo DELETED
Binary file
languages/boxzilla-ro_RO.po DELETED
@@ -1,468 +0,0 @@
1
- # Copyright (C) 2016 boxzilla
2
- # This file is distributed under the same license as the boxzilla package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: boxzilla\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "PO-Revision-Date: 2017-02-22 19:48+0200\n"
10
- "X-Poedit-Basepath: ..\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
13
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
14
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
15
- "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
16
- "2:1));\n"
17
- "POT-Creation-Date: \n"
18
- "Language-Team: \n"
19
- "X-Generator: Poedit 1.8.12\n"
20
- "Last-Translator: \n"
21
- "Language: ro\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPathExcluded-0: *.js\n"
24
-
25
- #: src/admin/class-admin.php:207
26
- msgid ""
27
- "Awesome, you are using Boxzilla! You can now safely <a href=\"%s"
28
- "\">deactivate the Scroll Triggered Boxes plugin</a>."
29
- msgstr ""
30
- "Super, folosești Boxzilla! Acum poți <a href=\"%s\">dezactiva în siguranță "
31
- "modulul Scroll Triggered Boxes</a>."
32
-
33
- #: src/admin/class-admin.php:341
34
- msgid "Box ID"
35
- msgstr "ID Casetă"
36
-
37
- #: src/admin/class-admin.php:347
38
- msgid "Box Title"
39
- msgstr "Titlu Casetă"
40
-
41
- #: src/admin/class-admin.php:415, src/admin/class-admin.php:417,
42
- #: src/admin/views/settings.php:7
43
- msgid "Settings"
44
- msgstr "Setări"
45
-
46
- #: src/admin/class-admin.php:427, src/admin/class-admin.php:429
47
- msgid "Extensions"
48
- msgstr "Extensii"
49
-
50
- #: src/admin/class-admin.php:615
51
- msgid "Enter a comma-separated list of values."
52
- msgstr "Introdu o listă de valori separate prin virgule."
53
-
54
- #: src/admin/class-admin.php:617
55
- msgid "Enter a comma-separated list of post slugs or post ID's.."
56
- msgstr ""
57
- "Introdu o listă de post slugs sau ID-uri ale postărilor separate prin "
58
- "virgule.."
59
-
60
- #: src/admin/class-admin.php:619
61
- msgid "Enter a comma-separated list of page slugs or page ID's.."
62
- msgstr ""
63
- "Introdu o listă de page slugs sau ID-uri ale paginilior separate prin "
64
- "virgule.."
65
-
66
- #: src/admin/class-admin.php:621
67
- msgid "Enter a comma-separated list of post types.."
68
- msgstr "Introdu o listă de tipuri de postări separate prin virgule.."
69
-
70
- #: src/admin/class-admin.php:623
71
- msgid "Enter a comma-separated list of relative URL's, eg /contact/"
72
- msgstr ""
73
- "Introdu o listă de link-uri relative, cum ar fi /contact/ separate prin "
74
- "virgule."
75
-
76
- #: src/admin/class-admin.php:689
77
- msgid "Box Appearance"
78
- msgstr "Aspect casetă"
79
-
80
- #: src/admin/class-admin.php:707
81
- msgid "Box Options"
82
- msgstr "Opțiuni casetă"
83
-
84
- #: src/admin/class-admin.php:725
85
- msgid "Looking for help?"
86
- msgstr "Cauți ajutor?"
87
-
88
- #: src/admin/class-admin.php:741
89
- msgid "Subscribe to our newsletter"
90
- msgstr "Abonează-te la noutăți"
91
-
92
- #: src/admin/class-review-notice.php:74
93
- msgid "You've been using Boxzilla for some time now; we hope you love it!"
94
- msgstr "Folosești Boxzilla de ceva timp; sperăm că îți place!"
95
-
96
- #: src/admin/class-review-notice.php:75
97
- msgid ""
98
- "If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
99
- "It would be of great help to us."
100
- msgstr ""
101
- "Dacă da, te rugăm <a href=\"%s\">lasă-ne 5★ pe WordPress.org</a>. Ne-ar fi "
102
- "de mare ajutor."
103
-
104
- #: src/admin/class-review-notice.php:77
105
- msgid "Dismiss this notice."
106
- msgstr "Înlătură această notificare."
107
-
108
- #: src/admin/views/extensions.php:4
109
- msgid "Available Add-On Plugins"
110
- msgstr "Module Add-On disponibile"
111
-
112
- #: src/admin/views/extensions.php:6
113
- msgid ""
114
- "There are various add-ons available for Boxzilla which further enhance the "
115
- "functionality of the core plugin."
116
- msgstr ""
117
- "Sunt disponibile diferite add-on-uri disponibile pentru Boxzilla care vor "
118
- "îmbunătăți funcționalitatea modulului de bază."
119
-
120
- #: src/admin/views/extensions.php:9
121
- msgid ""
122
- "To gain instant access the premium add-on plugins listed here, <a href=\"%s"
123
- "\">have a look at our pricing</a>."
124
- msgstr ""
125
- "Pentru a primi acces instant la lista de module add-on premium listate aici, "
126
- "<a href=\"%s\">uită-te la prețurile noastre</a>."
127
-
128
- #: src/admin/views/extensions.php:18
129
- msgid "You will be redirected to the Boxzilla site in a few seconds.."
130
- msgstr "Vei fi redirecționat la site-ul Boxzilla în câteva secunde.."
131
-
132
- #: src/admin/views/extensions.php:19
133
- msgid "If not, please click here: %s."
134
- msgstr "Dacă nu, te rugam dă click aici: %s."
135
-
136
- #: src/admin/views/metaboxes/box-appearance-controls.php:2
137
- msgid ""
138
- "For the best experience when styling your box, please use the default "
139
- "WordPress visual editor."
140
- msgstr ""
141
- "Pentru cea mai bună experiență când iți stilizezi caseta, te rugăm folosește "
142
- "editorul vizual implicit al WordPress."
143
-
144
- #: src/admin/views/metaboxes/box-appearance-controls.php:8
145
- msgid "Background color"
146
- msgstr "Culoare de fundal"
147
-
148
- #: src/admin/views/metaboxes/box-appearance-controls.php:12
149
- msgid "Text color"
150
- msgstr "Culoare text"
151
-
152
- #: src/admin/views/metaboxes/box-appearance-controls.php:16
153
- msgid "Box width"
154
- msgstr "Lățime casetă"
155
-
156
- #: src/admin/views/metaboxes/box-appearance-controls.php:18,
157
- #: src/admin/views/metaboxes/box-appearance-controls.php:29
158
- msgid "Width in px"
159
- msgstr "Lățime în px"
160
-
161
- #: src/admin/views/metaboxes/box-appearance-controls.php:23
162
- msgid "Border color"
163
- msgstr "Culoare bordură"
164
-
165
- #: src/admin/views/metaboxes/box-appearance-controls.php:27
166
- msgid "Border width"
167
- msgstr "Lățime bordură"
168
-
169
- #: src/admin/views/metaboxes/box-appearance-controls.php:32,
170
- #: src/admin/views/metaboxes/box-appearance-controls.php:40
171
- msgid "Border style"
172
- msgstr "Stil bordură"
173
-
174
- #: src/admin/views/metaboxes/box-appearance-controls.php:46
175
- msgid "<a href=\"%s\">Click here to reset all styling settings</a>."
176
- msgstr ""
177
- "<a href=\"%s\">Apasă aici pentru a reseta toate setările de stilizare</a>."
178
-
179
- #: src/admin/views/metaboxes/box-option-controls.php:21
180
- msgid "Select a condition"
181
- msgstr "Alege o condiție"
182
-
183
- #: src/admin/views/metaboxes/box-option-controls.php:23
184
- msgid "everywhere"
185
- msgstr "peste tot"
186
-
187
- #: src/admin/views/metaboxes/box-option-controls.php:25
188
- msgid "if page"
189
- msgstr "dacă pagina"
190
-
191
- #: src/admin/views/metaboxes/box-option-controls.php:27
192
- msgid "if post"
193
- msgstr "dacă postarea"
194
-
195
- #: src/admin/views/metaboxes/box-option-controls.php:29
196
- msgid "if post tag"
197
- msgstr "dacă eticheta postării"
198
-
199
- #: src/admin/views/metaboxes/box-option-controls.php:31
200
- msgid "if post category"
201
- msgstr "dacă categoria postării"
202
-
203
- #: src/admin/views/metaboxes/box-option-controls.php:33
204
- msgid "if post type"
205
- msgstr "dacă tipul postării"
206
-
207
- #: src/admin/views/metaboxes/box-option-controls.php:35
208
- msgid "if URL"
209
- msgstr "dacă URL-ul"
210
-
211
- #: src/admin/views/metaboxes/box-option-controls.php:37
212
- msgid "if referer"
213
- msgstr "dacă referer-ul"
214
-
215
- #: src/admin/views/metaboxes/box-option-controls.php:75
216
- msgid "Load this box if"
217
- msgstr "Încarcă această casetă dacă"
218
-
219
- #: src/admin/views/metaboxes/box-option-controls.php:81
220
- msgid "Request matches"
221
- msgstr "Necesită potriviri"
222
-
223
- #: src/admin/views/metaboxes/box-option-controls.php:85
224
- msgid "any"
225
- msgstr "oricare"
226
-
227
- #: src/admin/views/metaboxes/box-option-controls.php:87
228
- msgid "all"
229
- msgstr "toate"
230
-
231
- #: src/admin/views/metaboxes/box-option-controls.php:91
232
- msgid "of the following conditions."
233
- msgstr "dintre următoarele condiții"
234
-
235
- #: src/admin/views/metaboxes/box-option-controls.php:133,
236
- #: src/admin/views/metaboxes/box-option-controls.php:421
237
- msgid "is"
238
- msgstr "este"
239
-
240
- #: src/admin/views/metaboxes/box-option-controls.php:135,
241
- #: src/admin/views/metaboxes/box-option-controls.php:423
242
- msgid "is not"
243
- msgstr "nu este"
244
-
245
- #: src/admin/views/metaboxes/box-option-controls.php:141,
246
- #: src/admin/views/metaboxes/box-option-controls.php:429
247
- msgid "Leave empty for any or enter (comma-separated) names or ID's"
248
- msgstr ""
249
- "Lăsați gol pentru oricare sau introdu (separate prin virgule) nume sau ID-uri"
250
-
251
- #: src/admin/views/metaboxes/box-option-controls.php:157
252
- msgid "Add rule"
253
- msgstr "Adaugă regulă"
254
-
255
- #: src/admin/views/metaboxes/box-option-controls.php:163
256
- msgid "Box Position"
257
- msgstr "Poziția casetei"
258
-
259
- #: src/admin/views/metaboxes/box-option-controls.php:175
260
- msgid "Top Left"
261
- msgstr "Stânga sus"
262
-
263
- #: src/admin/views/metaboxes/box-option-controls.php:189
264
- msgid "Top Right"
265
- msgstr "Dreapta sus"
266
-
267
- #: src/admin/views/metaboxes/box-option-controls.php:207
268
- msgid "Center"
269
- msgstr "Centru"
270
-
271
- #: src/admin/views/metaboxes/box-option-controls.php:225
272
- msgid "Bottom Left"
273
- msgstr "Stânga jos"
274
-
275
- #: src/admin/views/metaboxes/box-option-controls.php:239
276
- msgid "Bottom Right"
277
- msgstr "Dreapta jos"
278
-
279
- #: src/admin/views/metaboxes/box-option-controls.php:257
280
- msgid "Animation"
281
- msgstr "Animatie"
282
-
283
- #: src/admin/views/metaboxes/box-option-controls.php:261
284
- msgid "Fade In"
285
- msgstr "Decolorare"
286
-
287
- #: src/admin/views/metaboxes/box-option-controls.php:263
288
- msgid "Slide In"
289
- msgstr "Glisare"
290
-
291
- #: src/admin/views/metaboxes/box-option-controls.php:265
292
- msgid "Which animation type should be used to show the box when triggered?"
293
- msgstr "Cu ce animație ar trebui să apară caseta când este activată?"
294
-
295
- #: src/admin/views/metaboxes/box-option-controls.php:273
296
- msgid "Auto-show box?"
297
- msgstr "Arată automat caseta?"
298
-
299
- #: src/admin/views/metaboxes/box-option-controls.php:277
300
- msgid "Never"
301
- msgstr "Niciodată."
302
-
303
- #: src/admin/views/metaboxes/box-option-controls.php:279
304
- msgid "Yes, after %s seconds on the page."
305
- msgstr "Da, după %s secunde pe pagină."
306
-
307
- #: src/admin/views/metaboxes/box-option-controls.php:281
308
- msgid "Yes, when at %s of page height"
309
- msgstr "Da, când este la %s din înălțimea paginii"
310
-
311
- #: src/admin/views/metaboxes/box-option-controls.php:283
312
- msgid "Yes, when at element %s"
313
- msgstr "Da, când este la elementul %s"
314
-
315
- #: src/admin/views/metaboxes/box-option-controls.php:283
316
- msgid "Example: #comments"
317
- msgstr "Exemplu: #comments"
318
-
319
- #: src/admin/views/metaboxes/box-option-controls.php:295
320
- msgid "Cookie expiration"
321
- msgstr "Expirare cookie"
322
-
323
- #: src/admin/views/metaboxes/box-option-controls.php:305,
324
- #: src/admin/views/metaboxes/box-option-controls.php:315
325
- msgid "hours"
326
- msgstr "ore"
327
-
328
- #: src/admin/views/metaboxes/box-option-controls.php:323
329
- msgid ""
330
- "After this box is triggered or dismissed, how many hours should it stay "
331
- "hidden?"
332
- msgstr ""
333
- "După ce caseta este activată sau înlăturată, câte ore trebuie să fie ascunsă?"
334
-
335
- #: src/admin/views/metaboxes/box-option-controls.php:331
336
- msgid "Do not auto-show box on small screens?"
337
- msgstr "Nu arăta automat casetele pe ecranele mici?"
338
-
339
- #: src/admin/views/metaboxes/box-option-controls.php:335
340
- msgid "Do not auto-show on screens smaller than %s."
341
- msgstr "Nu arăta automat pe ecrane mai mici de %s."
342
-
343
- #: src/admin/views/metaboxes/box-option-controls.php:337
344
- msgid ""
345
- "Leave empty if you <strong>do</strong> want to auto-show the box on small "
346
- "screens."
347
- msgstr ""
348
- "Lasă gol dacă <strong>vrei</strong>să apară automat caseta pe ecranele mici."
349
-
350
- #: src/admin/views/metaboxes/box-option-controls.php:347
351
- msgid "Auto-hide?"
352
- msgstr "Ascunde automat?"
353
-
354
- #: src/admin/views/metaboxes/box-option-controls.php:355
355
- msgid "Hide box again when visitors scroll back up?"
356
- msgstr "Ascunde caseta când utilizatorii derulează sus?"
357
-
358
- #: src/admin/views/metaboxes/box-option-controls.php:363,
359
- #: src/admin/views/settings.php:20
360
- msgid "Enable test mode?"
361
- msgstr "Activează modul de test?"
362
-
363
- #: src/admin/views/metaboxes/box-option-controls.php:371,
364
- #: src/admin/views/settings.php:24
365
- msgid ""
366
- "If test mode is enabled, all boxes will show up regardless of whether a "
367
- "cookie has been set."
368
- msgstr ""
369
- "Dacă modul de test este activat, toate castele vor apărea chiar dacă un "
370
- "fișier cookie a fost setat."
371
-
372
- #: src/admin/views/metaboxes/need-help.php:2
373
- msgid "Please make sure to look at the following available resources."
374
- msgstr "Te rugăm să te uiți la următoarele resurse disponibile."
375
-
376
- #: src/default-actions.php:12, src/default-actions.php:24
377
- msgid "Boxzilla"
378
- msgstr "Boxzilla"
379
-
380
- #: src/default-actions.php:13
381
- msgid "Box"
382
- msgstr "Casetă"
383
-
384
- #: src/default-actions.php:14
385
- msgid "Add New"
386
- msgstr "Adaugă"
387
-
388
- #: src/default-actions.php:15
389
- msgid "Add New Box"
390
- msgstr "Adaugă o casetă noua"
391
-
392