Photo Gallery by WD – Responsive Photo Gallery - Version 1.2.88

Version Description

  • Fixed: Prevent javascript errors with empty options.
  • Changed: Dutch translation (Thanks to Gerben H. Dijkstra).
  • Changed: Italian translation (Thanks to Fabio Massimo Pari).
  • Changed: Gallery/Album author do not change on update.
  • Improved: Filemanager load time.
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Photo Gallery by WD – Responsive Photo Gallery
Version 1.2.88
Comparing to
See all releases

Code changes from version 1.2.87 to 1.2.88

admin/controllers/BWGControllerAlbums_bwg.php CHANGED
@@ -163,7 +163,6 @@ class BWGControllerAlbums_bwg {
163
  'slug' => $slug,
164
  'description' => $description,
165
  'preview_image' => $preview_image,
166
- 'author' => $author,
167
  'published' => $published), array('id' => $id));
168
 
169
  /* Update data in corresponding posts.*/
163
  'slug' => $slug,
164
  'description' => $description,
165
  'preview_image' => $preview_image,
 
166
  'published' => $published), array('id' => $id));
167
 
168
  /* Update data in corresponding posts.*/
admin/controllers/BWGControllerGalleries_bwg.php CHANGED
@@ -693,7 +693,6 @@ class BWGControllerGalleries_bwg {
693
  'size' => $size,
694
  'filetype' => $filetype,
695
  'resolution' => $resolution,
696
- 'author' => $author,
697
  'order' => $order,
698
  'redirect_url' => $redirect_url), array('id' => $image_id));
699
  }
@@ -817,7 +816,6 @@ class BWGControllerGalleries_bwg {
817
  'description' => $description,
818
  'preview_image' => $preview_image,
819
  'random_preview_image' => $random_preview_image,
820
- 'author' => get_current_user_id(),
821
  'gallery_type' => $gallery_type,
822
  'gallery_source' => $gallery_source,
823
  'autogallery_image_number' => $autogallery_image_number,
693
  'size' => $size,
694
  'filetype' => $filetype,
695
  'resolution' => $resolution,
 
696
  'order' => $order,
697
  'redirect_url' => $redirect_url), array('id' => $image_id));
698
  }
816
  'description' => $description,
817
  'preview_image' => $preview_image,
818
  'random_preview_image' => $random_preview_image,
 
819
  'gallery_type' => $gallery_type,
820
  'gallery_source' => $gallery_source,
821
  'autogallery_image_number' => $autogallery_image_number,
filemanager/js/default.js CHANGED
@@ -29,6 +29,11 @@ var isUploading;
29
  // Public Methods //
30
  ////////////////////////////////////////////////////////////////////////////////////////
31
  jQuery(document).ready(function () {
 
 
 
 
 
32
  filesSelected = [];
33
  filesSelectedML = [];
34
  dragFiles = [];
@@ -51,13 +56,17 @@ jQuery(document).ready(function () {
51
  });
52
  });
53
 
54
-
55
  ////////////////////////////////////////////////////////////////////////////////////////
56
  // Getters & Setters //
57
  ////////////////////////////////////////////////////////////////////////////////////////
58
  ////////////////////////////////////////////////////////////////////////////////////////
59
  // Private Methods //
60
  ////////////////////////////////////////////////////////////////////////////////////////
 
 
 
 
 
61
  function getClipboardFiles() {
62
  return jQuery("form[name=adminForm]").find("input[name=clipboard_file]").val();
63
  }
29
  // Public Methods //
30
  ////////////////////////////////////////////////////////////////////////////////////////
31
  jQuery(document).ready(function () {
32
+ var all_images_count = jQuery(".item_thumb img").length;
33
+ if (all_images_count == 0 || all_images_count <= 24) {
34
+ jQuery("#opacity_div").hide();
35
+ jQuery("#loading_div").hide();
36
+ }
37
  filesSelected = [];
38
  filesSelectedML = [];
39
  dragFiles = [];
56
  });
57
  });
58
 
 
59
  ////////////////////////////////////////////////////////////////////////////////////////
60
  // Getters & Setters //
61
  ////////////////////////////////////////////////////////////////////////////////////////
62
  ////////////////////////////////////////////////////////////////////////////////////////
63
  // Private Methods //
64
  ////////////////////////////////////////////////////////////////////////////////////////
65
+ function loaded() {
66
+ jQuery("#opacity_div").hide();
67
+ jQuery("#loading_div").hide();
68
+ }
69
+
70
  function getClipboardFiles() {
71
  return jQuery("form[name=adminForm]").find("input[name=clipboard_file]").val();
72
  }
filemanager/view.php CHANGED
@@ -205,7 +205,7 @@ class FilemanagerView {
205
  <div id="explorer_body_container">
206
  <div id="explorer_body">
207
  <?php
208
- foreach ($file_manager_data['files'] as $file) {
209
  $file['name'] = esc_html($file['name']);
210
  $file['filename'] = esc_html($file['filename']);
211
  $file['thumb'] = esc_html($file['thumb']);
@@ -241,7 +241,7 @@ class FilemanagerView {
241
  isDir="<?php echo $file['is_dir'] == true ? 'true' : 'false'; ?>">
242
  <span class="item_numbering"><?php echo ++$i; ?></span>
243
  <span class="item_thumb">
244
- <img src="<?php echo $file['thumb']; ?>"/>
245
  </span>
246
  <span class="item_icon">
247
  <img src="<?php echo $file['icon']; ?>"/>
@@ -299,7 +299,7 @@ class FilemanagerView {
299
  <div id="importer_body_container">
300
  <div id="importer_body">
301
  <?php
302
- foreach ($file_manager_data['media_library_files'] as $file) {
303
  $file['name'] = esc_html($file['name']);
304
  $file['filename'] = esc_html($file['filename']);
305
  $file['thumb'] = esc_html($file['thumb']);
@@ -327,7 +327,7 @@ class FilemanagerView {
327
  isDir="<?php echo $file['is_dir'] == true ? 'true' : 'false'; ?>">
328
  <span class="item_numbering"><?php echo ++$i; ?></span>
329
  <span class="item_thumb">
330
- <img src="<?php echo $file['thumb']; ?>"/>
331
  </span>
332
  <span class="item_icon">
333
  <img src="<?php echo $file['icon']; ?>"/>
@@ -438,10 +438,6 @@ class FilemanagerView {
438
  jQuery("#loading_div").hide();
439
  }
440
  });
441
- jQuery(window).load(function () {
442
- jQuery("#opacity_div").hide();
443
- jQuery("#loading_div").hide();
444
- })
445
  </script>
446
  </div>
447
  </label>
205
  <div id="explorer_body_container">
206
  <div id="explorer_body">
207
  <?php
208
+ foreach ($file_manager_data['files'] as $key => $file) {
209
  $file['name'] = esc_html($file['name']);
210
  $file['filename'] = esc_html($file['filename']);
211
  $file['thumb'] = esc_html($file['thumb']);
241
  isDir="<?php echo $file['is_dir'] == true ? 'true' : 'false'; ?>">
242
  <span class="item_numbering"><?php echo ++$i; ?></span>
243
  <span class="item_thumb">
244
+ <img src="<?php echo $file['thumb']; ?>" <?php echo $key == 24 ? 'onload="loaded()"' : ''; ?> />
245
  </span>
246
  <span class="item_icon">
247
  <img src="<?php echo $file['icon']; ?>"/>
299
  <div id="importer_body_container">
300
  <div id="importer_body">
301
  <?php
302
+ foreach ($file_manager_data['media_library_files'] as $key => $file) {
303
  $file['name'] = esc_html($file['name']);
304
  $file['filename'] = esc_html($file['filename']);
305
  $file['thumb'] = esc_html($file['thumb']);
327
  isDir="<?php echo $file['is_dir'] == true ? 'true' : 'false'; ?>">
328
  <span class="item_numbering"><?php echo ++$i; ?></span>
329
  <span class="item_thumb">
330
+ <img src="<?php echo $file['thumb']; ?>" <?php echo $key == 24 ? 'onload="loaded()"' : ''; ?> />
331
  </span>
332
  <span class="item_icon">
333
  <img src="<?php echo $file['icon']; ?>"/>
438
  jQuery("#loading_div").hide();
439
  }
440
  });
 
 
 
 
441
  </script>
442
  </div>
443
  </label>
languages/backend/bwg_back-nl_NL.mo CHANGED
Binary file
languages/backend/bwg_back-nl_NL.po CHANGED
@@ -2,15 +2,15 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: photo-gallery\n"
4
  "POT-Creation-Date: 15-10-27 08:11+000\n"
5
- "PO-Revision-Date: 2015-12-11 11:37+0400\n"
6
- "Last-Translator: admin < asd@mail.ru >\n"
7
- "Language-Team: \n"
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.6\n"
14
 
15
  #: ../photo-gallery-notices.php:188
16
  msgid "Leave A Review?"
@@ -31,7 +31,7 @@ msgstr "Tuurlijk! Ik zou graag willen!"
31
 
32
  #: ../photo-gallery-notices.php:191
33
  msgid "I've already left a review"
34
- msgstr "Ik heb al een recensie"
35
 
36
  #: ../photo-gallery-notices.php:192
37
  msgid "Maybe Later"
@@ -39,7 +39,7 @@ msgstr "Misschien later"
39
 
40
  #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
41
  msgid "Never show again"
42
- msgstr "Meer tonen nooit"
43
 
44
  #: ../photo-gallery-notices.php:199
45
  msgid "Hey! How's It Going?"
@@ -130,7 +130,7 @@ msgstr "Aanbevolen Plugins"
130
 
131
  #: ../photo-gallery.php:119
132
  msgid "Featured Themes"
133
- msgstr "Thema's"
134
 
135
  #: ../photo-gallery.php:121
136
  msgid "Uninstall"
@@ -334,7 +334,7 @@ msgstr "Succesvol gepubliceerde artikelen."
334
  #: /admin/controllers/BWGControllerOptions_bwg.php:384
335
  #: /admin/views/BWGViewTags_bwg.php:45 ../framework/WDWLibrary.php:46
336
  msgid "Item Succesfully Saved."
337
- msgstr "Punt Succesvol opgeslagen."
338
 
339
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 ..
340
  #: /admin/controllers/BWGControllerGalleries_bwg.php:911
@@ -375,8 +375,8 @@ msgid "Albums/Galleries"
375
  msgstr "Albums / Galleries"
376
 
377
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 ..
378
- #: /admin/views/BWGViewAddAlbumsGalleries.php:77 ../admin/views/BWGViewAddTags.
379
- #: php:51 ../admin/views/BWGViewAddTags.php:68
380
  #: ../admin/views/BWGViewAlbums_bwg. php:69
381
  #: ../admin/views/BWGViewAlbums_bwg.php:90
382
  #: /admin/views/BWGViewComments_bwg.php:63
@@ -396,8 +396,9 @@ msgstr "Naam"
396
  msgid "Type"
397
  msgstr "Type"
398
 
399
- #: ../admin/views/BWGViewAddTags.php:75 ../admin/views/BWGViewAlbums_bwg.php:98
400
- #: .. /admin/views/BWGViewGalleries_bwg.php:98
 
401
  #: ../admin/views/BWGViewTags_bwg.php:92
402
  msgid "Slug"
403
  msgstr "Naaktslak"
@@ -409,34 +410,36 @@ msgstr "Dit gedeelte kunt u maken, bewerken en verwijderen van albums."
409
  #: ../admin/views/BWGViewAlbums_bwg.php:41
410
  #: ../admin/views/BWGViewComments_bwg.php:42
411
  #: ../admin/views/BWGViewGalleries_bwg.php:40 ..
412
- #: /admin/views/BWGViewGalleries_bwg.php:219 ../admin/views/BWGViewOptions_bwg.
413
- #: php:31 ../admin/views/BWGViewRates_bwg.php:41
414
- #: ../admin/views/BWGViewTags_bwg. php:43
415
- #: ../admin/views/BWGViewThemes_bwg.php:39
416
  #: /admin/views/BWGViewThemes_bwg.php:217
417
  msgid "Read More in User Manual"
418
  msgstr "Lees meer in de gebruikershandleiding"
419
 
420
- #: ../admin/views/BWGViewAlbums_bwg.php:49 ../admin/views/BWGViewGalleries_bwg.
421
- #: php:48 ../admin/views/BWGViewThemes_bwg.php:47
 
422
  msgid "Add new"
423
- msgstr "Voeg nieuwe"
424
 
425
- #: ../admin/views/BWGViewAlbums_bwg.php:51 ../admin/views/BWGViewGalleries_bwg.
426
- #: php:50
427
  msgid "Changes made in this table should be saved."
428
  msgstr "Wijzigingen in deze tabel moet worden opgeslagen."
429
 
430
- #: ../admin/views/BWGViewAlbums_bwg.php:55 ../admin/views/BWGViewGalleries_bwg.
431
- #: php:54 ../admin/views/BWGViewGalleries_bwg.php:772
432
- #: ../filemanager/view.php:268 ../filemanager/view.php:353
 
433
  msgid "Select All"
434
  msgstr "Alles selecteren"
435
 
436
- #: ../admin/views/BWGViewAlbums_bwg.php:58 ../admin/views/BWGViewGalleries_bwg.
437
- #: php:57
438
  msgid "Save Order"
439
- msgstr "Save Bestel"
440
 
441
  #: ../admin/views/BWGViewAlbums_bwg.php:59
442
  #: ../admin/views/BWGViewComments_bwg.php:51
@@ -456,7 +459,8 @@ msgstr "Unpublish"
456
  #: ../admin/views/BWGViewComments_bwg.php:53
457
  #: ../admin/views/BWGViewGalleries_bwg.php:60 ..
458
  #: /admin/views/BWGViewGalleries_bwg.php:794
459
- #: ../admin/views/BWGViewRates_bwg.php:50 ../admin/views/BWGViewTags_bwg.php:56
 
460
  #: ../admin/views/BWGViewThemes_bwg.php:50
461
  msgid "Do you want to delete selected items?"
462
  msgstr "Wilt u de geselecteerde items wilt verwijderen?"
@@ -472,7 +476,8 @@ msgstr "Wilt u de geselecteerde items wilt verwijderen?"
472
  #: ../admin/views/BWGViewGalleries_bwg.php:174
473
  #: /admin/views/BWGViewGalleries_bwg.php:800 php:956
474
  #: ../admin/views/BWGViewGalleries_bwg.php:1071
475
- #: /admin/views/BWGViewRates_bwg.php:54 ../admin/views/BWGViewRates_bwg.php:107
 
476
  #: /admin/views/BWGViewRates_bwg.php:137 ../admin/views/BWGViewTags_bwg.php:56
477
  #: /admin/views/BWGViewTags_bwg.php:104 ../admin/views/BWGViewTags_bwg.php:156
478
  #: /admin/views/BWGViewThemes_bwg.php:54
@@ -481,8 +486,9 @@ msgstr "Wilt u de geselecteerde items wilt verwijderen?"
481
  msgid "Delete"
482
  msgstr "Verwijderen"
483
 
484
- #: ../admin/views/BWGViewAlbums_bwg.php:101 ../admin/views/BWGViewBWGShortcode.
485
- #: php:363 ../admin/views/BWGViewBWGShortcode.php:508 ..
 
486
  #: /admin/views/BWGViewGalleries_bwg.php:84
487
  #: ../admin/views/BWGViewGalleries_bwg. php:914
488
  #: ../admin/views/BWGViewOptions_bwg.php:1014
@@ -490,8 +496,9 @@ msgstr "Verwijderen"
490
  msgid "Thumbnail"
491
  msgstr "Miniatuur"
492
 
493
- #: ../admin/views/BWGViewAlbums_bwg.php:107 ../admin/views/BWGViewBWGShortcode.
494
- #: php:209 ../admin/views/BWGViewGalleries_bwg.php:115 ..
 
495
  #: /admin/views/BWGViewGalleries_bwg.php:945
496
  msgid "Order"
497
  msgstr "Bestellen"
@@ -501,8 +508,9 @@ msgstr "Bestellen"
501
  msgid "Author"
502
  msgstr "Auteur"
503
 
504
- #: ../admin/views/BWGViewAlbums_bwg.php:123 ../admin/views/BWGViewComments_bwg.
505
- #: php:121 ../admin/views/BWGViewGalleries_bwg.php:123 ..
 
506
  #: /admin/views/BWGViewGalleries_bwg.php:953
507
  msgid "Published"
508
  msgstr "Gepubliceerd"
@@ -533,15 +541,16 @@ msgstr "Handboek"
533
  #: ../admin/views/BWGViewAlbums_bwg.php:258
534
  #: ../admin/views/BWGViewGalleries_bwg. php:536
535
  #: ../admin/views/BWGViewOptions_bwg.php:99 ..
536
- #: /admin/views/BWGViewTags_bwg.php:51 ../admin/views/BWGViewThemes_bwg.php:224
 
537
  msgid "Save"
538
- msgstr "Save"
539
 
540
  #: ../admin/views/BWGViewAlbums_bwg.php:259
541
  #: ../admin/views/BWGViewGalleries_bwg. php:539
542
  #: ../admin/views/BWGViewThemes_bwg.php:225
543
  msgid "Apply"
544
- msgstr "Solliciteren"
545
 
546
  #: ../admin/views/BWGViewAlbums_bwg.php:260
547
  #: ../admin/views/BWGViewGalleries_bwg. php:541
@@ -574,8 +583,9 @@ msgstr "Auteur:"
574
  msgid "Published:"
575
  msgstr "Gepubliceerd:"
576
 
577
- #: ../admin/views/BWGViewAlbums_bwg.php:299 ../admin/views/BWGViewBWGShortcode.
578
- #: php:231 ../admin/views/BWGViewBWGShortcode.php:242 ..
 
579
  #: /admin/views/BWGViewBWGShortcode.php:249 php:290
580
  #: ../admin/views/BWGViewBWGShortcode.php:319
581
  #: /admin/views/BWGViewBWGShortcode.php:389 php:424
@@ -662,8 +672,9 @@ msgstr "Gepubliceerd:"
662
  msgid "No"
663
  msgstr "Nee"
664
 
665
- #: ../admin/views/BWGViewAlbums_bwg.php:301 ../admin/views/BWGViewBWGShortcode.
666
- #: php:230 ../admin/views/BWGViewBWGShortcode.php:241 ..
 
667
  #: /admin/views/BWGViewBWGShortcode.php:248 php:289
668
  #: ../admin/views/BWGViewBWGShortcode.php:318
669
  #: /admin/views/BWGViewBWGShortcode.php:388 php:423
@@ -759,7 +770,7 @@ msgstr "Voorbeeld afbeelding:"
759
  #: ../admin/views/BWGViewAlbums_bwg.php:320
760
  #: ../admin/views/BWGViewGalleries_bwg. php:690
761
  msgid "Add Preview Image"
762
- msgstr "Voeg Voorbeeldweergave"
763
 
764
  #: ../admin/views/BWGViewAlbums_bwg.php:331
765
  msgid "Albums And Galleries:"
@@ -850,8 +861,8 @@ msgstr "Toevallig"
850
  msgid "Display"
851
  msgstr "Beeldscherm"
852
 
853
- #: ../admin/views/BWGViewBWGShortcode.php:116 ../admin/views/BWGViewThemes_bwg.
854
- #: php:234
855
  msgid "Thumbnails"
856
  msgstr "Miniaturen"
857
 
@@ -876,30 +887,30 @@ msgstr "Mozaïek"
876
  #: ../admin/views/BWGViewOptions_bwg. php:114
877
  #: ../admin/views/BWGViewThemes_bwg.php:237
878
  msgid "Slideshow"
879
- msgstr "Slideshow"
880
 
881
- #: ../admin/views/BWGViewBWGShortcode.php:132 ../admin/views/BWGViewThemes_bwg.
882
- #: php:238
883
  msgid "Image Browser"
884
  msgstr "Afbeelding Browser"
885
 
886
- #: ../admin/views/BWGViewBWGShortcode.php:136 ../admin/views/BWGViewThemes_bwg.
887
- #: php:239
888
  msgid "Compact Album"
889
  msgstr "Compacte Album"
890
 
891
- #: ../admin/views/BWGViewBWGShortcode.php:140 ../admin/views/BWGViewThemes_bwg.
892
- #: php:240
893
  msgid "Masonry Album"
894
  msgstr "Metselwerk Album"
895
 
896
- #: ../admin/views/BWGViewBWGShortcode.php:144 ../admin/views/BWGViewThemes_bwg.
897
- #: php:241
898
  msgid "Extended Album"
899
  msgstr "Extended Album"
900
 
901
- #: ../admin/views/BWGViewBWGShortcode.php:148 ../admin/views/BWGViewThemes_bwg.
902
- #: php:242
903
  msgid "Blog Style"
904
  msgstr "Blog Style"
905
 
@@ -944,8 +955,8 @@ msgstr "Selecteer Album"
944
  msgid "Sort images by:"
945
  msgstr "Beelden sorteren op:"
946
 
947
- #: ../admin/views/BWGViewBWGShortcode.php:210 ../admin/views/BWGViewThemes_bwg.
948
- #: php:58
949
  msgid "Title"
950
  msgstr "Titel"
951
 
@@ -956,7 +967,8 @@ msgstr "Datum"
956
 
957
  #: ../admin/views/BWGViewBWGShortcode.php:212
958
  #: ../admin/views/BWGViewGalleries_bwg. php:904
959
- #: ../admin/views/BWGViewGalleries_bwg.php:920 ../framework/WDWLibrary. php:849
 
960
  msgid "Filename"
961
  msgstr "Bestandsnaam"
962
 
@@ -993,7 +1005,7 @@ msgstr "Zoekvak breedte:"
993
  #: ../admin/views/BWGViewBWGShortcode.php:239
994
  #: ../admin/views/BWGViewOptions_bwg. php:187
995
  msgid "Show tag box:"
996
- msgstr "Toon tag doos:"
997
 
998
  #: ../admin/views/BWGViewBWGShortcode.php:246
999
  #: ../admin/views/BWGViewOptions_bwg. php:177
@@ -1051,10 +1063,10 @@ msgid ""
1051
  "of the parent container. This option keeps thumbs to look nice when viewed "
1052
  "with very large or very small screen. Prevents zooming of thumbs."
1053
  msgstr ""
1054
- "Mosaic thumbnails hebben geen vaste grootte, maar zijn evenredig met de "
1055
- "breedte van het bovenliggende container. Deze optie houdt duimen er leuk "
1056
- "uitzien wanneer bekeken met een zeer grote of zeer kleine scherm. Voorkomt "
1057
- "zoomen van de duimen."
1058
 
1059
  #: ../admin/views/BWGViewBWGShortcode.php:287
1060
  #: ../admin/views/BWGViewBWGShortcode. php:386
@@ -1121,7 +1133,7 @@ msgstr "Toon op hover"
1121
  #: ../admin/views/BWGViewOptions_bwg.php:1026
1122
  #: ../admin/views/BWGViewOptions_bwg.php:1379
1123
  msgid "Always show"
1124
- msgstr "Tonen altijd"
1125
 
1126
  #: ../admin/views/BWGViewBWGShortcode.php:312
1127
  #: ../admin/views/BWGViewBWGShortcode. php:350
@@ -1138,7 +1150,7 @@ msgstr "Niet tonen"
1138
  #: /admin/views/BWGViewBWGShortcode.php:567 php:625
1139
  #: ../admin/views/BWGViewOptions_bwg.php:1001
1140
  msgid "Enable pagination:"
1141
- msgstr "Enable paginering:"
1142
 
1143
  #: ../admin/views/BWGViewBWGShortcode.php:320
1144
  #: ../admin/views/BWGViewBWGShortcode. php:425
@@ -1262,7 +1274,7 @@ msgstr ""
1262
 
1263
  #: ../admin/views/BWGViewBWGShortcode.php:492
1264
  msgid "Enable album description:"
1265
- msgstr "Enable album beschrijving:"
1266
 
1267
  #: ../admin/views/BWGViewBWGShortcode.php:499
1268
  #: ../admin/views/BWGViewOptions_bwg. php:1053
@@ -1294,12 +1306,12 @@ msgstr "Image width:"
1294
  #: ../admin/views/BWGViewOptions_bwg.php:1179 ..
1295
  #: /admin/views/BWGViewOptions_bwg.php:1646
1296
  msgid "Enable image title:"
1297
- msgstr "Enable image title:"
1298
 
1299
  #: ../admin/views/BWGViewBWGShortcode.php:599
1300
  #: ../admin/views/BWGViewOptions_bwg. php:1222
1301
  msgid "Enable image description:"
1302
- msgstr "Enable image description:"
1303
 
1304
  #: ../admin/views/BWGViewBWGShortcode.php:629
1305
  msgid "Load more"
@@ -1307,7 +1319,7 @@ msgstr "Meer laden"
1307
 
1308
  #: ../admin/views/BWGViewBWGShortcode.php:640
1309
  msgid "Slideshow Effect:"
1310
- msgstr "Slideshow Effect:"
1311
 
1312
  #: ../admin/views/BWGViewBWGShortcode.php:654
1313
  #: ../admin/views/BWGViewBWGShortcode. php:814
@@ -1327,40 +1339,40 @@ msgstr "Tijdsinterval:"
1327
 
1328
  #: ../admin/views/BWGViewBWGShortcode.php:658
1329
  msgid "Maximum values for slideshow width and height."
1330
- msgstr "Maximale waarden voor slideshow breedte en hoogte."
1331
 
1332
  #: ../admin/views/BWGViewBWGShortcode.php:658
1333
  msgid "Slideshow dimensions: "
1334
- msgstr "Slideshow afmetingen:"
1335
 
1336
  #: ../admin/views/BWGViewBWGShortcode.php:665
1337
  #: ../admin/views/BWGViewBWGShortcode. php:807
1338
  msgid "Enable Autoplay:"
1339
- msgstr "Inschakelen Automatisch afspelen:"
1340
 
1341
  #: ../admin/views/BWGViewBWGShortcode.php:672
1342
  msgid "Enable Shuffle:"
1343
- msgstr "Enable Shuffle:"
1344
 
1345
  #: ../admin/views/BWGViewBWGShortcode.php:679
1346
  #: ../admin/views/BWGViewBWGShortcode. php:933
1347
  #: ../admin/views/BWGViewOptions_bwg.php:725 ..
1348
  #: /admin/views/BWGViewOptions_bwg.php:1149
1349
  msgid "Enable control buttons:"
1350
- msgstr "Enable bedieningsknoppen:"
1351
 
1352
  #: ../admin/views/BWGViewBWGShortcode.php:686
1353
  msgid "Enable slideshow filmstrip view"
1354
- msgstr "Enable slideshow filmstrip view"
1355
 
1356
  #: ../admin/views/BWGViewBWGShortcode.php:686
1357
  #: ../admin/views/BWGViewOptions_bwg. php:1158
1358
  msgid "Enable slideshow filmstrip:"
1359
- msgstr "Enable slideshow filmstrip:"
1360
 
1361
  #: ../admin/views/BWGViewBWGShortcode.php:693
1362
  msgid "Slideshow Filmstrip size:"
1363
- msgstr "Slideshow filmstrip grootte:"
1364
 
1365
  #: ../admin/views/BWGViewBWGShortcode.php:698
1366
  msgid "Max. number of carousel images:"
@@ -1369,12 +1381,12 @@ msgstr "Max. aantal carrousel beelden:"
1369
  #: ../admin/views/BWGViewBWGShortcode.php:709
1370
  #: ../admin/views/BWGViewBWGShortcode. php:818
1371
  msgid "Enable Image Title:"
1372
- msgstr "Enable Afbeelding Titel:"
1373
 
1374
  #: ../admin/views/BWGViewBWGShortcode.php:716
1375
  #: ../admin/views/BWGViewOptions_bwg. php:1208
1376
  msgid "Image title position on slideshow"
1377
- msgstr "Afbeelding titel positie op slideshow"
1378
 
1379
  #: ../admin/views/BWGViewBWGShortcode.php:716
1380
  msgid "Title Position:"
@@ -1383,7 +1395,7 @@ msgstr "Titel Positie:"
1383
  #: ../admin/views/BWGViewBWGShortcode.php:740
1384
  #: ../admin/views/BWGViewOptions_bwg. php:1218
1385
  msgid "Display image title based on the slideshow dimensions."
1386
- msgstr "Beeldweergave titel op basis van de diavoorstelling dimensies."
1387
 
1388
  #: ../admin/views/BWGViewBWGShortcode.php:741
1389
  #: ../admin/views/BWGViewOptions_bwg. php:1213
@@ -1392,12 +1404,12 @@ msgstr "Volle breedte titel:"
1392
 
1393
  #: ../admin/views/BWGViewBWGShortcode.php:749
1394
  msgid "Enable Image Description:"
1395
- msgstr "Enable Afbeelding Omschrijving:"
1396
 
1397
  #: ../admin/views/BWGViewBWGShortcode.php:756
1398
  #: ../admin/views/BWGViewOptions_bwg. php:1251
1399
  msgid "Image description position on slideshow"
1400
- msgstr "Image description positie op slideshow"
1401
 
1402
  #: ../admin/views/BWGViewBWGShortcode.php:756
1403
  msgid "Description Position:"
@@ -1405,7 +1417,7 @@ msgstr "Beschrijving Positie:"
1405
 
1406
  #: ../admin/views/BWGViewBWGShortcode.php:780
1407
  msgid "Enable Slideshow Music:"
1408
- msgstr "Enable Slideshow Music:"
1409
 
1410
  #: ../admin/views/BWGViewBWGShortcode.php:787
1411
  msgid "Enter absolute audio file url or add file from Options page."
@@ -1480,7 +1492,7 @@ msgstr "Opent in een nieuw venster:"
1480
  #: ../admin/views/BWGViewBWGShortcode.php:872
1481
  #: ../admin/views/BWGViewOptions_bwg. php:635
1482
  msgid "Enable full width feature for the lightbox."
1483
- msgstr "Enable volle breedte-functie voor de lichtbak."
1484
 
1485
  #: ../admin/views/BWGViewBWGShortcode.php:873
1486
  #: ../admin/views/BWGViewOptions_bwg. php:630
@@ -1498,7 +1510,7 @@ msgstr "Lightbox afmetingen:"
1498
 
1499
  #: ../admin/views/BWGViewBWGShortcode.php:888
1500
  msgid "Lightbox slideshow effect."
1501
- msgstr "Lightbox slideshow effect."
1502
 
1503
  #: ../admin/views/BWGViewBWGShortcode.php:888
1504
  #: ../admin/views/BWGViewOptions_bwg. php:650
@@ -1512,11 +1524,11 @@ msgstr "Lightbox autoplay:"
1512
 
1513
  #: ../admin/views/BWGViewBWGShortcode.php:915
1514
  msgid "Enable filmstrip view for images"
1515
- msgstr "Inschakelen filmstrip weergave voor afbeeldingen"
1516
 
1517
  #: ../admin/views/BWGViewBWGShortcode.php:915
1518
  msgid "Enable filmstrip in lightbox:"
1519
- msgstr "Inschakelen filmstrip in lichttafel:"
1520
 
1521
  #: ../admin/views/BWGViewBWGShortcode.php:922
1522
  #: ../admin/views/BWGViewOptions_bwg. php:696
@@ -1530,25 +1542,25 @@ msgstr "Weer te geven hit counter:"
1530
 
1531
  #: ../admin/views/BWGViewBWGShortcode.php:933
1532
  msgid "Enable control buttons in lightbox"
1533
- msgstr "Inschakelen bedieningsknoppen in lightbox"
1534
 
1535
  #: ../admin/views/BWGViewBWGShortcode.php:942
1536
  msgid "Enable fullscreen view for images"
1537
- msgstr "Inschakelen fullscreen weergave voor afbeeldingen"
1538
 
1539
  #: ../admin/views/BWGViewBWGShortcode.php:942
1540
  #: ../admin/views/BWGViewOptions_bwg. php:761
1541
  msgid "Enable fullscreen:"
1542
- msgstr "Enable fullscreen:"
1543
 
1544
  #: ../admin/views/BWGViewBWGShortcode.php:949
1545
  msgid "Enable title, description for images"
1546
- msgstr "Enable titel, beschrijving voor afbeeldingen"
1547
 
1548
  #: ../admin/views/BWGViewBWGShortcode.php:949
1549
  #: ../admin/views/BWGViewOptions_bwg. php:771
1550
  msgid "Enable info:"
1551
- msgstr "Enable info:"
1552
 
1553
  #: ../admin/views/BWGViewBWGShortcode.php:956
1554
  #: ../admin/views/BWGViewOptions_bwg. php:781
@@ -1567,66 +1579,66 @@ msgstr "Volle breedte info:"
1567
 
1568
  #: ../admin/views/BWGViewBWGShortcode.php:970
1569
  msgid "Enable rating for images"
1570
- msgstr "Inschakelen waardering voor afbeeldingen"
1571
 
1572
  #: ../admin/views/BWGViewBWGShortcode.php:970
1573
  #: ../admin/views/BWGViewOptions_bwg. php:807
1574
  msgid "Enable rating:"
1575
- msgstr "Enable cijfer:"
1576
 
1577
  #: ../admin/views/BWGViewBWGShortcode.php:977
1578
  msgid "Enable comments for images"
1579
- msgstr "Inschakelen opmerkingen voor afbeeldingen"
1580
 
1581
  #: ../admin/views/BWGViewBWGShortcode.php:977
1582
  #: ../admin/views/BWGViewOptions_bwg. php:817
1583
  msgid "Enable comments:"
1584
- msgstr "Enable opmerkingen:"
1585
 
1586
  #: ../admin/views/BWGViewBWGShortcode.php:984
1587
  msgid "Enable Facebook share button for images"
1588
- msgstr "Facebook Share knop om foto's te schakelen"
1589
 
1590
  #: ../admin/views/BWGViewBWGShortcode.php:984
1591
  #: ../admin/views/BWGViewOptions_bwg. php:881
1592
  msgid "Enable Facebook button:"
1593
- msgstr "Enable Facebook-knop:"
1594
 
1595
  #: ../admin/views/BWGViewBWGShortcode.php:991
1596
  msgid "Enable Twitter share button for images"
1597
- msgstr "Twitter Share knop om foto's te schakelen"
1598
 
1599
  #: ../admin/views/BWGViewBWGShortcode.php:991
1600
  #: ../admin/views/BWGViewOptions_bwg. php:891
1601
  msgid "Enable Twitter button:"
1602
- msgstr "Enable Twitter-knop:"
1603
 
1604
  #: ../admin/views/BWGViewBWGShortcode.php:998
1605
  msgid "Enable Google+ share button for images"
1606
- msgstr "Google+ Share knop om foto's te schakelen"
1607
 
1608
  #: ../admin/views/BWGViewBWGShortcode.php:998
1609
  #: ../admin/views/BWGViewOptions_bwg. php:901
1610
  msgid "Enable Google+ button:"
1611
- msgstr "Enable Google+ knop:"
1612
 
1613
  #: ../admin/views/BWGViewBWGShortcode.php:1005
1614
  msgid "Enable Pinterest share button for images"
1615
- msgstr "Pinterest Share knop om foto's te schakelen"
1616
 
1617
  #: ../admin/views/BWGViewBWGShortcode.php:1005
1618
  #: ../admin/views/BWGViewOptions_bwg. php:911
1619
  msgid "Enable Pinterest button:"
1620
- msgstr "Enable Pinterest knop:"
1621
 
1622
  #: ../admin/views/BWGViewBWGShortcode.php:1012
1623
  msgid "Enable Tumblr share button for images"
1624
- msgstr "Tumblr Share knop om foto's te schakelen"
1625
 
1626
  #: ../admin/views/BWGViewBWGShortcode.php:1012
1627
  #: ../admin/views/BWGViewOptions_bwg. php:921
1628
  msgid "Enable Tumblr button:"
1629
- msgstr "Enable Tumblr knop:"
1630
 
1631
  #: ../admin/views/BWGViewBWGShortcode.php:1025
1632
  msgid "Advertisement Type:"
@@ -1721,11 +1733,11 @@ msgstr "Advertentie kleur:"
1721
  #: ../admin/views/BWGViewThemes_bwg.php:3758
1722
  #: /admin/views/BWGViewThemes_bwg.php:3890
1723
  msgid "Value must be between 0 to 100."
1724
- msgstr "Waarde moet tussen 0 en 100."
1725
 
1726
  #: ../admin/views/BWGViewBWGShortcode.php:1088
1727
  msgid "Advertisement opacity: "
1728
- msgstr "Advertentie ondoorzichtigheid:"
1729
 
1730
  #: ../admin/views/BWGViewBWGShortcode.php:1094
1731
  msgid "Advertisement Position: "
@@ -1930,11 +1942,11 @@ msgstr "Er geen update"
1930
 
1931
  #: ../admin/views/BWGViewGalleries_bwg.php:593
1932
  msgid "Add new media, keep old ones published."
1933
- msgstr "Voeg nieuwe media, blijven oude gepubliceerd."
1934
 
1935
  #: ../admin/views/BWGViewGalleries_bwg.php:595
1936
  msgid "Add new media, unpublish old ones."
1937
- msgstr "Voeg nieuwe media, Unpublish oude."
1938
 
1939
  #: ../admin/views/BWGViewGalleries_bwg.php:609
1940
  msgid "Facebook album url: "
@@ -1979,7 +1991,7 @@ msgstr "Recreëren Thumbnail"
1979
  #: ../admin/views/BWGViewGalleries_bwg.php:787 ..
1980
  #: /admin/views/BWGViewGalleries_bwg.php:1046
1981
  msgid "Add tag"
1982
- msgstr "Tag toe te voegen"
1983
 
1984
  #: ../admin/views/BWGViewGalleries_bwg.php:806
1985
  msgid "Add to gallery"
@@ -1997,7 +2009,7 @@ msgstr "Helpen"
1997
 
1998
  #: ../admin/views/BWGViewGalleries_bwg.php:812
1999
  msgid "Close"
2000
- msgstr "Dicht"
2001
 
2002
  #: ../admin/views/BWGViewGalleries_bwg.php:813 ..
2003
  #: /admin/views/BWGViewGalleries_bwg.php:814
@@ -2068,7 +2080,7 @@ msgstr "De maximale grootte van de gewijzigde beelden."
2068
 
2069
  #: ../admin/views/BWGViewGalleries_bwg.php:928
2070
  msgid "Alt/Title"
2071
- msgstr "Alt / Titel"
2072
 
2073
  #: ../admin/views/BWGViewGalleries_bwg.php:928
2074
  msgid "Redirect"
@@ -2140,8 +2152,8 @@ msgstr ""
2140
  "afbeeldingen op te slaan. <br /> Oude directory inhoud zal naar de nieuwe "
2141
  "worden verplaatst."
2142
 
2143
- #: ../admin/views/BWGViewOptions_bwg.php:138 ../admin/views/BWGViewOptions_bwg.
2144
- #: php:1623
2145
  msgid "Image dimensions:"
2146
  msgstr "Afbeelding afmetingen:"
2147
 
@@ -2176,11 +2188,11 @@ msgstr "Importeren vanuit Media Library:"
2176
 
2177
  #: ../admin/views/BWGViewOptions_bwg.php:221
2178
  msgid "Enable import from Media Library in file manager."
2179
- msgstr "Enable import van Media Library in file manager."
2180
 
2181
  #: ../admin/views/BWGViewOptions_bwg.php:226
2182
  msgid "Enable href attribute:"
2183
- msgstr "Enable href attribuut:"
2184
 
2185
  #: ../admin/views/BWGViewOptions_bwg.php:231
2186
  msgid "Disable this option only if it conflicts with your theme."
@@ -2195,8 +2207,8 @@ msgid ""
2195
  "Enabling this option the meta description of the image will be automatically "
2196
  "filled in image description field."
2197
  msgstr ""
2198
- "Het inschakelen van deze optie de meta description van het beeld automatisch "
2199
- "worden ingevuld image description veld."
2200
 
2201
  #: ../admin/views/BWGViewOptions_bwg.php:246
2202
  msgid "Roles:"
@@ -2248,8 +2260,8 @@ msgstr "Watermerk soort:"
2248
  msgid "Watermark url: "
2249
  msgstr "Watermerk url:"
2250
 
2251
- #: ../admin/views/BWGViewOptions_bwg.php:351 ../admin/views/BWGViewOptions_bwg.
2252
- #: php:506
2253
  msgid "Add Image"
2254
  msgstr "Afbeelding toevoegen"
2255
 
@@ -2283,7 +2295,7 @@ msgstr "Watermerk kleur:"
2283
 
2284
  #: ../admin/views/BWGViewOptions_bwg.php:423
2285
  msgid "Watermark opacity:"
2286
- msgstr "Watermerk ondoorzichtigheid:"
2287
 
2288
  #: ../admin/views/BWGViewOptions_bwg.php:427
2289
  msgid "Opacity value must be in the range of 0 to 100."
@@ -2307,7 +2319,9 @@ msgstr ""
2307
 
2308
  #: ../admin/views/BWGViewOptions_bwg.php:526
2309
  msgid "Enter a URL to open when the advertisement banner is clicked."
2310
- msgstr "Voer een URL te openen wanneer de advertentie banner wordt geklikt."
 
 
2311
 
2312
  #: ../admin/views/BWGViewOptions_bwg.php:550
2313
  msgid "dvertisement font style:"
@@ -2315,7 +2329,7 @@ msgstr "dvertisement lettertype:"
2315
 
2316
  #: ../admin/views/BWGViewOptions_bwg.php:576
2317
  msgid "Advertisement opacity:"
2318
- msgstr "Advertentie ondoorzichtigheid:"
2319
 
2320
  #: ../admin/views/BWGViewOptions_bwg.php:585
2321
  msgid "Advertisement position:"
@@ -2323,42 +2337,42 @@ msgstr "Advertentie positie:"
2323
 
2324
  #: ../admin/views/BWGViewOptions_bwg.php:686
2325
  msgid "Enable filmstrip:"
2326
- msgstr "Enable filmstrip:"
2327
 
2328
- #: ../admin/views/BWGViewOptions_bwg.php:715 ../admin/views/BWGViewOptions_bwg.
2329
- #: php:1139
2330
  msgid "Show Next / Previous buttons:"
2331
  msgstr "Toon volgende / vorige knoppen:"
2332
 
2333
- #: ../admin/views/BWGViewOptions_bwg.php:718 ../admin/views/BWGViewOptions_bwg.
2334
- #: php:1142
2335
  msgid "On hover"
2336
  msgstr "Op Hover"
2337
 
2338
- #: ../admin/views/BWGViewOptions_bwg.php:719 ../admin/views/BWGViewOptions_bwg.
2339
- #: php:1143
2340
  msgid "Always"
2341
  msgstr "Altijd"
2342
 
2343
  #: ../admin/views/BWGViewOptions_bwg.php:831
2344
  msgid "Enable comments moderation:"
2345
- msgstr "Enable reacties matiging:"
2346
 
2347
  #: ../admin/views/BWGViewOptions_bwg.php:841
2348
  msgid "Enable Email for comments:"
2349
- msgstr "Enable E-mail voor commentaar:"
2350
 
2351
  #: ../admin/views/BWGViewOptions_bwg.php:851
2352
  msgid "Enable Captcha for comments:"
2353
- msgstr "Inschakelen Captcha voor commentaar:"
2354
 
2355
  #: ../admin/views/BWGViewOptions_bwg.php:861
2356
  msgid "Enable original image display button:"
2357
- msgstr "Enable originele beeldweergave knop:"
2358
 
2359
  #: ../admin/views/BWGViewOptions_bwg.php:871
2360
  msgid "Enable download button:"
2361
- msgstr "Enable download knop:"
2362
 
2363
  #: ../admin/views/BWGViewOptions_bwg.php:931
2364
  msgid "Show images count:"
@@ -2366,11 +2380,11 @@ msgstr "Toon afbeeldingen te tellen:"
2366
 
2367
  #: ../admin/views/BWGViewOptions_bwg.php:941
2368
  msgid "Enable loop:"
2369
- msgstr "Enable lus:"
2370
 
2371
  #: ../admin/views/BWGViewOptions_bwg.php:951
2372
  msgid "Enable AddThis:"
2373
- msgstr "Enable AddThis:"
2374
 
2375
  #: ../admin/views/BWGViewOptions_bwg.php:963
2376
  msgid "profile id:"
@@ -2402,7 +2416,7 @@ msgstr "Toon album / galerie naam:"
2402
 
2403
  #: ../admin/views/BWGViewOptions_bwg.php:1043
2404
  msgid "Enable extended album description:"
2405
- msgstr "Enable uitgebreide album beschrijving:"
2406
 
2407
  #: ../admin/views/BWGViewOptions_bwg.php:1063
2408
  msgid "Extended album height:"
@@ -2411,28 +2425,29 @@ msgstr "Uitgebreid album hoogte:"
2411
  #: ../admin/views/BWGViewOptions_bwg.php:1083 ..
2412
  #: /admin/views/BWGViewWidgetSlideshow.php:129
2413
  msgid "Slideshow effect:"
2414
- msgstr "Slideshow-effect:"
2415
 
2416
  #: ../admin/views/BWGViewOptions_bwg.php:1109
2417
  msgid "Slideshow dimensions:"
2418
- msgstr "Slideshow afmetingen:"
2419
 
2420
  #: ../admin/views/BWGViewOptions_bwg.php:1119
2421
  #: ../admin/views/BWGViewOptions_bwg. php:1655
2422
  msgid "Enable autoplay:"
2423
- msgstr "Enable autoplay:"
2424
 
2425
  #: ../admin/views/BWGViewOptions_bwg.php:1129 ..
2426
  #: /admin/views/BWGViewWidgetSlideshow.php:145
2427
  msgid "Enable shuffle:"
2428
- msgstr "Enable shuffle:"
2429
 
2430
  #: ../admin/views/BWGViewOptions_bwg.php:1166
2431
  msgid "Slideshow filmstrip size:"
2432
- msgstr "Slideshow filmstrip grootte:"
2433
 
2434
- #: ../admin/views/BWGViewOptions_bwg.php:1187 ../admin/views/BWGViewThemes_bwg.
2435
- #: php:400 ../admin/views/BWGViewThemes_bwg.php:1557
 
2436
  msgid "Title position:"
2437
  msgstr "Titel functie:"
2438
 
@@ -2442,7 +2457,7 @@ msgstr "Omschrijving positie:"
2442
 
2443
  #: ../admin/views/BWGViewOptions_bwg.php:1256
2444
  msgid "Enable slideshow Music:"
2445
- msgstr "Enable slideshow Muziek:"
2446
 
2447
  #: ../admin/views/BWGViewOptions_bwg.php:1280
2448
  msgid "Add Music"
@@ -2500,7 +2515,7 @@ msgstr "Toon beschrijving in Verticale Metselwerk view:"
2500
 
2501
  #: ../admin/views/BWGViewOptions_bwg.php:1403
2502
  msgid "Enable image pagination:"
2503
- msgstr "Enable image paginering:"
2504
 
2505
  #: ../admin/views/BWGViewOptions_bwg.php:1411
2506
  msgid "Thumbnail click action:"
@@ -2516,11 +2531,11 @@ msgstr "Speel icoon over de video thumbnail:"
2516
 
2517
  #: ../admin/views/BWGViewOptions_bwg.php:1445
2518
  msgid "Enable image title for Image Browser view:"
2519
- msgstr "Inschakelen image titel voor Image Browser view:"
2520
 
2521
  #: ../admin/views/BWGViewOptions_bwg.php:1455
2522
  msgid "Enable image description for Image Browser view:"
2523
- msgstr "Inschakelen image description voor Image Browser view:"
2524
 
2525
  #: ../admin/views/BWGViewOptions_bwg.php:1465
2526
  msgid "Image width for Image Browser view:"
@@ -2528,7 +2543,7 @@ msgstr "Afbeelding breedte voor afbeelding Browser view:"
2528
 
2529
  #: ../admin/views/BWGViewOptions_bwg.php:1474
2530
  msgid "Enable image title for Blog Style view:"
2531
- msgstr "Inschakelen image titel voor Blog Stijl bekijken:"
2532
 
2533
  #: ../admin/views/BWGViewOptions_bwg.php:1484
2534
  msgid "Image width for Blog Style view:"
@@ -2540,7 +2555,7 @@ msgstr "Beelden per pagina in Blog Stijl view:"
2540
 
2541
  #: ../admin/views/BWGViewOptions_bwg.php:1502
2542
  msgid "Enable pagination for Blog Style view:"
2543
- msgstr "Inschakelen paginering voor Blog Stijl bekijken:"
2544
 
2545
  #: ../admin/views/BWGViewOptions_bwg.php:1521
2546
  msgid "Gallery autoupdate interval:"
@@ -2560,7 +2575,7 @@ msgstr "Minimaal 1 min."
2560
 
2561
  #: ../admin/views/BWGViewOptions_bwg.php:1543
2562
  msgid "Enable creating Instagram galleries."
2563
- msgstr "In staat het creëren van Instagram galeries."
2564
 
2565
  #: ../admin/views/BWGViewOptions_bwg.php:1557
2566
  msgid "app Id"
@@ -2620,7 +2635,7 @@ msgstr "Maak nieuw thema"
2620
 
2621
  #: ../admin/views/BWGViewThemes_bwg.php:164
2622
  msgid "Solid"
2623
- msgstr "Solide"
2624
 
2625
  #: ../admin/views/BWGViewThemes_bwg.php:165
2626
  msgid "Dotted"
@@ -2628,7 +2643,7 @@ msgstr "Stippel"
2628
 
2629
  #: ../admin/views/BWGViewThemes_bwg.php:166
2630
  msgid "Dashed"
2631
- msgstr "Binnen"
2632
 
2633
  #: ../admin/views/BWGViewThemes_bwg.php:167
2634
  #: ../admin/views/BWGViewThemes_bwg.php:204
@@ -2660,7 +2675,7 @@ msgstr "Links"
2660
 
2661
  #: ../admin/views/BWGViewThemes_bwg.php:187
2662
  msgid "Center"
2663
- msgstr "Centrum"
2664
 
2665
  #: ../admin/views/BWGViewThemes_bwg.php:188
2666
  #: ../admin/views/BWGViewThemes_bwg.php:918
@@ -2671,7 +2686,7 @@ msgstr "Rechts"
2671
 
2672
  #: ../admin/views/BWGViewThemes_bwg.php:191
2673
  msgid "Lighter"
2674
- msgstr "Aansteker"
2675
 
2676
  #: ../admin/views/BWGViewThemes_bwg.php:192
2677
  msgid "Normal"
@@ -2679,7 +2694,7 @@ msgstr "Normaal"
2679
 
2680
  #: ../admin/views/BWGViewThemes_bwg.php:193
2681
  msgid "Bold"
2682
- msgstr "Stoutmoedig"
2683
 
2684
  #: ../admin/views/BWGViewThemes_bwg.php:197
2685
  msgid "Rotate"
@@ -2687,11 +2702,11 @@ msgstr "Roteren"
2687
 
2688
  #: ../admin/views/BWGViewThemes_bwg.php:198
2689
  msgid "Scale"
2690
- msgstr "Schaal"
2691
 
2692
  #: ../admin/views/BWGViewThemes_bwg.php:199
2693
  msgid "Skew"
2694
- msgstr "Scheef"
2695
 
2696
  #: ../admin/views/BWGViewThemes_bwg.php:202
2697
  msgid "Chevron"
@@ -2747,7 +2762,7 @@ msgstr "Parameters"
2747
  #: /admin/views/BWGViewThemes_bwg.php:1851 2414
2748
  #: ../admin/views/BWGViewThemes_bwg.php:3624
2749
  msgid "Margin:"
2750
- msgstr "Margin:"
2751
 
2752
  #: ../admin/views/BWGViewThemes_bwg.php:270
2753
  #: ../admin/views/BWGViewThemes_bwg.php:472
@@ -2765,7 +2780,7 @@ msgstr "Padding:"
2765
  #: /admin/views/BWGViewThemes_bwg.php:2182 2467
2766
  #: ../admin/views/BWGViewThemes_bwg.php:3585
2767
  msgid "Border width:"
2768
- msgstr "Border width:"
2769
 
2770
  #: ../admin/views/BWGViewThemes_bwg.php:282
2771
  #: ../admin/views/BWGViewThemes_bwg.php:484
@@ -2774,7 +2789,7 @@ msgstr "Border width:"
2774
  #: /admin/views/BWGViewThemes_bwg.php:2188 2473
2775
  #: ../admin/views/BWGViewThemes_bwg.php:3591
2776
  msgid "Border style:"
2777
- msgstr "Border stijl:"
2778
 
2779
  #: ../admin/views/BWGViewThemes_bwg.php:296
2780
  #: ../admin/views/BWGViewThemes_bwg.php:498
@@ -2783,7 +2798,7 @@ msgstr "Border stijl:"
2783
  #: /admin/views/BWGViewThemes_bwg.php:2202 2487
2784
  #: ../admin/views/BWGViewThemes_bwg.php:3605
2785
  msgid "Border color:"
2786
- msgstr "Border kleur:"
2787
 
2788
  #: ../admin/views/BWGViewThemes_bwg.php:302
2789
  #: ../admin/views/BWGViewThemes_bwg.php:504
@@ -2793,7 +2808,7 @@ msgstr "Border kleur:"
2793
  #: ../admin/views/BWGViewThemes_bwg.php:2493
2794
  #: /admin/views/BWGViewThemes_bwg.php:3611
2795
  msgid "Border radius:"
2796
- msgstr "Grens straal:"
2797
 
2798
  #: ../admin/views/BWGViewThemes_bwg.php:305
2799
  #: ../admin/views/BWGViewThemes_bwg.php:312
@@ -2847,7 +2862,7 @@ msgstr "Grens straal:"
2847
  #: ../admin/views/BWGViewThemes_bwg.php:3815
2848
  #: /admin/views/BWGViewThemes_bwg.php:3897
2849
  msgid "Use CSS type values."
2850
- msgstr "Gebruik CSS soort waarden."
2851
 
2852
  #: ../admin/views/BWGViewThemes_bwg.php:309
2853
  #: ../admin/views/BWGViewThemes_bwg.php:1468
@@ -2926,7 +2941,7 @@ msgstr "Uitlijning:"
2926
  #: ../admin/views/BWGViewThemes_bwg.php:3191
2927
  #: /admin/views/BWGViewThemes_bwg.php:3676
2928
  msgid "Top"
2929
- msgstr "Top"
2930
 
2931
  #: ../admin/views/BWGViewThemes_bwg.php:405
2932
  #: ../admin/views/BWGViewThemes_bwg.php:919
@@ -2936,7 +2951,7 @@ msgstr "Top"
2936
  #: ../admin/views/BWGViewThemes_bwg.php:3193
2937
  #: /admin/views/BWGViewThemes_bwg.php:3678
2938
  msgid "Bottom"
2939
- msgstr "Bodem"
2940
 
2941
  #: ../admin/views/BWGViewThemes_bwg.php:409
2942
  #: ../admin/views/BWGViewThemes_bwg.php:737
@@ -3109,7 +3124,7 @@ msgstr "Rechts, links knoppen stijl:"
3109
  #: ../admin/views/BWGViewThemes_bwg.php:901
3110
  #: ../admin/views/BWGViewThemes_bwg.php:2832
3111
  msgid "Right, left buttons box shadow:"
3112
- msgstr "Rechts, doos links knoppen shadow:"
3113
 
3114
  #: ../admin/views/BWGViewThemes_bwg.php:914
3115
  msgid "Filmstrip/Slider bullet position:"
@@ -3277,7 +3292,7 @@ msgstr "Titel uitlijning:"
3277
  #: ../admin/views/BWGViewThemes_bwg.php:2331 ..
3278
  #: /admin/views/BWGViewThemes_bwg.php:2455 3545
3279
  msgid "Font size:"
3280
- msgstr "Letter grootte:"
3281
 
3282
  #: ../admin/views/BWGViewThemes_bwg.php:1339
3283
  #: ../admin/views/BWGViewThemes_bwg.php:1626
@@ -3356,7 +3371,7 @@ msgstr "Miniatuur grens radius:"
3356
 
3357
  #: ../admin/views/BWGViewThemes_bwg.php:1721
3358
  msgid "Thumbnail box shadow:"
3359
- msgstr "Miniatuur doos schaduw:"
3360
 
3361
  #: ../admin/views/BWGViewThemes_bwg.php:1737
3362
  msgid "Thumbnail alignment:"
@@ -3388,7 +3403,7 @@ msgstr "Miniatuur div border breedte:"
3388
 
3389
  #: ../admin/views/BWGViewThemes_bwg.php:1824
3390
  msgid "humbnail div border style:"
3391
- msgstr "humbnail div grens stijl:"
3392
 
3393
  #: ../admin/views/BWGViewThemes_bwg.php:1838
3394
  msgid "Thumbnail div border color:"
@@ -3594,7 +3609,7 @@ msgstr "Sluitknop border kleur:"
3594
 
3595
  #: ../admin/views/BWGViewThemes_bwg.php:2733
3596
  msgid "Close button box shadow:"
3597
- msgstr "Sluitknop doos schaduw:"
3598
 
3599
  #: ../admin/views/BWGViewThemes_bwg.php:2740
3600
  msgid "Close button background color:"
@@ -3922,7 +3937,7 @@ msgstr "Knopachtergrond transparantie:"
3922
 
3923
  #: ../admin/views/BWGViewThemes_bwg.php:3651
3924
  msgid "Button transition:"
3925
- msgstr "Knoop overgang:"
3926
 
3927
  #: ../admin/views/BWGViewThemes_bwg.php:3673
3928
  msgid "Position:"
@@ -3970,7 +3985,7 @@ msgstr "Titel achtergrondkleur:"
3970
 
3971
  #: ../admin/views/BWGViewThemes_bwg.php:3887
3972
  msgid "Title opacity:"
3973
- msgstr "Titel ondoorzichtigheid:"
3974
 
3975
  #: ../admin/views/BWGViewThemes_bwg.php:3915
3976
  msgid "Title Font family:"
@@ -4105,7 +4120,7 @@ msgstr "Transparante achtergrond:"
4105
 
4106
  #: ../admin/views/BWGViewWidgetTags.php:150
4107
  msgid "Background Color:"
4108
- msgstr "Achtergrond kleur:"
4109
 
4110
  #: ../admin/views/BWGViewWidgetTags.php:154
4111
  msgid "Text Color:"
@@ -4177,7 +4192,7 @@ msgstr "Mediatheek"
4177
 
4178
  #: ../filemanager/view.php:142
4179
  msgid "View thumbs"
4180
- msgstr "Bekijk duimen"
4181
 
4182
  #: ../filemanager/view.php:143
4183
  msgid "View list"
@@ -4185,11 +4200,11 @@ msgstr "Bekijk lijst"
4185
 
4186
  #: ../filemanager/view.php:150
4187
  msgid "To change upload directory go to Options page."
4188
- msgstr "Veranderen uploadmap ga naar pagina Opties."
4189
 
4190
  #: ../filemanager/view.php:275
4191
  msgid "Add selected images to gallery"
4192
- msgstr "Voeg geselecteerde afbeeldingen naar galerij"
4193
 
4194
  #: ../filemanager/view.php:285 ../filemanager/view.php:368
4195
  msgid "Thumbnail Maximum Dimensions:"
@@ -4233,7 +4248,7 @@ msgstr "Het item is succesvol ingesteld als standaard."
4233
 
4234
  #: ../framework/WDWLibrary.php:88
4235
  msgid "Options Succesfully Saved."
4236
- msgstr "Opties Succesvol opgeslagen."
4237
 
4238
  #: ../framework/WDWLibrary.php:124
4239
  msgid "A term with the name provided already exists."
@@ -4323,8 +4338,9 @@ msgstr "Er is geen album geselecteerd of het album is verwijderd."
4323
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:189 ..
4324
  #: /frontend/views/BWGViewAlbum_extended_preview.php:134
4325
  #: /frontend/views/BWGViewAlbum_masonry_preview.php:164
4326
- #: /frontend/views/BWGViewBlog_style.php:106 ../frontend/views/BWGViewCarousel.
4327
- #: php:79 ../frontend/views/BWGViewImage_browser.php:83
 
4328
  #: /frontend/views/BWGViewSlideshow.php:168
4329
  #: ../frontend/views/BWGViewThumbnails. php:172
4330
  #: ../frontend/views/BWGViewThumbnails_masonry.php:169
@@ -4348,8 +4364,9 @@ msgstr "Galerij is leeg."
4348
  #: /frontend/views/BWGViewAlbum_compact_preview.php:1148
4349
  #: /frontend/views/BWGViewAlbum_extended_preview.php:1078
4350
  #: /frontend/views/BWGViewAlbum_extended_preview.php:1127
4351
- #: /frontend/views/BWGViewCarousel.php:543 ../frontend/views/BWGViewGalleryBox.
4352
- #: php:888 ../frontend/views/BWGViewGalleryBox.php:2769
 
4353
  #: /frontend/views/BWGViewSlideshow.php:1654
4354
  #: ../frontend/views/BWGViewThumbnails. php:455
4355
  #: ../frontend/views/BWGViewThumbnails_mosaic.php:398
@@ -4415,8 +4432,9 @@ msgstr "Share on Pinterest"
4415
  msgid "Share on Tumblr"
4416
  msgstr "Share on Tumblr"
4417
 
4418
- #: ../frontend/views/BWGViewCarousel.php:531 ../frontend/views/BWGViewCarousel.
4419
- #: php:537 ../frontend/views/BWGViewGalleryBox.php:2763 ..
 
4420
  #: /frontend/views/BWGViewGalleryBox.php:2778
4421
  #: ../frontend/views/BWGViewSlideshow. php:1645
4422
  #: ../frontend/views/BWGViewSlideshow.php:1663
2
  msgstr ""
3
  "Project-Id-Version: photo-gallery\n"
4
  "POT-Creation-Date: 15-10-27 08:11+000\n"
5
+ "PO-Revision-Date: 2016-02-12 18:02+0400\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: ENVIS <info@envis.nl>\n"
8
  "Language: nl\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.5.4\n"
14
 
15
  #: ../photo-gallery-notices.php:188
16
  msgid "Leave A Review?"
31
 
32
  #: ../photo-gallery-notices.php:191
33
  msgid "I've already left a review"
34
+ msgstr "Ik heb al een recensie achtergelaten"
35
 
36
  #: ../photo-gallery-notices.php:192
37
  msgid "Maybe Later"
39
 
40
  #: ../photo-gallery-notices.php:193 ../photo-gallery-notices.php:203
41
  msgid "Never show again"
42
+ msgstr "Nooit meer tonen"
43
 
44
  #: ../photo-gallery-notices.php:199
45
  msgid "Hey! How's It Going?"
130
 
131
  #: ../photo-gallery.php:119
132
  msgid "Featured Themes"
133
+ msgstr "Aanbevolen Thema's"
134
 
135
  #: ../photo-gallery.php:121
136
  msgid "Uninstall"
334
  #: /admin/controllers/BWGControllerOptions_bwg.php:384
335
  #: /admin/views/BWGViewTags_bwg.php:45 ../framework/WDWLibrary.php:46
336
  msgid "Item Succesfully Saved."
337
+ msgstr "Item succesvol opgeslagen."
338
 
339
  #: ../admin/controllers/BWGControllerGalleries_bwg.php:871 ..
340
  #: /admin/controllers/BWGControllerGalleries_bwg.php:911
375
  msgstr "Albums / Galleries"
376
 
377
  #: ../admin/views/BWGViewAddAlbumsGalleries.php:51 ..
378
+ #: /admin/views/BWGViewAddAlbumsGalleries.php:77
379
+ #: ../admin/views/BWGViewAddTags. php:51 ../admin/views/BWGViewAddTags.php:68
380
  #: ../admin/views/BWGViewAlbums_bwg. php:69
381
  #: ../admin/views/BWGViewAlbums_bwg.php:90
382
  #: /admin/views/BWGViewComments_bwg.php:63
396
  msgid "Type"
397
  msgstr "Type"
398
 
399
+ #: ../admin/views/BWGViewAddTags.php:75
400
+ #: ../admin/views/BWGViewAlbums_bwg.php:98 ..
401
+ #: /admin/views/BWGViewGalleries_bwg.php:98
402
  #: ../admin/views/BWGViewTags_bwg.php:92
403
  msgid "Slug"
404
  msgstr "Naaktslak"
410
  #: ../admin/views/BWGViewAlbums_bwg.php:41
411
  #: ../admin/views/BWGViewComments_bwg.php:42
412
  #: ../admin/views/BWGViewGalleries_bwg.php:40 ..
413
+ #: /admin/views/BWGViewGalleries_bwg.php:219
414
+ #: ../admin/views/BWGViewOptions_bwg. php:31
415
+ #: ../admin/views/BWGViewRates_bwg.php:41 ../admin/views/BWGViewTags_bwg.
416
+ #: php:43 ../admin/views/BWGViewThemes_bwg.php:39
417
  #: /admin/views/BWGViewThemes_bwg.php:217
418
  msgid "Read More in User Manual"
419
  msgstr "Lees meer in de gebruikershandleiding"
420
 
421
+ #: ../admin/views/BWGViewAlbums_bwg.php:49
422
+ #: ../admin/views/BWGViewGalleries_bwg. php:48
423
+ #: ../admin/views/BWGViewThemes_bwg.php:47
424
  msgid "Add new"
425
+ msgstr "Nieuw"
426
 
427
+ #: ../admin/views/BWGViewAlbums_bwg.php:51
428
+ #: ../admin/views/BWGViewGalleries_bwg. php:50
429
  msgid "Changes made in this table should be saved."
430
  msgstr "Wijzigingen in deze tabel moet worden opgeslagen."
431
 
432
+ #: ../admin/views/BWGViewAlbums_bwg.php:55
433
+ #: ../admin/views/BWGViewGalleries_bwg. php:54
434
+ #: ../admin/views/BWGViewGalleries_bwg.php:772 ../filemanager/view.php:268
435
+ #: ../filemanager/view.php:353
436
  msgid "Select All"
437
  msgstr "Alles selecteren"
438
 
439
+ #: ../admin/views/BWGViewAlbums_bwg.php:58
440
+ #: ../admin/views/BWGViewGalleries_bwg. php:57
441
  msgid "Save Order"
442
+ msgstr "Bestelling opslaan"
443
 
444
  #: ../admin/views/BWGViewAlbums_bwg.php:59
445
  #: ../admin/views/BWGViewComments_bwg.php:51
459
  #: ../admin/views/BWGViewComments_bwg.php:53
460
  #: ../admin/views/BWGViewGalleries_bwg.php:60 ..
461
  #: /admin/views/BWGViewGalleries_bwg.php:794
462
+ #: ../admin/views/BWGViewRates_bwg.php:50
463
+ #: ../admin/views/BWGViewTags_bwg.php:56
464
  #: ../admin/views/BWGViewThemes_bwg.php:50
465
  msgid "Do you want to delete selected items?"
466
  msgstr "Wilt u de geselecteerde items wilt verwijderen?"
476
  #: ../admin/views/BWGViewGalleries_bwg.php:174
477
  #: /admin/views/BWGViewGalleries_bwg.php:800 php:956
478
  #: ../admin/views/BWGViewGalleries_bwg.php:1071
479
+ #: /admin/views/BWGViewRates_bwg.php:54
480
+ #: ../admin/views/BWGViewRates_bwg.php:107
481
  #: /admin/views/BWGViewRates_bwg.php:137 ../admin/views/BWGViewTags_bwg.php:56
482
  #: /admin/views/BWGViewTags_bwg.php:104 ../admin/views/BWGViewTags_bwg.php:156
483
  #: /admin/views/BWGViewThemes_bwg.php:54
486
  msgid "Delete"
487
  msgstr "Verwijderen"
488
 
489
+ #: ../admin/views/BWGViewAlbums_bwg.php:101
490
+ #: ../admin/views/BWGViewBWGShortcode. php:363
491
+ #: ../admin/views/BWGViewBWGShortcode.php:508 ..
492
  #: /admin/views/BWGViewGalleries_bwg.php:84
493
  #: ../admin/views/BWGViewGalleries_bwg. php:914
494
  #: ../admin/views/BWGViewOptions_bwg.php:1014
496
  msgid "Thumbnail"
497
  msgstr "Miniatuur"
498
 
499
+ #: ../admin/views/BWGViewAlbums_bwg.php:107
500
+ #: ../admin/views/BWGViewBWGShortcode. php:209
501
+ #: ../admin/views/BWGViewGalleries_bwg.php:115 ..
502
  #: /admin/views/BWGViewGalleries_bwg.php:945
503
  msgid "Order"
504
  msgstr "Bestellen"
508
  msgid "Author"
509
  msgstr "Auteur"
510
 
511
+ #: ../admin/views/BWGViewAlbums_bwg.php:123
512
+ #: ../admin/views/BWGViewComments_bwg. php:121
513
+ #: ../admin/views/BWGViewGalleries_bwg.php:123 ..
514
  #: /admin/views/BWGViewGalleries_bwg.php:953
515
  msgid "Published"
516
  msgstr "Gepubliceerd"
541
  #: ../admin/views/BWGViewAlbums_bwg.php:258
542
  #: ../admin/views/BWGViewGalleries_bwg. php:536
543
  #: ../admin/views/BWGViewOptions_bwg.php:99 ..
544
+ #: /admin/views/BWGViewTags_bwg.php:51
545
+ #: ../admin/views/BWGViewThemes_bwg.php:224
546
  msgid "Save"
547
+ msgstr "Opslaan"
548
 
549
  #: ../admin/views/BWGViewAlbums_bwg.php:259
550
  #: ../admin/views/BWGViewGalleries_bwg. php:539
551
  #: ../admin/views/BWGViewThemes_bwg.php:225
552
  msgid "Apply"
553
+ msgstr "Toepassen"
554
 
555
  #: ../admin/views/BWGViewAlbums_bwg.php:260
556
  #: ../admin/views/BWGViewGalleries_bwg. php:541
583
  msgid "Published:"
584
  msgstr "Gepubliceerd:"
585
 
586
+ #: ../admin/views/BWGViewAlbums_bwg.php:299
587
+ #: ../admin/views/BWGViewBWGShortcode. php:231
588
+ #: ../admin/views/BWGViewBWGShortcode.php:242 ..
589
  #: /admin/views/BWGViewBWGShortcode.php:249 php:290
590
  #: ../admin/views/BWGViewBWGShortcode.php:319
591
  #: /admin/views/BWGViewBWGShortcode.php:389 php:424
672
  msgid "No"
673
  msgstr "Nee"
674
 
675
+ #: ../admin/views/BWGViewAlbums_bwg.php:301
676
+ #: ../admin/views/BWGViewBWGShortcode. php:230
677
+ #: ../admin/views/BWGViewBWGShortcode.php:241 ..
678
  #: /admin/views/BWGViewBWGShortcode.php:248 php:289
679
  #: ../admin/views/BWGViewBWGShortcode.php:318
680
  #: /admin/views/BWGViewBWGShortcode.php:388 php:423
770
  #: ../admin/views/BWGViewAlbums_bwg.php:320
771
  #: ../admin/views/BWGViewGalleries_bwg. php:690
772
  msgid "Add Preview Image"
773
+ msgstr "Voeg voorbeeldafbeelding toeg"
774
 
775
  #: ../admin/views/BWGViewAlbums_bwg.php:331
776
  msgid "Albums And Galleries:"
861
  msgid "Display"
862
  msgstr "Beeldscherm"
863
 
864
+ #: ../admin/views/BWGViewBWGShortcode.php:116
865
+ #: ../admin/views/BWGViewThemes_bwg. php:234
866
  msgid "Thumbnails"
867
  msgstr "Miniaturen"
868
 
887
  #: ../admin/views/BWGViewOptions_bwg. php:114
888
  #: ../admin/views/BWGViewThemes_bwg.php:237
889
  msgid "Slideshow"
890
+ msgstr "Diapresentatie"
891
 
892
+ #: ../admin/views/BWGViewBWGShortcode.php:132
893
+ #: ../admin/views/BWGViewThemes_bwg. php:238
894
  msgid "Image Browser"
895
  msgstr "Afbeelding Browser"
896
 
897
+ #: ../admin/views/BWGViewBWGShortcode.php:136
898
+ #: ../admin/views/BWGViewThemes_bwg. php:239
899
  msgid "Compact Album"
900
  msgstr "Compacte Album"
901
 
902
+ #: ../admin/views/BWGViewBWGShortcode.php:140
903
+ #: ../admin/views/BWGViewThemes_bwg. php:240
904
  msgid "Masonry Album"
905
  msgstr "Metselwerk Album"
906
 
907
+ #: ../admin/views/BWGViewBWGShortcode.php:144
908
+ #: ../admin/views/BWGViewThemes_bwg. php:241
909
  msgid "Extended Album"
910
  msgstr "Extended Album"
911
 
912
+ #: ../admin/views/BWGViewBWGShortcode.php:148
913
+ #: ../admin/views/BWGViewThemes_bwg. php:242
914
  msgid "Blog Style"
915
  msgstr "Blog Style"
916
 
955
  msgid "Sort images by:"
956
  msgstr "Beelden sorteren op:"
957
 
958
+ #: ../admin/views/BWGViewBWGShortcode.php:210
959
+ #: ../admin/views/BWGViewThemes_bwg. php:58
960
  msgid "Title"
961
  msgstr "Titel"
962
 
967
 
968
  #: ../admin/views/BWGViewBWGShortcode.php:212
969
  #: ../admin/views/BWGViewGalleries_bwg. php:904
970
+ #: ../admin/views/BWGViewGalleries_bwg.php:920 ../framework/WDWLibrary.
971
+ #: php:849
972
  msgid "Filename"
973
  msgstr "Bestandsnaam"
974
 
1005
  #: ../admin/views/BWGViewBWGShortcode.php:239
1006
  #: ../admin/views/BWGViewOptions_bwg. php:187
1007
  msgid "Show tag box:"
1008
+ msgstr "Toon tag vierkant:"
1009
 
1010
  #: ../admin/views/BWGViewBWGShortcode.php:246
1011
  #: ../admin/views/BWGViewOptions_bwg. php:177
1063
  "of the parent container. This option keeps thumbs to look nice when viewed "
1064
  "with very large or very small screen. Prevents zooming of thumbs."
1065
  msgstr ""
1066
+ "Mosaic miniaturen hebben geen vaste grootte, maar zijn evenredig met de "
1067
+ "breedte van de bovenliggende container. Deze optie zorgt ervoor dat "
1068
+ "miniaturen er leuk uitzien wanneer bekeken op een zeer groot of zeer klein "
1069
+ "scherm. Dit voorkomt het inzoomen op de miniaturen."
1070
 
1071
  #: ../admin/views/BWGViewBWGShortcode.php:287
1072
  #: ../admin/views/BWGViewBWGShortcode. php:386
1133
  #: ../admin/views/BWGViewOptions_bwg.php:1026
1134
  #: ../admin/views/BWGViewOptions_bwg.php:1379
1135
  msgid "Always show"
1136
+ msgstr "Altijd tonen"
1137
 
1138
  #: ../admin/views/BWGViewBWGShortcode.php:312
1139
  #: ../admin/views/BWGViewBWGShortcode. php:350
1150
  #: /admin/views/BWGViewBWGShortcode.php:567 php:625
1151
  #: ../admin/views/BWGViewOptions_bwg.php:1001
1152
  msgid "Enable pagination:"
1153
+ msgstr "Activeer paginering:"
1154
 
1155
  #: ../admin/views/BWGViewBWGShortcode.php:320
1156
  #: ../admin/views/BWGViewBWGShortcode. php:425
1274
 
1275
  #: ../admin/views/BWGViewBWGShortcode.php:492
1276
  msgid "Enable album description:"
1277
+ msgstr "Activeer album beschrijving:"
1278
 
1279
  #: ../admin/views/BWGViewBWGShortcode.php:499
1280
  #: ../admin/views/BWGViewOptions_bwg. php:1053
1306
  #: ../admin/views/BWGViewOptions_bwg.php:1179 ..
1307
  #: /admin/views/BWGViewOptions_bwg.php:1646
1308
  msgid "Enable image title:"
1309
+ msgstr "Activeer afbeeldingstitel:"
1310
 
1311
  #: ../admin/views/BWGViewBWGShortcode.php:599
1312
  #: ../admin/views/BWGViewOptions_bwg. php:1222
1313
  msgid "Enable image description:"
1314
+ msgstr "Activeer afbeeldingsbeschrijving:"
1315
 
1316
  #: ../admin/views/BWGViewBWGShortcode.php:629
1317
  msgid "Load more"
1319
 
1320
  #: ../admin/views/BWGViewBWGShortcode.php:640
1321
  msgid "Slideshow Effect:"
1322
+ msgstr "Diapresentatie effect:"
1323
 
1324
  #: ../admin/views/BWGViewBWGShortcode.php:654
1325
  #: ../admin/views/BWGViewBWGShortcode. php:814
1339
 
1340
  #: ../admin/views/BWGViewBWGShortcode.php:658
1341
  msgid "Maximum values for slideshow width and height."
1342
+ msgstr "Maximale waarden voor diapresentatie breedte en hoogte."
1343
 
1344
  #: ../admin/views/BWGViewBWGShortcode.php:658
1345
  msgid "Slideshow dimensions: "
1346
+ msgstr "Diapresentatie afmetingen:"
1347
 
1348
  #: ../admin/views/BWGViewBWGShortcode.php:665
1349
  #: ../admin/views/BWGViewBWGShortcode. php:807
1350
  msgid "Enable Autoplay:"
1351
+ msgstr "Activeer automatisch afspelen:"
1352
 
1353
  #: ../admin/views/BWGViewBWGShortcode.php:672
1354
  msgid "Enable Shuffle:"
1355
+ msgstr "Activeer Shuffle:"
1356
 
1357
  #: ../admin/views/BWGViewBWGShortcode.php:679
1358
  #: ../admin/views/BWGViewBWGShortcode. php:933
1359
  #: ../admin/views/BWGViewOptions_bwg.php:725 ..
1360
  #: /admin/views/BWGViewOptions_bwg.php:1149
1361
  msgid "Enable control buttons:"
1362
+ msgstr "Activeer bedieningsknoppen:"
1363
 
1364
  #: ../admin/views/BWGViewBWGShortcode.php:686
1365
  msgid "Enable slideshow filmstrip view"
1366
+ msgstr "Activeer diapresentatie filmstrip weergave"
1367
 
1368
  #: ../admin/views/BWGViewBWGShortcode.php:686
1369
  #: ../admin/views/BWGViewOptions_bwg. php:1158
1370
  msgid "Enable slideshow filmstrip:"
1371
+ msgstr "Activeer slideshow filmstrip:"
1372
 
1373
  #: ../admin/views/BWGViewBWGShortcode.php:693
1374
  msgid "Slideshow Filmstrip size:"
1375
+ msgstr "Diapresentatie filmstrip grootte:"
1376
 
1377
  #: ../admin/views/BWGViewBWGShortcode.php:698
1378
  msgid "Max. number of carousel images:"
1381
  #: ../admin/views/BWGViewBWGShortcode.php:709
1382
  #: ../admin/views/BWGViewBWGShortcode. php:818
1383
  msgid "Enable Image Title:"
1384
+ msgstr "Activeer Afbeelding Titel:"
1385
 
1386
  #: ../admin/views/BWGViewBWGShortcode.php:716
1387
  #: ../admin/views/BWGViewOptions_bwg. php:1208
1388
  msgid "Image title position on slideshow"
1389
+ msgstr "Afbeeldingstitel positie in diapresentatie"
1390
 
1391
  #: ../admin/views/BWGViewBWGShortcode.php:716
1392
  msgid "Title Position:"
1395
  #: ../admin/views/BWGViewBWGShortcode.php:740
1396
  #: ../admin/views/BWGViewOptions_bwg. php:1218
1397
  msgid "Display image title based on the slideshow dimensions."
1398
+ msgstr "Toon afbeeldingstitel gebaseerd op de grootte van de diapresentatie"
1399
 
1400
  #: ../admin/views/BWGViewBWGShortcode.php:741
1401
  #: ../admin/views/BWGViewOptions_bwg. php:1213
1404
 
1405
  #: ../admin/views/BWGViewBWGShortcode.php:749
1406
  msgid "Enable Image Description:"
1407
+ msgstr "Enable afbeeldingsbeschrijving:"
1408
 
1409
  #: ../admin/views/BWGViewBWGShortcode.php:756
1410
  #: ../admin/views/BWGViewOptions_bwg. php:1251
1411
  msgid "Image description position on slideshow"
1412
+ msgstr "Afbeeldingsbeschrijving positie in diapresentatie"
1413
 
1414
  #: ../admin/views/BWGViewBWGShortcode.php:756
1415
  msgid "Description Position:"
1417
 
1418
  #: ../admin/views/BWGViewBWGShortcode.php:780
1419
  msgid "Enable Slideshow Music:"
1420
+ msgstr "Activeer diapresentatie muziek:"
1421
 
1422
  #: ../admin/views/BWGViewBWGShortcode.php:787
1423
  msgid "Enter absolute audio file url or add file from Options page."
1492
  #: ../admin/views/BWGViewBWGShortcode.php:872
1493
  #: ../admin/views/BWGViewOptions_bwg. php:635
1494
  msgid "Enable full width feature for the lightbox."
1495
+ msgstr "Activeer volle breedte-functie voor de lichtbak."
1496
 
1497
  #: ../admin/views/BWGViewBWGShortcode.php:873
1498
  #: ../admin/views/BWGViewOptions_bwg. php:630
1510
 
1511
  #: ../admin/views/BWGViewBWGShortcode.php:888
1512
  msgid "Lightbox slideshow effect."
1513
+ msgstr "Lichtbak diapresentatie effect."
1514
 
1515
  #: ../admin/views/BWGViewBWGShortcode.php:888
1516
  #: ../admin/views/BWGViewOptions_bwg. php:650
1524
 
1525
  #: ../admin/views/BWGViewBWGShortcode.php:915
1526
  msgid "Enable filmstrip view for images"
1527
+ msgstr "Activeer filmstrip weergave voor afbeeldingen"
1528
 
1529
  #: ../admin/views/BWGViewBWGShortcode.php:915
1530
  msgid "Enable filmstrip in lightbox:"
1531
+ msgstr "Activeer filmstrip in lichttafel:"
1532
 
1533
  #: ../admin/views/BWGViewBWGShortcode.php:922
1534
  #: ../admin/views/BWGViewOptions_bwg. php:696
1542
 
1543
  #: ../admin/views/BWGViewBWGShortcode.php:933
1544
  msgid "Enable control buttons in lightbox"
1545
+ msgstr "Activeer bedieningsknoppen in lightbox"
1546
 
1547
  #: ../admin/views/BWGViewBWGShortcode.php:942
1548
  msgid "Enable fullscreen view for images"
1549
+ msgstr "Activeer volledig-scherm-weergave voor afbeeldingen"
1550
 
1551
  #: ../admin/views/BWGViewBWGShortcode.php:942
1552
  #: ../admin/views/BWGViewOptions_bwg. php:761
1553
  msgid "Enable fullscreen:"
1554
+ msgstr "Activeer volledig scherm:"
1555
 
1556
  #: ../admin/views/BWGViewBWGShortcode.php:949
1557
  msgid "Enable title, description for images"
1558
+ msgstr "Activeer titel, beschrijving voor afbeeldingen"
1559
 
1560
  #: ../admin/views/BWGViewBWGShortcode.php:949
1561
  #: ../admin/views/BWGViewOptions_bwg. php:771
1562
  msgid "Enable info:"
1563
+ msgstr "Activeer info:"
1564
 
1565
  #: ../admin/views/BWGViewBWGShortcode.php:956
1566
  #: ../admin/views/BWGViewOptions_bwg. php:781
1579
 
1580
  #: ../admin/views/BWGViewBWGShortcode.php:970
1581
  msgid "Enable rating for images"
1582
+ msgstr "Activeer waardering voor afbeeldingen"
1583
 
1584
  #: ../admin/views/BWGViewBWGShortcode.php:970
1585
  #: ../admin/views/BWGViewOptions_bwg. php:807
1586
  msgid "Enable rating:"
1587
+ msgstr "Activeer waardering:"
1588
 
1589
  #: ../admin/views/BWGViewBWGShortcode.php:977
1590
  msgid "Enable comments for images"
1591
+ msgstr "Activeer reacties voor afbeeldingen"
1592
 
1593
  #: ../admin/views/BWGViewBWGShortcode.php:977
1594
  #: ../admin/views/BWGViewOptions_bwg. php:817
1595
  msgid "Enable comments:"
1596
+ msgstr "Activeer reacties:"
1597
 
1598
  #: ../admin/views/BWGViewBWGShortcode.php:984
1599
  msgid "Enable Facebook share button for images"
1600
+ msgstr "Activeer Facebook share-knop voor foto's"
1601
 
1602
  #: ../admin/views/BWGViewBWGShortcode.php:984
1603
  #: ../admin/views/BWGViewOptions_bwg. php:881
1604
  msgid "Enable Facebook button:"
1605
+ msgstr "Activeer Facebook-knop:"
1606
 
1607
  #: ../admin/views/BWGViewBWGShortcode.php:991
1608
  msgid "Enable Twitter share button for images"
1609
+ msgstr "Activeer Twitter Share knop voor afbeeldingen"
1610
 
1611
  #: ../admin/views/BWGViewBWGShortcode.php:991
1612
  #: ../admin/views/BWGViewOptions_bwg. php:891
1613
  msgid "Enable Twitter button:"
1614
+ msgstr "Activeer Twitter-knop:"
1615
 
1616
  #: ../admin/views/BWGViewBWGShortcode.php:998
1617
  msgid "Enable Google+ share button for images"
1618
+ msgstr "Activeer Google+ Share knop voor foto's"
1619
 
1620
  #: ../admin/views/BWGViewBWGShortcode.php:998
1621
  #: ../admin/views/BWGViewOptions_bwg. php:901
1622
  msgid "Enable Google+ button:"
1623
+ msgstr "Activeer Google+ knop:"
1624
 
1625
  #: ../admin/views/BWGViewBWGShortcode.php:1005
1626
  msgid "Enable Pinterest share button for images"
1627
+ msgstr "Activeer Pinterest Share knop voor afbeeldingen"
1628
 
1629
  #: ../admin/views/BWGViewBWGShortcode.php:1005
1630
  #: ../admin/views/BWGViewOptions_bwg. php:911
1631
  msgid "Enable Pinterest button:"
1632
+ msgstr "Activeer Pinterest-knop:"
1633
 
1634
  #: ../admin/views/BWGViewBWGShortcode.php:1012
1635
  msgid "Enable Tumblr share button for images"
1636
+ msgstr "Activeer Tumblr Share-knop voor afbeeldingen"
1637
 
1638
  #: ../admin/views/BWGViewBWGShortcode.php:1012
1639
  #: ../admin/views/BWGViewOptions_bwg. php:921
1640
  msgid "Enable Tumblr button:"
1641
+ msgstr "Activeer Tumblr knop:"
1642
 
1643
  #: ../admin/views/BWGViewBWGShortcode.php:1025
1644
  msgid "Advertisement Type:"
1733
  #: ../admin/views/BWGViewThemes_bwg.php:3758
1734
  #: /admin/views/BWGViewThemes_bwg.php:3890
1735
  msgid "Value must be between 0 to 100."
1736
+ msgstr "Waarde moet tussen 0 en 100 liggen."
1737
 
1738
  #: ../admin/views/BWGViewBWGShortcode.php:1088
1739
  msgid "Advertisement opacity: "
1740
+ msgstr "Advertentie dekking:"
1741
 
1742
  #: ../admin/views/BWGViewBWGShortcode.php:1094
1743
  msgid "Advertisement Position: "
1942
 
1943
  #: ../admin/views/BWGViewGalleries_bwg.php:593
1944
  msgid "Add new media, keep old ones published."
1945
+ msgstr "Voeg nieuwe media toe, laat oude gepubliceerd."
1946
 
1947
  #: ../admin/views/BWGViewGalleries_bwg.php:595
1948
  msgid "Add new media, unpublish old ones."
1949
+ msgstr "Voeg nieuwe media toe, haal oude offline."
1950
 
1951
  #: ../admin/views/BWGViewGalleries_bwg.php:609
1952
  msgid "Facebook album url: "
1991
  #: ../admin/views/BWGViewGalleries_bwg.php:787 ..
1992
  #: /admin/views/BWGViewGalleries_bwg.php:1046
1993
  msgid "Add tag"
1994
+ msgstr "Tag toevoegen"
1995
 
1996
  #: ../admin/views/BWGViewGalleries_bwg.php:806
1997
  msgid "Add to gallery"
2009
 
2010
  #: ../admin/views/BWGViewGalleries_bwg.php:812
2011
  msgid "Close"
2012
+ msgstr "Sluiten"
2013
 
2014
  #: ../admin/views/BWGViewGalleries_bwg.php:813 ..
2015
  #: /admin/views/BWGViewGalleries_bwg.php:814
2080
 
2081
  #: ../admin/views/BWGViewGalleries_bwg.php:928
2082
  msgid "Alt/Title"
2083
+ msgstr "Alt/Titel"
2084
 
2085
  #: ../admin/views/BWGViewGalleries_bwg.php:928
2086
  msgid "Redirect"
2152
  "afbeeldingen op te slaan. <br /> Oude directory inhoud zal naar de nieuwe "
2153
  "worden verplaatst."
2154
 
2155
+ #: ../admin/views/BWGViewOptions_bwg.php:138
2156
+ #: ../admin/views/BWGViewOptions_bwg. php:1623
2157
  msgid "Image dimensions:"
2158
  msgstr "Afbeelding afmetingen:"
2159
 
2188
 
2189
  #: ../admin/views/BWGViewOptions_bwg.php:221
2190
  msgid "Enable import from Media Library in file manager."
2191
+ msgstr "Activeer import van Media Library in file manager."
2192
 
2193
  #: ../admin/views/BWGViewOptions_bwg.php:226
2194
  msgid "Enable href attribute:"
2195
+ msgstr "Activeer href attribuut:"
2196
 
2197
  #: ../admin/views/BWGViewOptions_bwg.php:231
2198
  msgid "Disable this option only if it conflicts with your theme."
2207
  "Enabling this option the meta description of the image will be automatically "
2208
  "filled in image description field."
2209
  msgstr ""
2210
+ "Door het inschakelen van deze optie, zal de metabeschrijving van de "
2211
+ "afbeelding automatisch wordengevuld vanuit het afbeelding beschrijving veld."
2212
 
2213
  #: ../admin/views/BWGViewOptions_bwg.php:246
2214
  msgid "Roles:"
2260
  msgid "Watermark url: "
2261
  msgstr "Watermerk url:"
2262
 
2263
+ #: ../admin/views/BWGViewOptions_bwg.php:351
2264
+ #: ../admin/views/BWGViewOptions_bwg. php:506
2265
  msgid "Add Image"
2266
  msgstr "Afbeelding toevoegen"
2267
 
2295
 
2296
  #: ../admin/views/BWGViewOptions_bwg.php:423
2297
  msgid "Watermark opacity:"
2298
+ msgstr "Watermerk dekking:"
2299
 
2300
  #: ../admin/views/BWGViewOptions_bwg.php:427
2301
  msgid "Opacity value must be in the range of 0 to 100."
2319
 
2320
  #: ../admin/views/BWGViewOptions_bwg.php:526
2321
  msgid "Enter a URL to open when the advertisement banner is clicked."
2322
+ msgstr ""
2323
+ "Voer een URL in die zal worden geopend wanneer de advertentie banner wordt "
2324
+ "geklikt."
2325
 
2326
  #: ../admin/views/BWGViewOptions_bwg.php:550
2327
  msgid "dvertisement font style:"
2329
 
2330
  #: ../admin/views/BWGViewOptions_bwg.php:576
2331
  msgid "Advertisement opacity:"
2332
+ msgstr "Advertentie dekking:"
2333
 
2334
  #: ../admin/views/BWGViewOptions_bwg.php:585
2335
  msgid "Advertisement position:"
2337
 
2338
  #: ../admin/views/BWGViewOptions_bwg.php:686
2339
  msgid "Enable filmstrip:"
2340
+ msgstr "Activeer filmstrip:"
2341
 
2342
+ #: ../admin/views/BWGViewOptions_bwg.php:715
2343
+ #: ../admin/views/BWGViewOptions_bwg. php:1139
2344
  msgid "Show Next / Previous buttons:"
2345
  msgstr "Toon volgende / vorige knoppen:"
2346
 
2347
+ #: ../admin/views/BWGViewOptions_bwg.php:718
2348
+ #: ../admin/views/BWGViewOptions_bwg. php:1142
2349
  msgid "On hover"
2350
  msgstr "Op Hover"
2351
 
2352
+ #: ../admin/views/BWGViewOptions_bwg.php:719
2353
+ #: ../admin/views/BWGViewOptions_bwg. php:1143
2354
  msgid "Always"
2355
  msgstr "Altijd"
2356
 
2357
  #: ../admin/views/BWGViewOptions_bwg.php:831
2358
  msgid "Enable comments moderation:"
2359
+ msgstr "Activeer aanpassen reacties:"
2360
 
2361
  #: ../admin/views/BWGViewOptions_bwg.php:841
2362
  msgid "Enable Email for comments:"
2363
+ msgstr "Activeer e-mail voor reacties:"
2364
 
2365
  #: ../admin/views/BWGViewOptions_bwg.php:851
2366
  msgid "Enable Captcha for comments:"
2367
+ msgstr "Activeer captcha voor reacties:"
2368
 
2369
  #: ../admin/views/BWGViewOptions_bwg.php:861
2370
  msgid "Enable original image display button:"
2371
+ msgstr "Activeer originele beeldweergave knop:"
2372
 
2373
  #: ../admin/views/BWGViewOptions_bwg.php:871
2374
  msgid "Enable download button:"
2375
+ msgstr "Activeer download-knop:"
2376
 
2377
  #: ../admin/views/BWGViewOptions_bwg.php:931
2378
  msgid "Show images count:"
2380
 
2381
  #: ../admin/views/BWGViewOptions_bwg.php:941
2382
  msgid "Enable loop:"
2383
+ msgstr "Activeer lus:"
2384
 
2385
  #: ../admin/views/BWGViewOptions_bwg.php:951
2386
  msgid "Enable AddThis:"
2387
+ msgstr "Activeer AddThis:"
2388
 
2389
  #: ../admin/views/BWGViewOptions_bwg.php:963
2390
  msgid "profile id:"
2416
 
2417
  #: ../admin/views/BWGViewOptions_bwg.php:1043
2418
  msgid "Enable extended album description:"
2419
+ msgstr "Activeer uitgebreide album beschrijving:"
2420
 
2421
  #: ../admin/views/BWGViewOptions_bwg.php:1063
2422
  msgid "Extended album height:"
2425
  #: ../admin/views/BWGViewOptions_bwg.php:1083 ..
2426
  #: /admin/views/BWGViewWidgetSlideshow.php:129
2427
  msgid "Slideshow effect:"
2428
+ msgstr "Diapresentatie effect:"
2429
 
2430
  #: ../admin/views/BWGViewOptions_bwg.php:1109
2431
  msgid "Slideshow dimensions:"
2432
+ msgstr "Diapresentatie afmetingen:"
2433
 
2434
  #: ../admin/views/BWGViewOptions_bwg.php:1119
2435
  #: ../admin/views/BWGViewOptions_bwg. php:1655
2436
  msgid "Enable autoplay:"
2437
+ msgstr "Activeer autoplay:"
2438
 
2439
  #: ../admin/views/BWGViewOptions_bwg.php:1129 ..
2440
  #: /admin/views/BWGViewWidgetSlideshow.php:145
2441
  msgid "Enable shuffle:"
2442
+ msgstr "Activeer shuffle:"
2443
 
2444
  #: ../admin/views/BWGViewOptions_bwg.php:1166
2445
  msgid "Slideshow filmstrip size:"
2446
+ msgstr "Diapresentatie filmstrip grootte:"
2447
 
2448
+ #: ../admin/views/BWGViewOptions_bwg.php:1187
2449
+ #: ../admin/views/BWGViewThemes_bwg. php:400
2450
+ #: ../admin/views/BWGViewThemes_bwg.php:1557
2451
  msgid "Title position:"
2452
  msgstr "Titel functie:"
2453
 
2457
 
2458
  #: ../admin/views/BWGViewOptions_bwg.php:1256
2459
  msgid "Enable slideshow Music:"
2460
+ msgstr "Activeer diapresentatie muziek:"
2461
 
2462
  #: ../admin/views/BWGViewOptions_bwg.php:1280
2463
  msgid "Add Music"
2515
 
2516
  #: ../admin/views/BWGViewOptions_bwg.php:1403
2517
  msgid "Enable image pagination:"
2518
+ msgstr "Activeer afbeeldingspaginering:"
2519
 
2520
  #: ../admin/views/BWGViewOptions_bwg.php:1411
2521
  msgid "Thumbnail click action:"
2531
 
2532
  #: ../admin/views/BWGViewOptions_bwg.php:1445
2533
  msgid "Enable image title for Image Browser view:"
2534
+ msgstr "Activeer afbeeldingstitel voor Image Browser weergave:"
2535
 
2536
  #: ../admin/views/BWGViewOptions_bwg.php:1455
2537
  msgid "Enable image description for Image Browser view:"
2538
+ msgstr "Activeer afbeeldingsbeschrijving voor Image Browser view:"
2539
 
2540
  #: ../admin/views/BWGViewOptions_bwg.php:1465
2541
  msgid "Image width for Image Browser view:"
2543
 
2544
  #: ../admin/views/BWGViewOptions_bwg.php:1474
2545
  msgid "Enable image title for Blog Style view:"
2546
+ msgstr "Activeer afbeeldingstitel voor Blog Stijl weergave:"
2547
 
2548
  #: ../admin/views/BWGViewOptions_bwg.php:1484
2549
  msgid "Image width for Blog Style view:"
2555
 
2556
  #: ../admin/views/BWGViewOptions_bwg.php:1502
2557
  msgid "Enable pagination for Blog Style view:"
2558
+ msgstr "Activeer paginering voor Blog Stijl weergave:"
2559
 
2560
  #: ../admin/views/BWGViewOptions_bwg.php:1521
2561
  msgid "Gallery autoupdate interval:"
2575
 
2576
  #: ../admin/views/BWGViewOptions_bwg.php:1543
2577
  msgid "Enable creating Instagram galleries."
2578
+ msgstr "Activeer het maken van Instagram-galerijen."
2579
 
2580
  #: ../admin/views/BWGViewOptions_bwg.php:1557
2581
  msgid "app Id"
2635
 
2636
  #: ../admin/views/BWGViewThemes_bwg.php:164
2637
  msgid "Solid"
2638
+ msgstr "Doorgetrokken"
2639
 
2640
  #: ../admin/views/BWGViewThemes_bwg.php:165
2641
  msgid "Dotted"
2643
 
2644
  #: ../admin/views/BWGViewThemes_bwg.php:166
2645
  msgid "Dashed"
2646
+ msgstr "Gestreept"
2647
 
2648
  #: ../admin/views/BWGViewThemes_bwg.php:167
2649
  #: ../admin/views/BWGViewThemes_bwg.php:204
2675
 
2676
  #: ../admin/views/BWGViewThemes_bwg.php:187
2677
  msgid "Center"
2678
+ msgstr "Midden"
2679
 
2680
  #: ../admin/views/BWGViewThemes_bwg.php:188
2681
  #: ../admin/views/BWGViewThemes_bwg.php:918
2686
 
2687
  #: ../admin/views/BWGViewThemes_bwg.php:191
2688
  msgid "Lighter"
2689
+ msgstr "Lichter"
2690
 
2691
  #: ../admin/views/BWGViewThemes_bwg.php:192
2692
  msgid "Normal"
2694
 
2695
  #: ../admin/views/BWGViewThemes_bwg.php:193
2696
  msgid "Bold"
2697
+ msgstr "Vetgedrukt"
2698
 
2699
  #: ../admin/views/BWGViewThemes_bwg.php:197
2700
  msgid "Rotate"
2702
 
2703
  #: ../admin/views/BWGViewThemes_bwg.php:198
2704
  msgid "Scale"
2705
+ msgstr "Schalen"
2706
 
2707
  #: ../admin/views/BWGViewThemes_bwg.php:199
2708
  msgid "Skew"
2709
+ msgstr "Hellen"
2710
 
2711
  #: ../admin/views/BWGViewThemes_bwg.php:202
2712
  msgid "Chevron"
2762
  #: /admin/views/BWGViewThemes_bwg.php:1851 2414
2763
  #: ../admin/views/BWGViewThemes_bwg.php:3624
2764
  msgid "Margin:"
2765
+ msgstr "Marge:"
2766
 
2767
  #: ../admin/views/BWGViewThemes_bwg.php:270
2768
  #: ../admin/views/BWGViewThemes_bwg.php:472
2780
  #: /admin/views/BWGViewThemes_bwg.php:2182 2467
2781
  #: ../admin/views/BWGViewThemes_bwg.php:3585
2782
  msgid "Border width:"
2783
+ msgstr "Randdikte:"
2784
 
2785
  #: ../admin/views/BWGViewThemes_bwg.php:282
2786
  #: ../admin/views/BWGViewThemes_bwg.php:484
2789
  #: /admin/views/BWGViewThemes_bwg.php:2188 2473
2790
  #: ../admin/views/BWGViewThemes_bwg.php:3591
2791
  msgid "Border style:"
2792
+ msgstr "Randstijl:"
2793
 
2794
  #: ../admin/views/BWGViewThemes_bwg.php:296
2795
  #: ../admin/views/BWGViewThemes_bwg.php:498
2798
  #: /admin/views/BWGViewThemes_bwg.php:2202 2487
2799
  #: ../admin/views/BWGViewThemes_bwg.php:3605
2800
  msgid "Border color:"
2801
+ msgstr "Randkleur:"
2802
 
2803
  #: ../admin/views/BWGViewThemes_bwg.php:302
2804
  #: ../admin/views/BWGViewThemes_bwg.php:504
2808
  #: ../admin/views/BWGViewThemes_bwg.php:2493
2809
  #: /admin/views/BWGViewThemes_bwg.php:3611
2810
  msgid "Border radius:"
2811
+ msgstr "Rand straal:"
2812
 
2813
  #: ../admin/views/BWGViewThemes_bwg.php:305
2814
  #: ../admin/views/BWGViewThemes_bwg.php:312
2862
  #: ../admin/views/BWGViewThemes_bwg.php:3815
2863
  #: /admin/views/BWGViewThemes_bwg.php:3897
2864
  msgid "Use CSS type values."
2865
+ msgstr "Gebruik CSS type waarden."
2866
 
2867
  #: ../admin/views/BWGViewThemes_bwg.php:309
2868
  #: ../admin/views/BWGViewThemes_bwg.php:1468
2941
  #: ../admin/views/BWGViewThemes_bwg.php:3191
2942
  #: /admin/views/BWGViewThemes_bwg.php:3676
2943
  msgid "Top"
2944
+ msgstr "Boven"
2945
 
2946
  #: ../admin/views/BWGViewThemes_bwg.php:405
2947
  #: ../admin/views/BWGViewThemes_bwg.php:919
2951
  #: ../admin/views/BWGViewThemes_bwg.php:3193
2952
  #: /admin/views/BWGViewThemes_bwg.php:3678
2953
  msgid "Bottom"
2954
+ msgstr "Onder"
2955
 
2956
  #: ../admin/views/BWGViewThemes_bwg.php:409
2957
  #: ../admin/views/BWGViewThemes_bwg.php:737
3124
  #: ../admin/views/BWGViewThemes_bwg.php:901
3125
  #: ../admin/views/BWGViewThemes_bwg.php:2832
3126
  msgid "Right, left buttons box shadow:"
3127
+ msgstr "Rechts, knoppen links box schaduw:"
3128
 
3129
  #: ../admin/views/BWGViewThemes_bwg.php:914
3130
  msgid "Filmstrip/Slider bullet position:"
3292
  #: ../admin/views/BWGViewThemes_bwg.php:2331 ..
3293
  #: /admin/views/BWGViewThemes_bwg.php:2455 3545
3294
  msgid "Font size:"
3295
+ msgstr "Lettergrootte:"
3296
 
3297
  #: ../admin/views/BWGViewThemes_bwg.php:1339
3298
  #: ../admin/views/BWGViewThemes_bwg.php:1626
3371
 
3372
  #: ../admin/views/BWGViewThemes_bwg.php:1721
3373
  msgid "Thumbnail box shadow:"
3374
+ msgstr "Miniatuur box schaduw:"
3375
 
3376
  #: ../admin/views/BWGViewThemes_bwg.php:1737
3377
  msgid "Thumbnail alignment:"
3403
 
3404
  #: ../admin/views/BWGViewThemes_bwg.php:1824
3405
  msgid "humbnail div border style:"
3406
+ msgstr "Miniatuur div grens stijl:"
3407
 
3408
  #: ../admin/views/BWGViewThemes_bwg.php:1838
3409
  msgid "Thumbnail div border color:"
3609
 
3610
  #: ../admin/views/BWGViewThemes_bwg.php:2733
3611
  msgid "Close button box shadow:"
3612
+ msgstr "Sluitknop box schaduw:"
3613
 
3614
  #: ../admin/views/BWGViewThemes_bwg.php:2740
3615
  msgid "Close button background color:"
3937
 
3938
  #: ../admin/views/BWGViewThemes_bwg.php:3651
3939
  msgid "Button transition:"
3940
+ msgstr "Knop overgang:"
3941
 
3942
  #: ../admin/views/BWGViewThemes_bwg.php:3673
3943
  msgid "Position:"
3985
 
3986
  #: ../admin/views/BWGViewThemes_bwg.php:3887
3987
  msgid "Title opacity:"
3988
+ msgstr "Titel dekking:"
3989
 
3990
  #: ../admin/views/BWGViewThemes_bwg.php:3915
3991
  msgid "Title Font family:"
4120
 
4121
  #: ../admin/views/BWGViewWidgetTags.php:150
4122
  msgid "Background Color:"
4123
+ msgstr "Achtergrondkleur:"
4124
 
4125
  #: ../admin/views/BWGViewWidgetTags.php:154
4126
  msgid "Text Color:"
4192
 
4193
  #: ../filemanager/view.php:142
4194
  msgid "View thumbs"
4195
+ msgstr "Bekijk miniaturen"
4196
 
4197
  #: ../filemanager/view.php:143
4198
  msgid "View list"
4200
 
4201
  #: ../filemanager/view.php:150
4202
  msgid "To change upload directory go to Options page."
4203
+ msgstr "Ga naar pagina Opties om de uploadmap te wijzigen."
4204
 
4205
  #: ../filemanager/view.php:275
4206
  msgid "Add selected images to gallery"
4207
+ msgstr "Voeg geselecteerde afbeeldingen toe aan galerij"
4208
 
4209
  #: ../filemanager/view.php:285 ../filemanager/view.php:368
4210
  msgid "Thumbnail Maximum Dimensions:"
4248
 
4249
  #: ../framework/WDWLibrary.php:88
4250
  msgid "Options Succesfully Saved."
4251
+ msgstr "Opties succesvol opgeslagen."
4252
 
4253
  #: ../framework/WDWLibrary.php:124
4254
  msgid "A term with the name provided already exists."
4338
  #: ../frontend/views/BWGViewAlbum_compact_preview.php:189 ..
4339
  #: /frontend/views/BWGViewAlbum_extended_preview.php:134
4340
  #: /frontend/views/BWGViewAlbum_masonry_preview.php:164
4341
+ #: /frontend/views/BWGViewBlog_style.php:106
4342
+ #: ../frontend/views/BWGViewCarousel. php:79
4343
+ #: ../frontend/views/BWGViewImage_browser.php:83
4344
  #: /frontend/views/BWGViewSlideshow.php:168
4345
  #: ../frontend/views/BWGViewThumbnails. php:172
4346
  #: ../frontend/views/BWGViewThumbnails_masonry.php:169
4364
  #: /frontend/views/BWGViewAlbum_compact_preview.php:1148
4365
  #: /frontend/views/BWGViewAlbum_extended_preview.php:1078
4366
  #: /frontend/views/BWGViewAlbum_extended_preview.php:1127
4367
+ #: /frontend/views/BWGViewCarousel.php:543
4368
+ #: ../frontend/views/BWGViewGalleryBox. php:888
4369
+ #: ../frontend/views/BWGViewGalleryBox.php:2769
4370
  #: /frontend/views/BWGViewSlideshow.php:1654
4371
  #: ../frontend/views/BWGViewThumbnails. php:455
4372
  #: ../frontend/views/BWGViewThumbnails_mosaic.php:398
4432
  msgid "Share on Tumblr"
4433
  msgstr "Share on Tumblr"
4434
 
4435
+ #: ../frontend/views/BWGViewCarousel.php:531
4436
+ #: ../frontend/views/BWGViewCarousel. php:537
4437
+ #: ../frontend/views/BWGViewGalleryBox.php:2763 ..
4438
  #: /frontend/views/BWGViewGalleryBox.php:2778
4439
  #: ../frontend/views/BWGViewSlideshow. php:1645
4440
  #: ../frontend/views/BWGViewSlideshow.php:1663
languages/bwg-it_IT.mo CHANGED
Binary file
languages/bwg-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2016-01-08 10:04+0400\n"
5
- "PO-Revision-Date: 2016-01-08 10:04+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -39,7 +39,7 @@ msgstr "Non c'è tema selezionato o il tema è stato eliminato."
39
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:142
40
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:176
41
  msgid "There is no album selected or the album was deleted."
42
- msgstr "Non vi è alcun album selezionato o l'album è stato eliminato."
43
 
44
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:189
45
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:134
@@ -77,7 +77,7 @@ msgstr "Non ci sono immagini corrispondenti alla tua ricerca."
77
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1029
78
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:588
79
  msgid "Gallery is empty."
80
- msgstr "Gallery è vuoto."
81
 
82
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1097
83
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1147
@@ -99,7 +99,7 @@ msgstr "Di più"
99
 
100
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1153
101
  msgid "Hide"
102
- msgstr "Hide"
103
 
104
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:98
105
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewCarousel.php:74
@@ -109,7 +109,7 @@ msgstr "Hide"
109
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_masonry.php:161
110
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:166
111
  msgid "There is no gallery selected or the gallery was deleted."
112
- msgstr "Non vi è alcuna galleria selezionata o la galleria è stata eliminata."
113
 
114
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:547
115
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:933
@@ -175,7 +175,7 @@ msgstr "Massimizzare"
175
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2091
176
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2747
177
  msgid "Fullscreen"
178
- msgstr "Fullscreen"
179
 
180
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:931
181
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2484
@@ -197,11 +197,11 @@ msgstr "Apri l'immagine originale"
197
 
198
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1108
199
  msgid "Hits: "
200
- msgstr "Hits: "
201
 
202
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1119
203
  msgid "Rated."
204
- msgstr "Nominale."
205
 
206
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1123
207
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1140
@@ -278,7 +278,7 @@ msgstr "Nascondi informazioni"
278
 
279
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2491
280
  msgid "Hide rating"
281
- msgstr "Hide valutazione"
282
 
283
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2686
284
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2895
@@ -287,82 +287,82 @@ msgstr "Ripristina"
287
 
288
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2800
289
  msgid "Exit Fullscreen"
290
- msgstr "Uscire a schermo intero"
291
 
292
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:46
293
  msgid "Item Succesfully Saved."
294
- msgstr ""
295
 
296
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:52
297
  msgid "Error. Please install plugin again."
298
- msgstr ""
299
 
300
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:58
301
  msgid "Item Succesfully Deleted."
302
- msgstr ""
303
 
304
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:64
305
  msgid "You can't delete default theme"
306
- msgstr ""
307
 
308
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:70
309
  msgid "Items Succesfully Deleted."
310
- msgstr ""
311
 
312
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:76
313
  msgid "You must select at least one item."
314
- msgstr ""
315
 
316
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:82
317
  msgid "The item is successfully set as default."
318
- msgstr ""
319
 
320
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:88
321
  msgid "Options Succesfully Saved."
322
- msgstr ""
323
 
324
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:94
325
  msgid "Item Succesfully Published."
326
- msgstr ""
327
 
328
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:100
329
  msgid "Items Succesfully Published."
330
- msgstr ""
331
 
332
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:106
333
  msgid "Item Succesfully Unpublished."
334
- msgstr ""
335
 
336
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:112
337
  msgid "Items Succesfully Unpublished."
338
- msgstr ""
339
 
340
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:118
341
  msgid "Ordering Succesfully Saved."
342
- msgstr ""
343
 
344
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:124
345
  msgid "A term with the name provided already exists."
346
- msgstr ""
347
 
348
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:130
349
  msgid "Name field is required."
350
- msgstr " "
351
 
352
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:136
353
  msgid "The slug must be unique."
354
- msgstr ""
355
 
356
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:142
357
  msgid "Changes must be saved."
358
- msgstr ""
359
 
360
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:188
361
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:362
362
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:725
363
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:781
364
  msgid "Search"
365
- msgstr "Ricerca"
366
 
367
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:189
368
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:363
@@ -379,11 +379,11 @@ msgstr "di"
379
 
380
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:436
381
  msgid "item"
382
- msgstr ""
383
 
384
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:516
385
  msgid " item(s)"
386
- msgstr "articolo"
387
 
388
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:521
389
  msgid "First"
@@ -419,7 +419,7 @@ msgstr "Vai all'ultima pagina"
419
 
420
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:562
421
  msgid "Load More..."
422
- msgstr ""
423
 
424
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:846
425
  msgid "Order by: "
@@ -427,11 +427,11 @@ msgstr "Ordina per"
427
 
428
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:848
429
  msgid "Default"
430
- msgstr "difetto"
431
 
432
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:849
433
  msgid "Filename"
434
- msgstr "Nome Del File"
435
 
436
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:850
437
  msgid "Size"
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2016-01-08 10:04+0400\n"
5
+ "PO-Revision-Date: 2016-02-12 18:09+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
39
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:142
40
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:176
41
  msgid "There is no album selected or the album was deleted."
42
+ msgstr "Non hai selezionato un album o l'album scelto è stato eliminato."
43
 
44
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:189
45
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:134
77
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1029
78
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:588
79
  msgid "Gallery is empty."
80
+ msgstr "La galleria è vuota."
81
 
82
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1097
83
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1147
99
 
100
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1153
101
  msgid "Hide"
102
+ msgstr "Nascondi"
103
 
104
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:98
105
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewCarousel.php:74
109
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_masonry.php:161
110
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:166
111
  msgid "There is no gallery selected or the gallery was deleted."
112
+ msgstr "Non hai selezionato una galleria o quella scelta è stata eliminata."
113
 
114
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:547
115
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:933
175
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2091
176
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2747
177
  msgid "Fullscreen"
178
+ msgstr "Schermo intero"
179
 
180
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:931
181
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2484
197
 
198
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1108
199
  msgid "Hits: "
200
+ msgstr "Click: "
201
 
202
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1119
203
  msgid "Rated."
204
+ msgstr "Valutato."
205
 
206
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1123
207
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1140
278
 
279
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2491
280
  msgid "Hide rating"
281
+ msgstr "Nascondi valutazione"
282
 
283
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2686
284
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2895
287
 
288
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2800
289
  msgid "Exit Fullscreen"
290
+ msgstr "Uscita a schermo intero"
291
 
292
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:46
293
  msgid "Item Succesfully Saved."
294
+ msgstr "Oggeto salvato"
295
 
296
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:52
297
  msgid "Error. Please install plugin again."
298
+ msgstr "Errore. Per favore, reinstalla il plugin."
299
 
300
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:58
301
  msgid "Item Succesfully Deleted."
302
+ msgstr "Oggetto rimosso."
303
 
304
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:64
305
  msgid "You can't delete default theme"
306
+ msgstr "Non puoi cancellare il tema di default"
307
 
308
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:70
309
  msgid "Items Succesfully Deleted."
310
+ msgstr "Oggetti cancellati."
311
 
312
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:76
313
  msgid "You must select at least one item."
314
+ msgstr "devi selezionare almeno un oggetto."
315
 
316
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:82
317
  msgid "The item is successfully set as default."
318
+ msgstr "Oggetto impostato come default."
319
 
320
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:88
321
  msgid "Options Succesfully Saved."
322
+ msgstr "Opzioni salvate."
323
 
324
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:94
325
  msgid "Item Succesfully Published."
326
+ msgstr "Oggetto pubblicato."
327
 
328
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:100
329
  msgid "Items Succesfully Published."
330
+ msgstr "Oggetti pubblicati."
331
 
332
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:106
333
  msgid "Item Succesfully Unpublished."
334
+ msgstr "Oggetto non più pubblicato."
335
 
336
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:112
337
  msgid "Items Succesfully Unpublished."
338
+ msgstr "Oggetti non pubblicati."
339
 
340
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:118
341
  msgid "Ordering Succesfully Saved."
342
+ msgstr "Ordinamento salvato."
343
 
344
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:124
345
  msgid "A term with the name provided already exists."
346
+ msgstr "C’è già un oggetto con questo nome."
347
 
348
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:130
349
  msgid "Name field is required."
350
+ msgstr "Il nome è richiesto."
351
 
352
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:136
353
  msgid "The slug must be unique."
354
+ msgstr "Lo slug deve essere unico."
355
 
356
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:142
357
  msgid "Changes must be saved."
358
+ msgstr "Modifiche salvate."
359
 
360
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:188
361
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:362
362
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:725
363
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:781
364
  msgid "Search"
365
+ msgstr "Cerca"
366
 
367
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:189
368
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:363
379
 
380
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:436
381
  msgid "item"
382
+ msgstr "Oggetto"
383
 
384
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:516
385
  msgid " item(s)"
386
+ msgstr " oggetti"
387
 
388
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:521
389
  msgid "First"
419
 
420
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:562
421
  msgid "Load More..."
422
+ msgstr "Carica altro…"
423
 
424
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:846
425
  msgid "Order by: "
427
 
428
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:848
429
  msgid "Default"
430
+ msgstr "Default"
431
 
432
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:849
433
  msgid "Filename"
434
+ msgstr "Nome del file"
435
 
436
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:850
437
  msgid "Size"
languages/bwg-nl_NL.mo CHANGED
Binary file
languages/bwg-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2016-01-08 10:32+0400\n"
5
- "PO-Revision-Date: 2016-01-08 10:32+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\n"
@@ -52,7 +52,7 @@ msgstr "Er is geen album geselecteerd of het album is verwijderd."
52
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_masonry.php:169
53
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:174
54
  msgid "There are no images in this gallery."
55
- msgstr "Er zijn geen afbeeldingen in deze galerij"
56
 
57
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:895
58
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:882
@@ -71,13 +71,13 @@ msgstr "Album is leeg"
71
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1024
72
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:583
73
  msgid "There are no images matching your search."
74
- msgstr "Er zijn geen beelden die voldoen aan uw zoekopdracht."
75
 
76
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1041
77
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1029
78
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:588
79
  msgid "Gallery is empty."
80
- msgstr "Galerij is leeg"
81
 
82
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1097
83
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1147
@@ -90,7 +90,7 @@ msgstr "Galerij is leeg"
90
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails.php:454
91
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:397
92
  msgid "Play"
93
- msgstr "Spelen"
94
 
95
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:994
96
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1158
@@ -109,7 +109,7 @@ msgstr "Verbergen"
109
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_masonry.php:161
110
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:166
111
  msgid "There is no gallery selected or the gallery was deleted."
112
- msgstr "Er is geen galerij geselecteerd of de galerie is verwijderd."
113
 
114
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:547
115
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:933
@@ -135,21 +135,21 @@ msgstr "Delen op Twitter"
135
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:955
136
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:956
137
  msgid "Share on Google+"
138
- msgstr "Deel op Google+"
139
 
140
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:574
141
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:575
142
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:962
143
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:963
144
  msgid "Share on Pinterest"
145
- msgstr "Share on Pinterest"
146
 
147
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:581
148
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:582
149
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:969
150
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:970
151
  msgid "Share on Tumblr"
152
- msgstr "Share on Tumblr"
153
 
154
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewCarousel.php:531
155
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewCarousel.php:537
@@ -162,7 +162,7 @@ msgstr "Pauze"
162
 
163
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:900
164
  msgid "The image has been deleted."
165
- msgstr "Billedet er blevet slettet."
166
 
167
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:925
168
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2089
@@ -175,55 +175,55 @@ msgstr "Maximaliseren"
175
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2091
176
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2747
177
  msgid "Fullscreen"
178
- msgstr "Op groot formaat"
179
 
180
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:931
181
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2484
182
  msgid "Show info"
183
- msgstr "Vis info"
184
 
185
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:935
186
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2495
187
  msgid "Show rating"
188
- msgstr "Vis rating"
189
 
190
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:977
191
  msgid "Open image in original size."
192
- msgstr "Åbn billede i original størrelse. "
193
 
194
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:998
195
  msgid "Download original image"
196
- msgstr "Download originalbilledet"
197
 
198
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1108
199
  msgid "Hits: "
200
- msgstr "Hits: "
201
 
202
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1119
203
  msgid "Rated."
204
- msgstr "Gewaardeerd."
205
 
206
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1123
207
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1140
208
  msgid "Not rated yet."
209
- msgstr "Ikke bedømt endnu. "
210
 
211
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1126
212
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1162
213
  msgid "Votes: "
214
- msgstr "Stemmer: "
215
 
216
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1160
217
  msgid "Cancel your rating."
218
- msgstr "Annullere din bedømmelse. "
219
 
220
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1162
221
  msgid "You have already rated."
222
- msgstr "Du har allerede bedømt. "
223
 
224
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1261
225
  msgid "Error. Incorrect Verification Code."
226
- msgstr "Fout. Onjuist Verificatie Code. "
227
 
228
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1268
229
  msgid "This is not a valid email address."
@@ -232,13 +232,13 @@ msgstr "Dit is geen geldig e-mailadres."
232
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1276
233
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2311
234
  msgid "Hide Comments"
235
- msgstr "Verberg commentaren"
236
 
237
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1280
238
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
239
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1315
240
  msgid "Name"
241
- msgstr "Noemen"
242
 
243
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1286
244
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
@@ -250,11 +250,11 @@ msgstr "e-mail "
250
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
251
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1315
252
  msgid "Comment"
253
- msgstr "Comment"
254
 
255
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1298
256
  msgid "Verification Code"
257
- msgstr "verificatie Code"
258
 
259
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1321
260
  msgid "Submit"
@@ -262,15 +262,15 @@ msgstr "Indienen"
262
 
263
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1322
264
  msgid "Your comment is awaiting moderation"
265
- msgstr "Din kommentar afventer moderation "
266
 
267
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1351
268
  msgid "Delete Comment"
269
- msgstr "Opmerking verwijderen"
270
 
271
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2261
272
  msgid "Show Comments"
273
- msgstr "Toon commentaren"
274
 
275
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2480
276
  msgid "Hide info"
@@ -278,7 +278,7 @@ msgstr "Info verbergen"
278
 
279
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2491
280
  msgid "Hide rating"
281
- msgstr "Skjul rating"
282
 
283
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2686
284
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2895
@@ -287,89 +287,89 @@ msgstr "Herstellen"
287
 
288
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2800
289
  msgid "Exit Fullscreen"
290
- msgstr "Exit Fullscreen"
291
 
292
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:46
293
  msgid "Item Succesfully Saved."
294
- msgstr ""
295
 
296
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:52
297
  msgid "Error. Please install plugin again."
298
- msgstr ""
299
 
300
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:58
301
  msgid "Item Succesfully Deleted."
302
- msgstr ""
303
 
304
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:64
305
  msgid "You can't delete default theme"
306
- msgstr ""
307
 
308
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:70
309
  msgid "Items Succesfully Deleted."
310
- msgstr ""
311
 
312
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:76
313
  msgid "You must select at least one item."
314
- msgstr ""
315
 
316
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:82
317
  msgid "The item is successfully set as default."
318
- msgstr ""
319
 
320
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:88
321
  msgid "Options Succesfully Saved."
322
- msgstr ""
323
 
324
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:94
325
  msgid "Item Succesfully Published."
326
- msgstr ""
327
 
328
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:100
329
  msgid "Items Succesfully Published."
330
- msgstr ""
331
 
332
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:106
333
  msgid "Item Succesfully Unpublished."
334
- msgstr ""
335
 
336
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:112
337
  msgid "Items Succesfully Unpublished."
338
- msgstr ""
339
 
340
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:118
341
  msgid "Ordering Succesfully Saved."
342
- msgstr ""
343
 
344
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:124
345
  msgid "A term with the name provided already exists."
346
- msgstr ""
347
 
348
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:130
349
  msgid "Name field is required."
350
- msgstr ""
351
 
352
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:136
353
  msgid "The slug must be unique."
354
- msgstr ""
355
 
356
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:142
357
  msgid "Changes must be saved."
358
- msgstr ""
359
 
360
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:188
361
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:362
362
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:725
363
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:781
364
  msgid "Search"
365
- msgstr "Søg"
366
 
367
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:189
368
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:363
369
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:722
370
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:784
371
  msgid "Reset"
372
- msgstr "Reset"
373
 
374
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:315
375
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:465
@@ -379,11 +379,11 @@ msgstr "van"
379
 
380
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:436
381
  msgid "item"
382
- msgstr ""
383
 
384
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:516
385
  msgid " item(s)"
386
- msgstr "item"
387
 
388
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:521
389
  msgid "First"
@@ -399,7 +399,7 @@ msgstr "Volgende"
399
 
400
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:524
401
  msgid "Last"
402
- msgstr "Duren"
403
 
404
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:542
405
  msgid "Go to the first page"
@@ -407,7 +407,7 @@ msgstr "Ga naar de eerste pagina"
407
 
408
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:543
409
  msgid "Go to the previous page"
410
- msgstr "Translation:"
411
 
412
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:549
413
  msgid "Go to the next page"
@@ -419,27 +419,27 @@ msgstr "Ga naar de laatste pagina"
419
 
420
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:562
421
  msgid "Load More..."
422
- msgstr ""
423
 
424
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:846
425
  msgid "Order by: "
426
- msgstr "sorteer op"
427
 
428
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:848
429
  msgid "Default"
430
- msgstr "verzuim"
431
 
432
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:849
433
  msgid "Filename"
434
- msgstr "bestandsnaam"
435
 
436
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:850
437
  msgid "Size"
438
- msgstr "grootte"
439
 
440
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:851
441
  msgid "Random"
442
- msgstr "toevallig"
443
 
444
  #~ msgid "Photo gallery plugin autoupdate interval."
445
  #~ msgstr "Fotogalerij plugin autoupdate interval."
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2016-01-08 10:32+0400\n"
5
+ "PO-Revision-Date: 2016-02-12 18:05+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\n"
52
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_masonry.php:169
53
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:174
54
  msgid "There are no images in this gallery."
55
+ msgstr "Er staan geen afbeeldingen in deze galerie"
56
 
57
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:895
58
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:882
71
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1024
72
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:583
73
  msgid "There are no images matching your search."
74
+ msgstr "Er zijn geen afbeeldingen gevonden die voldoen aan uw zoekopdracht."
75
 
76
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1041
77
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1029
78
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_masonry_preview.php:588
79
  msgid "Gallery is empty."
80
+ msgstr "Galerie is leeg"
81
 
82
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1097
83
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_compact_preview.php:1147
90
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails.php:454
91
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:397
92
  msgid "Play"
93
+ msgstr "Afspelen"
94
 
95
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:994
96
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewAlbum_extended_preview.php:1158
109
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_masonry.php:161
110
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewThumbnails_mosaic.php:166
111
  msgid "There is no gallery selected or the gallery was deleted."
112
+ msgstr "Er is geen galerie geselecteerd of de galerie is verwijderd."
113
 
114
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:547
115
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:933
135
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:955
136
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:956
137
  msgid "Share on Google+"
138
+ msgstr "Delen op Google+"
139
 
140
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:574
141
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:575
142
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:962
143
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:963
144
  msgid "Share on Pinterest"
145
+ msgstr "Delen op Pinterest"
146
 
147
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:581
148
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewBlog_style.php:582
149
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:969
150
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:970
151
  msgid "Share on Tumblr"
152
+ msgstr "Delen op Tumblr"
153
 
154
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewCarousel.php:531
155
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewCarousel.php:537
162
 
163
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:900
164
  msgid "The image has been deleted."
165
+ msgstr "De afbeelding is verwijderd"
166
 
167
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:925
168
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2089
175
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2091
176
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2747
177
  msgid "Fullscreen"
178
+ msgstr "Volledig scherm"
179
 
180
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:931
181
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2484
182
  msgid "Show info"
183
+ msgstr "Info weergeven"
184
 
185
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:935
186
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2495
187
  msgid "Show rating"
188
+ msgstr "Beoordeling weergeven"
189
 
190
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:977
191
  msgid "Open image in original size."
192
+ msgstr "Open afbeelding in oorspronkelijk formaat"
193
 
194
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:998
195
  msgid "Download original image"
196
+ msgstr "Download originele afbeelding"
197
 
198
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1108
199
  msgid "Hits: "
200
+ msgstr "Klikken: "
201
 
202
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1119
203
  msgid "Rated."
204
+ msgstr "Beoordeeld."
205
 
206
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1123
207
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1140
208
  msgid "Not rated yet."
209
+ msgstr "Nog niet beoordeeld"
210
 
211
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1126
212
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1162
213
  msgid "Votes: "
214
+ msgstr "Stemmen: "
215
 
216
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1160
217
  msgid "Cancel your rating."
218
+ msgstr "Annuleer uw beoordeling. "
219
 
220
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1162
221
  msgid "You have already rated."
222
+ msgstr "U heeft al een beoordeling gegeven. "
223
 
224
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1261
225
  msgid "Error. Incorrect Verification Code."
226
+ msgstr "Fout. Onjuiste Verificatie Code. "
227
 
228
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1268
229
  msgid "This is not a valid email address."
232
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1276
233
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2311
234
  msgid "Hide Comments"
235
+ msgstr "Verberg reacties"
236
 
237
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1280
238
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
239
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1315
240
  msgid "Name"
241
+ msgstr "Naam"
242
 
243
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1286
244
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
250
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
251
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1315
252
  msgid "Comment"
253
+ msgstr "Reactie"
254
 
255
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1298
256
  msgid "Verification Code"
257
+ msgstr "Verificatie code"
258
 
259
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1321
260
  msgid "Submit"
262
 
263
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1322
264
  msgid "Your comment is awaiting moderation"
265
+ msgstr "Uw reactie wacht op goedkeuring"
266
 
267
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1351
268
  msgid "Delete Comment"
269
+ msgstr "Reactie verwijderen"
270
 
271
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2261
272
  msgid "Show Comments"
273
+ msgstr "Toon reacties"
274
 
275
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2480
276
  msgid "Hide info"
278
 
279
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2491
280
  msgid "Hide rating"
281
+ msgstr "Beoordeling verbergen"
282
 
283
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2686
284
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2895
287
 
288
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:2800
289
  msgid "Exit Fullscreen"
290
+ msgstr "Volledig scherm afsluiten"
291
 
292
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:46
293
  msgid "Item Succesfully Saved."
294
+ msgstr "Item succesvol opgeslagen."
295
 
296
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:52
297
  msgid "Error. Please install plugin again."
298
+ msgstr "Fout. Installeer de plug-in opnieuw."
299
 
300
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:58
301
  msgid "Item Succesfully Deleted."
302
+ msgstr "Item succesvol verwijderd."
303
 
304
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:64
305
  msgid "You can't delete default theme"
306
+ msgstr "U kunt het standaard thema niet verwijderen"
307
 
308
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:70
309
  msgid "Items Succesfully Deleted."
310
+ msgstr "Items succesvol verwijderd."
311
 
312
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:76
313
  msgid "You must select at least one item."
314
+ msgstr "U dient minimaal 1 item te selecteren."
315
 
316
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:82
317
  msgid "The item is successfully set as default."
318
+ msgstr "Het item is succesvol als standaard ingesteld."
319
 
320
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:88
321
  msgid "Options Succesfully Saved."
322
+ msgstr "Opties succesvol opgeslagen"
323
 
324
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:94
325
  msgid "Item Succesfully Published."
326
+ msgstr "Item is succesvol gepubliceerd."
327
 
328
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:100
329
  msgid "Items Succesfully Published."
330
+ msgstr "Items zijn succesvol gepubliceerd."
331
 
332
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:106
333
  msgid "Item Succesfully Unpublished."
334
+ msgstr "Item is niet meer gepubliceerd."
335
 
336
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:112
337
  msgid "Items Succesfully Unpublished."
338
+ msgstr "Items zijn niet meer gepubliceerd."
339
 
340
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:118
341
  msgid "Ordering Succesfully Saved."
342
+ msgstr "Sorteervolgorde is succesvol opgeslagen."
343
 
344
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:124
345
  msgid "A term with the name provided already exists."
346
+ msgstr "Er bestaat reeds een item met dezelfde naam."
347
 
348
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:130
349
  msgid "Name field is required."
350
+ msgstr "Veld 'Naam' is verplicht."
351
 
352
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:136
353
  msgid "The slug must be unique."
354
+ msgstr "Systeem slug moet uniek zijn."
355
 
356
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:142
357
  msgid "Changes must be saved."
358
+ msgstr "Veranderingen moeten worden opgeslagen."
359
 
360
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:188
361
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:362
362
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:725
363
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:781
364
  msgid "Search"
365
+ msgstr "Zoeken"
366
 
367
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:189
368
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:363
369
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:722
370
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:784
371
  msgid "Reset"
372
+ msgstr "Herstellen"
373
 
374
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:315
375
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:465
379
 
380
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:436
381
  msgid "item"
382
+ msgstr "item"
383
 
384
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:516
385
  msgid " item(s)"
386
+ msgstr "item(s)"
387
 
388
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:521
389
  msgid "First"
399
 
400
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:524
401
  msgid "Last"
402
+ msgstr "Laatste"
403
 
404
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:542
405
  msgid "Go to the first page"
407
 
408
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:543
409
  msgid "Go to the previous page"
410
+ msgstr "Ga naar de vorige pagina"
411
 
412
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:549
413
  msgid "Go to the next page"
419
 
420
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:562
421
  msgid "Load More..."
422
+ msgstr "Meer Laden..."
423
 
424
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:846
425
  msgid "Order by: "
426
+ msgstr "Sorteer op:"
427
 
428
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:848
429
  msgid "Default"
430
+ msgstr "Standaard"
431
 
432
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:849
433
  msgid "Filename"
434
+ msgstr "Bestandsnaam"
435
 
436
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:850
437
  msgid "Size"
438
+ msgstr "Grootte"
439
 
440
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\framework/WDWLibrary.php:851
441
  msgid "Random"
442
+ msgstr "Willekeurig"
443
 
444
  #~ msgid "Photo gallery plugin autoupdate interval."
445
  #~ msgstr "Fotogalerij plugin autoupdate interval."
photo-gallery.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
- * Version: 1.2.87
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -1903,7 +1903,7 @@ function bwg_activate() {
1903
  ));
1904
  }
1905
  $version = get_option("wd_bwg_version");
1906
- $new_version = '1.2.87';
1907
  if ($version && version_compare($version, $new_version, '<')) {
1908
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1909
  bwg_update($version);
@@ -1951,7 +1951,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
1951
 
1952
  function bwg_update_hook() {
1953
  $version = get_option("wd_bwg_version");
1954
- $new_version = '1.2.87';
1955
  if ($version && version_compare($version, $new_version, '<')) {
1956
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1957
  bwg_update($version);
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
+ * Version: 1.2.88
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
1903
  ));
1904
  }
1905
  $version = get_option("wd_bwg_version");
1906
+ $new_version = '1.2.88';
1907
  if ($version && version_compare($version, $new_version, '<')) {
1908
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1909
  bwg_update($version);
1951
 
1952
  function bwg_update_hook() {
1953
  $version = get_option("wd_bwg_version");
1954
+ $new_version = '1.2.88';
1955
  if ($version && version_compare($version, $new_version, '<')) {
1956
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1957
  bwg_update($version);
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
  Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion, widget, youtube gallery, ecommerce
5
  Tested up to: 4.4
6
- Stable tag: 1.2.87
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -219,6 +219,13 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
219
 
220
  == Changelog ==
221
 
 
 
 
 
 
 
 
222
  = 1.2.87 =
223
  * Changed: User Manual links.
224
  * Fixed: Facebook add-on autoupdate bug.
3
  Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
  Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration, instagram feed, Flickr, Dailymotion, widget, youtube gallery, ecommerce
5
  Tested up to: 4.4
6
+ Stable tag: 1.2.88
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
219
 
220
  == Changelog ==
221
 
222
+ = 1.2.88 =
223
+ * Fixed: Prevent javascript errors with empty options.
224
+ * Changed: Dutch translation (Thanks to Gerben H. Dijkstra).
225
+ * Changed: Italian translation (Thanks to Fabio Massimo Pari).
226
+ * Changed: Gallery/Album author do not change on update.
227
+ * Improved: Filemanager load time.
228
+
229
  = 1.2.87 =
230
  * Changed: User Manual links.
231
  * Fixed: Facebook add-on autoupdate bug.
tmp-photo-gallery-readme.pot DELETED
@@ -1,1972 +0,0 @@
1
- msgid ""
2
- msgstr "MIME-Version: 1.0\n"
3
-
4
- #. Name.
5
- msgid "Gallery"
6
- msgstr ""
7
-
8
- #. Short description.
9
- msgid "Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive."
10
- msgstr ""
11
-
12
- #. Screenshot description.
13
- msgid "Photo Gallery - Popup View"
14
- msgstr ""
15
-
16
- #. Screenshot description.
17
- msgid "Photo Gallery - Thumbnails View"
18
- msgstr ""
19
-
20
- #. Screenshot description.
21
- msgid "Photo Gallery - Masonry View"
22
- msgstr ""
23
-
24
- #. Screenshot description.
25
- msgid "Photo Gallery - Create Shortcode"
26
- msgstr ""
27
-
28
- #. Screenshot description.
29
- msgid "Photo Gallery - Edit Global Options"
30
- msgstr ""
31
-
32
- #. Screenshot description.
33
- msgid "Photo Gallery - Edit Watermark"
34
- msgstr ""
35
-
36
- #. Found in description header.
37
- msgid "Photo Gallery Add-ons:"
38
- msgstr ""
39
-
40
- #. Found in description header.
41
- msgid "IMPORTANT:"
42
- msgstr ""
43
-
44
- #. Found in description header.
45
- msgid "The list of the features:"
46
- msgstr ""
47
-
48
- #. Found in description header.
49
- msgid "Supported languages"
50
- msgstr ""
51
-
52
- #. Found in description list item.
53
- msgid "Thumbnails gallery view"
54
- msgstr ""
55
-
56
- #. Found in description list item.
57
- msgid "Masonry gallery view for multi-size thumbnails (commercial version)"
58
- msgstr ""
59
-
60
- #. Found in description list item.
61
- msgid "Mosaic gallery view (commercial version)"
62
- msgstr ""
63
-
64
- #. Found in description list item.
65
- msgid "Slideshow"
66
- msgstr ""
67
-
68
- #. Found in description list item.
69
- msgid "Image Browser for single image display with a possibility of switching between images"
70
- msgstr ""
71
-
72
- #. Found in description list item.
73
- msgid "Compact Album view"
74
- msgstr ""
75
-
76
- #. Found in description list item.
77
- msgid "Masonry Album view (commercial version)"
78
- msgstr ""
79
-
80
- #. Found in description list item.
81
- msgid "Extended Album view for displaying albums with descriptions"
82
- msgstr ""
83
-
84
- #. Found in description list item.
85
- msgid "Blog Style gallery view (commercial version)"
86
- msgstr ""
87
-
88
- #. Found in description list item.
89
- msgid "Tag Cloud"
90
- msgstr ""
91
-
92
- #. Found in description list item.
93
- msgid "Dynamic Photo Gallery Tags Cloud "
94
- msgstr ""
95
-
96
- #. Found in description list item.
97
- msgid "Photo Gallery Slideshow "
98
- msgstr ""
99
-
100
- #. Found in description list item.
101
- msgid "Photo Gallery (similar to the main plugin option)"
102
- msgstr ""
103
-
104
- #. Found in description list item.
105
- msgid "100% Responsive "
106
- msgstr ""
107
-
108
- #. Found in description list item.
109
- msgid "Multiple gallery views to choose from: Thumbnails, Image Browser, Slideshow for galleries and Compact Album, Extended Album views for albums "
110
- msgstr ""
111
-
112
- #. Found in description list item.
113
- msgid "Supports the following types of image files: JPG, JPEG, PNG and GIF "
114
- msgstr ""
115
-
116
- #. Found in description list item.
117
- msgid "Unlimited quantity of photos in gallery "
118
- msgstr ""
119
-
120
- #. Found in description list item.
121
- msgid "Possibility of adding unlimited quantity of galleries/albums "
122
- msgstr ""
123
-
124
- #. Found in description list item.
125
- msgid "Detailed three-column visual shortcode for adding created gallery/galleries and album/albums into the posts and pages. "
126
- msgstr ""
127
-
128
- #. Found in description list item.
129
- msgid "Detailed (Extended) album and compact album view "
130
- msgstr ""
131
-
132
- #. Found in description list item.
133
- msgid "Possibility of changing the roles of who can edit the galleries/albums/images (Author/All Users) "
134
- msgstr ""
135
-
136
- #. Found in description list item.
137
- msgid "Chances to provide details for images (tags, captions) "
138
- msgstr ""
139
-
140
- #. Found in description list item.
141
- msgid "Thumbnail editing tools (Crop, rotate and flip) "
142
- msgstr ""
143
-
144
- #. Found in description list item.
145
- msgid "Possibility of changing the amount of images displayed in a single row of an album/gallery "
146
- msgstr ""
147
-
148
- #. Found in description list item.
149
- msgid "Slideshow view with auto play and shuffle features "
150
- msgstr ""
151
-
152
- #. Found in description list item.
153
- msgid "Audio track playback possibility with the image slideshow "
154
- msgstr ""
155
-
156
- #. Found in description list item.
157
- msgid "Possibility of adding Watermarks/Advertisements for each individual image "
158
- msgstr ""
159
-
160
- #. Found in description list item.
161
- msgid "Direct Image download and original image display capabilities "
162
- msgstr ""
163
-
164
- #. Found in description list item.
165
- msgid "WordPress Tag cloud hosted widget "
166
- msgstr ""
167
-
168
- #. Found in description list item.
169
- msgid "Photo Gallery Slideshow widget "
170
- msgstr ""
171
-
172
- #. Found in description list item.
173
- msgid "Photo Gallery Widget for displaying albums and galleries as widgets"
174
- msgstr ""
175
-
176
- #. Found in description list item.
177
- msgid "Separate shortcode generator page for the websites using custom pages/custom editors. "
178
- msgstr ""
179
-
180
- #. Found in description list item.
181
- msgid "Support for YouTube and Vimeo videos within Galleries. "
182
- msgstr ""
183
-
184
- #. Found in description list item.
185
- msgid "Possibility of uploading images from the Media Library of the website."
186
- msgstr ""
187
-
188
- #. Found in description list item.
189
- msgid "Possibility to add tags to all images at once. "
190
- msgstr ""
191
-
192
- #. Found in description list item.
193
- msgid "Right-click disabling option for the image downloads protection. "
194
- msgstr ""
195
-
196
- #. Found in description list item.
197
- msgid "Possibility to display images in the albums in thumbnail or masonry view upon opening "
198
- msgstr ""
199
-
200
- #. Found in description list item.
201
- msgid "WordPress Search Integration by gallery and album title "
202
- msgstr ""
203
-
204
- #. Found in description list item.
205
- msgid "Possibility to display the number of the images in the gallery lighbox (optional feature) "
206
- msgstr ""
207
-
208
- #. Found in description list item.
209
- msgid "Resizing possibility after adding the images "
210
- msgstr ""
211
-
212
- #. Found in description list item.
213
- msgid "Possibility to display Search Box on the gallery page for the search based on titles "
214
- msgstr ""
215
-
216
- #. Found in description list item.
217
- msgid "Possibility to display the number of images in the lighbox "
218
- msgstr ""
219
-
220
- #. Found in description list item.
221
- msgid "Redirection option upon clicking image thumbnail "
222
- msgstr ""
223
-
224
- #. Found in description list item.
225
- msgid "Front-end image sorting possibility (dropdown) for the users "
226
- msgstr ""
227
-
228
- #. Found in description list item.
229
- msgid "Masonry gallery View. "
230
- msgstr ""
231
-
232
- #. Found in description list item.
233
- msgid "Mosaic gallery View "
234
- msgstr ""
235
-
236
- #. Found in description list item.
237
- msgid "Blog Style View. "
238
- msgstr ""
239
-
240
- #. Found in description list item.
241
- msgid "Masonry Album view "
242
- msgstr ""
243
-
244
- #. Found in description list item.
245
- msgid "Slideshow/Lightbox 15 effects. "
246
- msgstr ""
247
-
248
- #. Found in description list item.
249
- msgid "Editable themes. "
250
- msgstr ""
251
-
252
- #. Found in description list item.
253
- msgid "Instagram Integration. "
254
- msgstr ""
255
-
256
- #. Found in description list item.
257
- msgid "Commenting possibility with Captcha protection possibility. "
258
- msgstr ""
259
-
260
- #. Found in description list item.
261
- msgid "Social sharing possibility (Facebook, Google+, Twitter, Pinterest and Tumblr). "
262
- msgstr ""
263
-
264
- #. Found in description list item.
265
- msgid "Dynamic Photo Gallery Tag Cloud widget with image tag cloud and text tag cloud options. "
266
- msgstr ""
267
-
268
- #. Found in description list item.
269
- msgid "Possibility to include both videos and images within a single gallery. "
270
- msgstr ""
271
-
272
- #. Found in description list item.
273
- msgid "Add ons support. "
274
- msgstr ""
275
-
276
- #. Found in description paragraph.
277
- msgid "Create 100% responsive FREE WordPress photo gallery in minutes. Easy to customize and various views."
278
- msgstr ""
279
-
280
- #. Found in description paragraph.
281
- msgid "https://www.youtube.com/watch?v=4Mxg0FsFZZE&amp;index=5&amp;list=PLnxWPiY5tLFUsFI67acGEPAqoDMZqss5F"
282
- msgstr ""
283
-
284
- #. Found in description paragraph.
285
- msgid ""
286
- "<a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin.html\">WordPress Photo Gallery</a><br />\n"
287
- "<a href=\"http://wpdemo.web-dorado.com/gallery/\">Photo Gallery Demo</a><br />\n"
288
- "<a href=\"http://wpdemo.web-dorado.com/wp-admin/admin.php?page=galleries_bwg\">Photo Gallery Demo Admin</a><br />\n"
289
- "<a href=\"https://web-dorado.com/wordpress-gallery-guide-step-1.html\">Photo Gallery User Manual</a><br />\n"
290
- "<a href=\"https://web-dorado.com/forum/photo-gallery.html\">Photo Gallery Support Forum</a>"
291
- msgstr ""
292
-
293
- #. Found in description paragraph.
294
- msgid ""
295
- "<a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/facebook.html\">Facebook Integration Add-on</a><br />\n"
296
- "<a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin/add-ons/export-import.html\">Export/Import Add-on</a>"
297
- msgstr ""
298
-
299
- #. Found in description paragraph.
300
- msgid "Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive. The product includes plugin for adding image galleries and albums to posts and pages, as well as multiple widgets. You can add images, providing detailed descriptions and tags, organize the galleries into different albums."
301
- msgstr ""
302
-
303
- #. Found in description paragraph.
304
- msgid "The plugin allows displaying galleries/albums within the following views:"
305
- msgstr ""
306
-
307
- #. Found in description paragraph.
308
- msgid "You can make the required customizations for the view in the shortcode in advance to adding in the posts/pages."
309
- msgstr ""
310
-
311
- #. Found in description paragraph.
312
- msgid "Included File Manager will help to rename, upload, remove, copy images and/or image directories within a few simple steps."
313
- msgstr ""
314
-
315
- #. Found in description paragraph.
316
- msgid "Photo Gallery product in addition to the main plugin includes 4 specific widgets:"
317
- msgstr ""
318
-
319
- #. Found in description paragraph.
320
- msgid "If you think you found a bug in Photo Gallery or have any problem/question concerning the plugin, please check out <a href=\"https://web-dorado.com/forum/photo-gallery.html\">Photo Gallery Support Forum</a> in our website. If you do not find a solution here, do not hesitate to contact us at <a href=\"mailto:info@web-dorado.com\">info@web-dorado.com</a>."
321
- msgstr ""
322
-
323
- #. Found in description paragraph.
324
- msgid "Upgrade to <a href=\"https://web-dorado.com/products/wordpress-photo-gallery-plugin.html\">WordPress Photo Gallery Pro</a> to add features:"
325
- msgstr ""
326
-
327
- #. Found in description paragraph.
328
- msgid "*If you need language of Photo Gallery which is not included in this list, please contact us and we will do the translation of Photo Gallery within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *"
329
- msgstr ""
330
-
331
- #. Found in description paragraph.
332
- msgid ""
333
- "Afrikaans (af)<br />\n"
334
- "Albanian (sq)<br />\n"
335
- "Arabic (ar)<br />\n"
336
- "Armenian (hy_AM)<br />\n"
337
- "Belarusian (be_BY)<br />\n"
338
- "Bulgarian (bg_BG)<br />\n"
339
- "Catalan (ca)<br />\n"
340
- "Chinese, Simplified (zh_CN)<br />\n"
341
- "Croatian (hr)<br />\n"
342
- "Czech (cs_CZ)<br />\n"
343
- "Danish (da_DK)<br />\n"
344
- "Dutch (nl_NL)<br />\n"
345
- "Esperanto (eo_EO)<br />\n"
346
- "Estonian (et)<br />\n"
347
- "Finnish (fi)<br />\n"
348
- "French (fr_FR)<br />\n"
349
- "Galician (gl_ES)<br />\n"
350
- "Georgian (ka_GE)<br />\n"
351
- "German (de_DE)<br />\n"
352
- "Greek (el)<br />\n"
353
- "Hebrew (he_IL)<br />\n"
354
- "Hindi (hi_IN)<br />\n"
355
- "Hungarian (hu_HU)<br />\n"
356
- "Icelandic (is_IS) by Eggert Johannesson<br />\n"
357
- "Indonesian (id_ID)<br />\n"
358
- "Italian (it_IT)<br />\n"
359
- "Japanese (ja)<br />\n"
360
- "Korean (ko_KR)<br />\n"
361
- "Latvian (lv)<br />\n"
362
- "Lithuanian (lt_LT)<br />\n"
363
- "Macedonian (mk_MK)<br />\n"
364
- "Malay (ms_MY)<br />\n"
365
- "Maltese (mt_MT)<br />\n"
366
- "Norwegian (nb_NO)<br />\n"
367
- "Persian (fa_IR)<br />\n"
368
- "Polish (pl_PL)<br />\n"
369
- "Portuguese (pt_PT)<br />\n"
370
- "Russian (ru_RU)<br />\n"
371
- "Romanian (ro_RO)<br />\n"
372
- "Serbian (sr_RS)<br />\n"
373
- "Slovak (sk_SK)<br />\n"
374
- "Spanish (es_ES) by Alexandro Lacadena<br />\n"
375
- "Swedish (sv_SE)<br />\n"
376
- "Tamil (ta)<br />\n"
377
- "Thai (th)<br />\n"
378
- "Turkish (tr_TR)<br />\n"
379
- "Ukrainian (uk_UA)<br />\n"
380
- "Vietnamese (vi)"
381
- msgstr ""
382
-
383
- #. Found in installation header.
384
- msgid "Thank you for your interest in Photo Gallery."
385
- msgstr ""
386
-
387
- #. Found in installation header.
388
- msgid "Minimum requirements."
389
- msgstr ""
390
-
391
- #. Found in installation header.
392
- msgid "Perform a new installation"
393
- msgstr ""
394
-
395
- #. Found in installation list item.
396
- msgid "Wordpress 3.4+ "
397
- msgstr ""
398
-
399
- #. Found in installation list item.
400
- msgid "PHP 5.x "
401
- msgstr ""
402
-
403
- #. Found in installation list item.
404
- msgid "MySQL 5.x "
405
- msgstr ""
406
-
407
- #. Found in installation list item.
408
- msgid "Log in to the administrator panel. "
409
- msgstr ""
410
-
411
- #. Found in installation list item.
412
- msgid "Go to Plugins Add &gt; New &gt; Upload. "
413
- msgstr ""
414
-
415
- #. Found in installation list item.
416
- msgid "Click <code>Install Now</code> button. "
417
- msgstr ""
418
-
419
- #. Found in installation list item.
420
- msgid "Click <code>Activate Plugin</code> button for activating the gallery plugin. "
421
- msgstr ""
422
-
423
- #. Found in installation list item.
424
- msgid "If the installation does not succeed, please contact us at <a href=\"mailto:info@web-dorado.com\">info@web-dorado.com</a>."
425
- msgstr ""
426
-
427
- #. Found in installation paragraph.
428
- msgid "After downloading the ZIP file,"
429
- msgstr ""
430
-
431
- #. Found in changelog list item.
432
- msgid "Changed: Blog style view scroll load. "
433
- msgstr ""
434
-
435
- #. Found in changelog list item.
436
- msgid "Changed: Lightbox buttons responsiveness. "
437
- msgstr ""
438
-
439
- #. Found in changelog list item.
440
- msgid "Fixed: Spanish translation by Alexandro Lacadena. "
441
- msgstr ""
442
-
443
- #. Found in changelog list item.
444
- msgid "Fixed: Album view bug. "
445
- msgstr ""
446
-
447
- #. Found in changelog list item.
448
- msgid "Fixed: Random ordering. "
449
- msgstr ""
450
-
451
- #. Found in changelog list item.
452
- msgid "Changed: Pause embed video on image change. "
453
- msgstr ""
454
-
455
- #. Found in changelog list item.
456
- msgid "Fixed: Translations bug in javascript. "
457
- msgstr ""
458
-
459
- #. Found in changelog list item.
460
- msgid "Added: Backend translation. "
461
- msgstr ""
462
-
463
- #. Found in changelog list item.
464
- msgid "Fixed: Pagination on tags page. "
465
- msgstr ""
466
-
467
- #. Found in changelog list item.
468
- msgid "Fixed: Minor bug in backend. "
469
- msgstr ""
470
-
471
- #. Found in changelog list item.
472
- msgid "Fixed: Right click protection on Safari. "
473
- msgstr ""
474
-
475
- #. Found in changelog list item.
476
- msgid "Added: Export/Import add-on. "
477
- msgstr ""
478
-
479
- #. Found in changelog list item.
480
- msgid "Fixed: Embed media responsiveness. "
481
- msgstr ""
482
-
483
- #. Found in changelog list item.
484
- msgid "Changed: Permissions for shortcode(pro version). "
485
- msgstr ""
486
-
487
- #. Found in changelog list item.
488
- msgid "Added: Show/hide custom post types (optional). "
489
- msgstr ""
490
-
491
- #. Found in changelog list item.
492
- msgid "Fixed: Bug in comments."
493
- msgstr ""
494
-
495
- #. Found in changelog list item.
496
- msgid "Changed: Licensing page."
497
- msgstr ""
498
-
499
- #. Found in changelog list item.
500
- msgid "Changed: Thumbnail click action. "
501
- msgstr ""
502
-
503
- #. Found in changelog list item.
504
- msgid "Added: Filter by tags in frontend."
505
- msgstr ""
506
-
507
- #. Found in changelog list item.
508
- msgid "Changed: Notices show order. "
509
- msgstr ""
510
-
511
- #. Found in changelog list item.
512
- msgid "New: Facebook embed add-on. "
513
- msgstr ""
514
-
515
- #. Found in changelog list item.
516
- msgid "Added: Add-ons page."
517
- msgstr ""
518
-
519
- #. Found in changelog list item.
520
- msgid "Added: Translation in Icelandic. Thanks to Eggert Johannesson. "
521
- msgstr ""
522
-
523
- #. Found in changelog list item.
524
- msgid "Fixed: Serbian translation. "
525
- msgstr ""
526
-
527
- #. Found in changelog list item.
528
- msgid "Fixed: Share url on Pinterest. "
529
- msgstr ""
530
-
531
- #. Found in changelog list item.
532
- msgid "Fixed: Edit images with quotas in name. "
533
- msgstr ""
534
-
535
- #. Found in changelog list item.
536
- msgid "Fixed: Edit newly added images. "
537
- msgstr ""
538
-
539
- #. Found in changelog list item.
540
- msgid "Changed: Featured plugins page. "
541
- msgstr ""
542
-
543
- #. Found in changelog list item.
544
- msgid "Fixed: Play/pause button in carousel view. "
545
- msgstr ""
546
-
547
- #. Found in changelog list item.
548
- msgid "Fixed: Recreate thumbnail. "
549
- msgstr ""
550
-
551
- #. Found in changelog list item.
552
- msgid "Fixed: Division by zero in pagination. "
553
- msgstr ""
554
-
555
- #. Found in changelog list item.
556
- msgid "Changed: Add to pinterest description image alt. "
557
- msgstr ""
558
-
559
- #. Found in changelog list item.
560
- msgid "Added: Support/rate us messages. "
561
- msgstr ""
562
-
563
- #. Found in changelog list item.
564
- msgid "Fixed: Image browser view pagination styles. "
565
- msgstr ""
566
-
567
- #. Found in changelog list item.
568
- msgid "Fixed: Open shared album image."
569
- msgstr ""
570
-
571
- #. Found in changelog list item.
572
- msgid "Fixed: Image browse pagination."
573
- msgstr ""
574
-
575
- #. Found in changelog list item.
576
- msgid "Added: Images count parameter for load more. "
577
- msgstr ""
578
-
579
- #. Found in changelog list item.
580
- msgid "Fixed: Pinterest share. "
581
- msgstr ""
582
-
583
- #. Found in changelog list item.
584
- msgid "Fixed: Depricated function in carousel. "
585
- msgstr ""
586
-
587
- #. Found in changelog list item.
588
- msgid "Changed: Compability with Wordpress 4.3. "
589
- msgstr ""
590
-
591
- #. Found in changelog list item.
592
- msgid "Fixed: JavaScript conflict with some themes."
593
- msgstr ""
594
-
595
- #. Found in changelog list item.
596
- msgid "Added: Call photo gallery by php function."
597
- msgstr ""
598
-
599
- #. Found in changelog list item.
600
- msgid "Fixed: Back to previous album/gallery."
601
- msgstr ""
602
-
603
- #. Found in changelog list item.
604
- msgid "Added: Transition for mosaic view. "
605
- msgstr ""
606
-
607
- #. Found in changelog list item.
608
- msgid "Changed: Activate, Deactivate hooks for multisite."
609
- msgstr ""
610
-
611
- #. Found in changelog list item.
612
- msgid "Fixed: \"Open image in original size\" and \"Download original image\" for embed."
613
- msgstr ""
614
-
615
- #. Found in changelog list item.
616
- msgid "Fixed: Instagram thumbnail."
617
- msgstr ""
618
-
619
- #. Found in changelog list item.
620
- msgid "Fixed: Watermark link."
621
- msgstr ""
622
-
623
- #. Found in changelog list item.
624
- msgid "New: Tools for editing images."
625
- msgstr ""
626
-
627
- #. Found in changelog list item.
628
- msgid "Fixed: Security issue. "
629
- msgstr ""
630
-
631
- #. Found in changelog list item.
632
- msgid "Fixed: Embed media for wordpress lower than 4.0.0."
633
- msgstr ""
634
-
635
- #. Found in changelog list item.
636
- msgid "Changed: Save images ordering in admin."
637
- msgstr ""
638
-
639
- #. Found in changelog list item.
640
- msgid "Fixed: Warnings in filemanager."
641
- msgstr ""
642
-
643
- #. Found in changelog list item.
644
- msgid "Fixed: Prevent opening lightbox on swipe."
645
- msgstr ""
646
-
647
- #. Found in changelog list item.
648
- msgid "New: Search by name in file manager. "
649
- msgstr ""
650
-
651
- #. Found in changelog list item.
652
- msgid "New: Carousel view. "
653
- msgstr ""
654
-
655
- #. Found in changelog list item.
656
- msgid "Fixed: Horizontal Mosaic view bug. "
657
- msgstr ""
658
-
659
- #. Found in changelog list item.
660
- msgid "Fixed: Print bug. "
661
- msgstr ""
662
-
663
- #. Found in changelog list item.
664
- msgid "New: Load more with scroll. "
665
- msgstr ""
666
-
667
- #. Found in changelog list item.
668
- msgid "Fixed: Thumbnail size on recover. "
669
- msgstr ""
670
-
671
- #. Found in changelog list item.
672
- msgid "Changed: Featured plugins page. "
673
- msgstr ""
674
-
675
- #. Found in changelog list item.
676
- msgid "Fixed: Mosaic view show title. "
677
- msgstr ""
678
-
679
- #. Found in changelog list item.
680
- msgid "Fixed: AddThis javascript bug. "
681
- msgstr ""
682
-
683
- #. Found in changelog list item.
684
- msgid "New: Addthis (pro version). "
685
- msgstr ""
686
-
687
- #. Found in changelog list item.
688
- msgid "Fixed: Link text font size in extended album description. "
689
- msgstr ""
690
-
691
- #. Found in changelog list item.
692
- msgid "Fixed: Delete/update custom posts on gallery/album edit. "
693
- msgstr ""
694
-
695
- #. Found in changelog list item.
696
- msgid "Fixed: Image width/height size with open comments. "
697
- msgstr ""
698
-
699
- #. Found in changelog list item.
700
- msgid "New: Loop option for lightbox. "
701
- msgstr ""
702
-
703
- #. Found in changelog list item.
704
- msgid "Fixed: Embed media by YouTube short url. "
705
- msgstr ""
706
-
707
- #. Found in changelog list item.
708
- msgid "New: Load more button instead of pagination (optional). "
709
- msgstr ""
710
-
711
- #. Found in changelog list item.
712
- msgid "Fixed: Minor bug on gallery save on php5.3. "
713
- msgstr ""
714
-
715
- #. Found in changelog list item.
716
- msgid "Change links. "
717
- msgstr ""
718
-
719
- #. Found in changelog list item.
720
- msgid "Changed: Featured plugins page. "
721
- msgstr ""
722
-
723
- #. Found in changelog list item.
724
- msgid "New: Featured themes page. "
725
- msgstr ""
726
-
727
- #. Found in changelog list item.
728
- msgid "change user guide links. "
729
- msgstr ""
730
-
731
- #. Found in changelog list item.
732
- msgid "minor bug fixed."
733
- msgstr ""
734
-
735
- #. Found in changelog list item.
736
- msgid "Fixed: Lightbox opening bug for ios."
737
- msgstr ""
738
-
739
- #. Found in changelog list item.
740
- msgid "Fixed: Lightbox opening bug for mobile browsers."
741
- msgstr ""
742
-
743
- #. Found in changelog list item.
744
- msgid "duplicated id in slideshow view. "
745
- msgstr ""
746
-
747
- #. Found in changelog list item.
748
- msgid "deprecated options removed (roles). "
749
- msgstr ""
750
-
751
- #. Found in changelog list item.
752
- msgid "bug in preload option fixed."
753
- msgstr ""
754
-
755
- #. Found in changelog list item.
756
- msgid "minor bugs fixes."
757
- msgstr ""
758
-
759
- #. Found in changelog list item.
760
- msgid "conflict with some themes fixed."
761
- msgstr ""
762
-
763
- #. Found in changelog list item.
764
- msgid "New: Bottom pagination in admin views. "
765
- msgstr ""
766
-
767
- #. Found in changelog list item.
768
- msgid "New: Improve SEO. "
769
- msgstr ""
770
-
771
- #. Found in changelog list item.
772
- msgid "New: Autohide option for slideshow and lightbox navigation buttons. "
773
- msgstr ""
774
-
775
- #. Found in changelog list item.
776
- msgid "New: Read image meta data. "
777
- msgstr ""
778
-
779
- #. Found in changelog list item.
780
- msgid "Fixed: Slideshow bullets centering. "
781
- msgstr ""
782
-
783
- #. Found in changelog list item.
784
- msgid "Fixed: Admin-ajax url for frontend. "
785
- msgstr ""
786
-
787
- #. Found in changelog list item.
788
- msgid "Fixed: Upload images to .original not resized. "
789
- msgstr ""
790
-
791
- #. Found in changelog list item.
792
- msgid "Fixed: Order by filename. "
793
- msgstr ""
794
-
795
- #. Found in changelog list item.
796
- msgid "New: Embed support. "
797
- msgstr ""
798
-
799
- #. Found in changelog list item.
800
- msgid "New: Photo gallery can be loaded through AJAX request. "
801
- msgstr ""
802
-
803
- #. Found in changelog list item.
804
- msgid "New: Image meta auto-filling. "
805
- msgstr ""
806
-
807
- #. Found in changelog list item.
808
- msgid "Changed: Deleted tag posts. "
809
- msgstr ""
810
-
811
- #. Found in changelog list item.
812
- msgid "Changed: Improved security of backend. "
813
- msgstr ""
814
-
815
- #. Found in changelog list item.
816
- msgid "Fixed: Thumbnail and filmstrip sizes for embeds. "
817
- msgstr ""
818
-
819
- #. Found in changelog list item.
820
- msgid "Fixed: Search in backend galleries view. "
821
- msgstr ""
822
-
823
- #. Found in changelog list item.
824
- msgid "Fixed: Gallery box image URL on a page with multiple galleries. "
825
- msgstr ""
826
-
827
- #. Found in changelog list item.
828
- msgid "Fixed: Maximize/resize buttons in gallery box when exiting fullscreen. "
829
- msgstr ""
830
-
831
- #. Found in changelog list item.
832
- msgid "Fixed: Other minor bugs. "
833
- msgstr ""
834
-
835
- #. Found in changelog list item.
836
- msgid "added large image url in page source for SEO. "
837
- msgstr ""
838
-
839
- #. Found in changelog list item.
840
- msgid "shortcode issue fixed . "
841
- msgstr ""
842
-
843
- #. Found in changelog list item.
844
- msgid "Front-end image sorting possibility (dropdown) for the users. "
845
- msgstr ""
846
-
847
- #. Found in changelog list item.
848
- msgid "security issue fixed. "
849
- msgstr ""
850
-
851
- #. Found in changelog list item.
852
- msgid "bug in fullscreen button and laoding image animation fixed."
853
- msgstr ""
854
-
855
- #. Found in changelog list item.
856
- msgid "updated font-awesome to 4.2.0 version. "
857
- msgstr ""
858
-
859
- #. Found in changelog list item.
860
- msgid "sort bug in ligthbox."
861
- msgstr ""
862
-
863
- #. Found in changelog list item.
864
- msgid "security issue fixed."
865
- msgstr ""
866
-
867
- #. Found in changelog list item.
868
- msgid "masonry album view type. "
869
- msgstr ""
870
-
871
- #. Found in changelog list item.
872
- msgid "single quota bug in image fixed."
873
- msgstr ""
874
-
875
- #. Found in changelog list item.
876
- msgid "bug in new image save fixed."
877
- msgstr ""
878
-
879
- #. Found in changelog list item.
880
- msgid "wrap around in lightbox."
881
- msgstr ""
882
-
883
- #. Found in changelog list item.
884
- msgid "pagination input."
885
- msgstr ""
886
-
887
- #. Found in changelog list item.
888
- msgid "play icon over the video thumbnail."
889
- msgstr ""
890
-
891
- #. Found in changelog list item.
892
- msgid "add upload images with custom size."
893
- msgstr ""
894
-
895
- #. Found in changelog list item.
896
- msgid "minor changes in shortcode generation code. "
897
- msgstr ""
898
-
899
- #. Found in changelog list item.
900
- msgid "change shortcodes."
901
- msgstr ""
902
-
903
- #. Found in changelog list item.
904
- msgid "images count in ligthbox (optional - only in options page). "
905
- msgstr ""
906
-
907
- #. Found in changelog list item.
908
- msgid "images count column in galleries table. "
909
- msgstr ""
910
-
911
- #. Found in changelog list item.
912
- msgid "WordPress Search Integration by gallery and album title. "
913
- msgstr ""
914
-
915
- #. Found in changelog list item.
916
- msgid "show gallery, album title (optional - only in options page). "
917
- msgstr ""
918
-
919
- #. Found in changelog list item.
920
- msgid "Bug fixed in tag cloud widget. "
921
- msgstr ""
922
-
923
- #. Found in changelog list item.
924
- msgid "Bug fixed in filemanager. "
925
- msgstr ""
926
-
927
- #. Found in changelog list item.
928
- msgid "change in loading. "
929
- msgstr ""
930
-
931
- #. Found in changelog list item.
932
- msgid "added option \"Import from Media Library\". "
933
- msgstr ""
934
-
935
- #. Found in changelog list item.
936
- msgid "bug fixed in save gallery. "
937
- msgstr ""
938
-
939
- #. Found in changelog list item.
940
- msgid "Improve translation, Add tags to all images. "
941
- msgstr ""
942
-
943
- #. Found in changelog list item.
944
- msgid "redirect from widget, unique tags name. "
945
- msgstr ""
946
-
947
- #. Found in changelog list item.
948
- msgid "order option for album images. "
949
- msgstr ""
950
-
951
- #. Found in changelog list item.
952
- msgid "added option for sorting gallery images within album. "
953
- msgstr ""
954
-
955
- #. Found in changelog list item.
956
- msgid "bug fixed on lightbox. "
957
- msgstr ""
958
-
959
- #. Found in changelog list item.
960
- msgid "preload images count options. "
961
- msgstr ""
962
-
963
- #. Found in changelog list item.
964
- msgid "redirect url optional. "
965
- msgstr ""
966
-
967
- #. Found in changelog list item.
968
- msgid "added search images in gallery (optional), optional info, resize."
969
- msgstr ""
970
-
971
- #. Found in changelog list item.
972
- msgid "added option for show image title/description on lightbox."
973
- msgstr ""
974
-
975
- #. Found in changelog list item.
976
- msgid "added tag cloud ordering option, keep aspect ratio."
977
- msgstr ""
978
-
979
- #. Found in changelog list item.
980
- msgid "youtube, vimeo."
981
- msgstr ""
982
-
983
- #. Found in changelog list item.
984
- msgid "added tag cloud options and zip upload."
985
- msgstr ""
986
-
987
- #. Found in changelog list item.
988
- msgid "bug fixed on WP 3.9 editor."
989
- msgstr ""
990
-
991
- #. Found in changelog list item.
992
- msgid "gallery alignment bug fixed."
993
- msgstr ""
994
-
995
- #. Found in changelog list item.
996
- msgid "corrected album ordering and added slideshow widget filmstrip height option."
997
- msgstr ""
998
-
999
- #. Found in changelog list item.
1000
- msgid "added swipe effect on lightbox."
1001
- msgstr ""
1002
-
1003
- #. Found in changelog list item.
1004
- msgid "added option disable/enable right click."
1005
- msgstr ""
1006
-
1007
- #. Found in changelog list item.
1008
- msgid "bug fixed in slideshow ."
1009
- msgstr ""
1010
-
1011
- #. Found in changelog list item.
1012
- msgid "removed enters from code (conflicts fixed)."
1013
- msgstr ""
1014
-
1015
- #. Found in changelog list item.
1016
- msgid "critical bug with uninstall fixed."
1017
- msgstr ""
1018
-
1019
- #. Found in changelog list item.
1020
- msgid "improved file upload and save on gallery."
1021
- msgstr ""
1022
-
1023
- #. Found in changelog list item.
1024
- msgid "improved filemanager functionality, fix bug on widget."
1025
- msgstr ""
1026
-
1027
- #. Found in changelog list item.
1028
- msgid "bug fixed in file manager. "
1029
- msgstr ""
1030
-
1031
- #. Found in changelog list item.
1032
- msgid "added shortcode generator, thumbnail title, thumb size in filemanager, bug fixed in slideshow. "
1033
- msgstr ""
1034
-
1035
- #. Found in changelog list item.
1036
- msgid "bug fixed in album view ."
1037
- msgstr ""
1038
-
1039
- #. Found in changelog list item.
1040
- msgid "php 5.2 capability."
1041
- msgstr ""
1042
-
1043
- #. Found in changelog list item.
1044
- msgid "Initial version."
1045
- msgstr ""
1046
-
1047
- #. Found in changelog paragraph.
1048
- msgid ""
1049
- "= 1.2.34= \n"
1050
- "* New: Recreate thumbnail button in gallery page."
1051
- msgstr ""
1052
-
1053
- #. Found in changelog paragraph.
1054
- msgid "Edit licensing page."
1055
- msgstr ""
1056
-
1057
- #. Found in faq header.
1058
- msgid "1. How can I add images to the Photo Gallery?"
1059
- msgstr ""
1060
-
1061
- #. Found in faq header.
1062
- msgid "2. What is the difference between galleries and albums?"
1063
- msgstr ""
1064
-
1065
- #. Found in faq header.
1066
- msgid "3. Can I add images using FTP?"
1067
- msgstr ""
1068
-
1069
- #. Found in faq header.
1070
- msgid "4. Can I add multiple galleries/albums for a single page/domain?"
1071
- msgstr ""
1072
-
1073
- #. Found in faq header.
1074
- msgid "5. Is it possible to translate Photo Gallery into another language?"
1075
- msgstr ""
1076
-
1077
- #. Found in faq header.
1078
- msgid "6. Is the Photo Gallery responsive?"
1079
- msgstr ""
1080
-
1081
- #. Found in faq header.
1082
- msgid "7. Is it possible to add advertising or watermark over the images with free version?"
1083
- msgstr ""
1084
-
1085
- #. Found in faq paragraph.
1086
- msgid "The images can be added to Photo Gallery using its standard File Manager. The uploader can be used both for uploading individual images or multiple images (This should done by uploading a .zip archive file)"
1087
- msgstr ""
1088
-
1089
- #. Found in faq paragraph.
1090
- msgid "The galleries are designed to contain images, whereas albums contain either galleries and/or other albums."
1091
- msgstr ""
1092
-
1093
- #. Found in faq paragraph.
1094
- msgid "Unfortunately, there is no such option. During the upload the thumbnails of the images are being created, whereas when using FTP the thumbnails do not get generated. The image thumbnails are required for most of the views. Thus using Media Upload is the only option."
1095
- msgstr ""
1096
-
1097
- #. Found in faq paragraph.
1098
- msgid "Yes, you can add as many galleries/albums within a single post or domain as you wish. There are no limitations on these options."
1099
- msgstr ""
1100
-
1101
- #. Found in faq paragraph.
1102
- msgid "It is only possible to translate the front end of the plugin. To do so, you should set define('WPLANG','[lang_code]') to the desired language code in wp_config.php file of your website. This way the plugin should be translated automatically. Please be informed, that you can modify the translations from wp-content/plugins/photo_gallery/languages/ (you will need POEdit http://www.poedit.net/download.php). You can find the language codes for the Photo Gallery in Wordpress.org appropriate plugins' page."
1103
- msgstr ""
1104
-
1105
- #. Found in faq paragraph.
1106
- msgid "Yes, the Photo Gallery is responsive and displays resized image for the mobile devices and tablets."
1107
- msgstr ""
1108
-
1109
- #. Found in faq paragraph.
1110
- msgid "Yes, it is possible to add advertising and/or watermark over the images. In both cases it can be only a single ad/watermark for all images."
1111
- msgstr ""
1112
-
1113
- #. Found in remaining content header.
1114
- msgid "Wordpress Photo Gallery Step by step guide"
1115
- msgstr ""
1116
-
1117
- #. Found in remaining content header.
1118
- msgid "Step 1: Installing the Gallery"
1119
- msgstr ""
1120
-
1121
- #. Found in remaining content header.
1122
- msgid "Step 2: Creating/Editing Galleries for the Photo Gallery."
1123
- msgstr ""
1124
-
1125
- #. Found in remaining content header.
1126
- msgid "Step 3: Creating/Editing Tags for the Photo Gallery galleries and albums."
1127
- msgstr ""
1128
-
1129
- #. Found in remaining content header.
1130
- msgid "Step 4: Creating/Editing Albums for the Photo Gallery."
1131
- msgstr ""
1132
-
1133
- #. Found in remaining content header.
1134
- msgid "Step 5: Editing Options for Photo Gallery."
1135
- msgstr ""
1136
-
1137
- #. Found in remaining content header.
1138
- msgid "Step 6: Creating/Editing Themes for different views of the Photo Gallery."
1139
- msgstr ""
1140
-
1141
- #. Found in remaining content header.
1142
- msgid "Step 7: Editing comments."
1143
- msgstr ""
1144
-
1145
- #. Found in remaining content header.
1146
- msgid "Step 8: Publishing the Created Photo Gallery."
1147
- msgstr ""
1148
-
1149
- #. Found in remaining content header.
1150
- msgid "Step 9: Publishing Photo Gallery widgets."
1151
- msgstr ""
1152
-
1153
- #. Found in remaining content header.
1154
- msgid "Step 10: Generating shortcode for the Photo Gallery."
1155
- msgstr ""
1156
-
1157
- #. Found in remaining content paragraph.
1158
- msgid ""
1159
- "1.1 Minimum requirements.<br />\n"
1160
- "Wordpress 3.4+<br />\n"
1161
- "PHP 5.x<br />\n"
1162
- "MySQL 5.x"
1163
- msgstr ""
1164
-
1165
- #. Found in remaining content paragraph.
1166
- msgid ""
1167
- "1.2 Perform a new installation.<br />\n"
1168
- "Log in to the administrator panel.<br />\n"
1169
- "Go to Plugins Add &gt; New &gt; Upload.<br />\n"
1170
- "Click <code>Choose file</code> (<code>Browse</code>) and select the Photo Gallery zip file.<br />\n"
1171
- "Click <code>Upload&amp;Install</code> button.<br />\n"
1172
- "Click <code>Activate Plugin</code> button for activating the plugin.<br />\n"
1173
- "If the installation succeeded you will see the success message. If any problem occurs, please contact us info@web-dorado.com."
1174
- msgstr ""
1175
-
1176
- #. Found in remaining content paragraph.
1177
- msgid ""
1178
- "2.1 On the left menu select Photo Gallery&gt;Add Galleries/Images&gt; Add new.<br />\n"
1179
- "2.2 Name. Specify the name of the gallery.<br />\n"
1180
- "2.3 Slug. Specify the alias in your website for the gallery.<br />\n"
1181
- "2.4 Description. Fill in the information you would like to share with the gallery. The description will be visible with some of the gallery views.<br />\n"
1182
- "2.5 Author. This indicates the author of the gallery. It automatically includes the name of the logged in user, who has added the gallery.<br />\n"
1183
- "2.6 Published. Choose whether to publish the gallery or to leave it for the further publication.<br />\n"
1184
- "2.7 Preview image. Indicate the gallery image which will be used to preview the gallery. If you leave it blank, it will automatically pick the first gallery image among the uploaded files. \n"
1185
- "2.8 Images. You can add photos to the gallery by clicking Add Images button."
1186
- msgstr ""
1187
-
1188
- #. Found in remaining content paragraph.
1189
- msgid ""
1190
- "The Photo Gallery plugin is not using standard WordPress Media Manager, instead here you will be redirected to Photo Gallery File Manager. After uploading images you should mark them and press Add button.<br />\n"
1191
- "Photo Gallery File Manager<br />\n"
1192
- "2.8.1 Up. This button will allow you to move within the taxonomy of the folder to a higher level folder to upload image from there.<br />\n"
1193
- "2.8.2 Make a directory. You can indicate the location of the directory to get images to be used in the gallery.<br />\n"
1194
- "2.8.3 Rename item. You can rename the chosen gallery images without leaving the uploader.<br />\n"
1195
- "2.8.4 Copy. You can copy images and directories to use in the galleries and albums.<br />\n"
1196
- "2.8.5 Cut. You can cut images and directories.<br />\n"
1197
- "2.8.6 Paste. You can paste copied/cut images and directories.<br />\n"
1198
- "2.8.7 Remove items. You can remove any amount of items from the list, including gallery folder, images.<br />\n"
1199
- "2.8.8 Upload files. You can upload images to your gallery from your PC and other devices using this feature. Multi-upload is also possible. To upload all images for the use in the gallery, you should first press Ctrl+A."
1200
- msgstr ""
1201
-
1202
- #. Found in remaining content paragraph.
1203
- msgid ""
1204
- "To add the images to your Gallery, you should press Add the selected images to gallery button.<br />\n"
1205
- "Important! Before uploading an image, you should provide dimensions for the generated thumbnail at the top of the Media Upload window or leave it to default value set in the Thumbnail options (Options Menu). This way the thumbnail view of the Gallery will use the specified dimension of the gallery.<br />\n"
1206
- "2.8.9 View options: View thumbnails. Displays uploaded gallery images in Thumbnail view.<br />\n"
1207
- "View list. Displays uploaded gallery images in list view."
1208
- msgstr ""
1209
-
1210
- #. Found in remaining content paragraph.
1211
- msgid ""
1212
- "Now let`s explore the individual gallery image options. Refer to the buttons on the right side and below.<br />\n"
1213
- "2.9 Set Watermark. You can apply the created watermark by checking the gallery image you want to add the watermark to and pressing the button. The watermark can be created in Options menu of the Gallery plugin. You can also add the watermark to all gallery images first selecting all gallery images and then pressing Set watermark button.<br />\n"
1214
- "2.10 Reset. You can reset the gallery images to the default by selecting multiple/all images and pressing this button. It will remove all kind of changes, including crop, rotate and watermark changes to individual images or the entire gallery as such.<br />\n"
1215
- "2.11 Show order column. You can either Drag and Drop gallery images to change the positioning of the images in the gallery or prefer order column, where you can provide numbering for the images to be displayed in a gallery. This option is more useful when you have multiple pages of images and it is not convenient to use Drag/Drop.<br />\n"
1216
- "2.12 Save images. Using this button you can save only the changes made with the images, the changes with the gallery as a whole should be saved with the upper Save button.<br />\n"
1217
- "2.13 Publish. Check the images you want to publish in the gallery and press the button.<br />\n"
1218
- "2.14 Unpublish. Check the images you want to temporary unpublish from the gallery and press the button.<br />\n"
1219
- "2.15 Delete. Check the images you want to remove from the gallery or album and press the button.<br />\n"
1220
- "2.16 Crop. You can crop the image for creating the Thumbnail for the large image. The thumbnail will be available with some of the gallery views.<br />\n"
1221
- "2.17 Rotate. You can rotate the thumbnail image. The change will also affect the larger image displayed within the gallery.<br />\n"
1222
- "2.18 Reset. If you want to return to the original image, undo crop and reset, you can use this button.<br />\n"
1223
- "2.19 Alt/Title. Provide a title for each gallery image.<br />\n"
1224
- "2.20 Description. You can additionally have a description for the gallery images to provide detailed information.<br />\n"
1225
- "2.21 Tags. Each gallery image can have a number of tags from the list of created tags.<br />\n"
1226
- "2.22 Published. Choose whether to publish or unpublish the uploaded images within the gallery.<br />\n"
1227
- "<h4>Step 3: Creating/Editing Tags for the Photo Gallery galleries and albums.</h4> \n"
1228
- "3.1 On the left menu select Photo Gallery&gt; Tags.<br />\n"
1229
- "3.2 Name. Provide a title for the tag.<br />\n"
1230
- "3.3 Slug. Specify the alias for the tag in your website.<br />\n"
1231
- "3.4 Add Tag. Press this button to add the created tag into the list.<br />\n"
1232
- "<h4>Step 4: Creating/Editing Albums for the Photo Gallery.</h4><br />\n"
1233
- "4.1 On the left menu select Photo Gallery&gt; Albums&gt; Add new.<br />\n"
1234
- "4.2 Name. Provide a name for the album.<br />\n"
1235
- "4.3 Slug. Specify the alias for the album in your website.<br />\n"
1236
- "4.4 Description. Provide a detailed description for the album.<br />\n"
1237
- "4.5 Author. The author of the album will be automatically set by the logged in user, who creates the album.<br />\n"
1238
- "4.6 Published. Choose whether to publish the album or not.<br />\n"
1239
- "4.7 Preview Image. Choose the preview image for the album. If you leave it blank it will automatically use the first image used in the album.<br />\n"
1240
- "4.8 Albums and Galleries. Choose gallery, galleries or already created albums to be used in the album. Here you can add multiple galleries and albums. There is no such limitation. \n"
1241
- "4.9 Drag/Drop. After adding the albums you will be able to use drag/drop option to set the order for the albums to be displayed.<br />\n"
1242
- "<h4>Step 5: Editing Options for Photo Gallery.</h4><br />\n"
1243
- "Here you can change default options for different views of Photo Gallery, as well as general options of the galleries and albums. You can simply navigate here choosing the corresponding tab.<br />\n"
1244
- "5.1 Global Options of Photo Gallery.<br />\n"
1245
- "5.1.1 Images directory. Provide an image directory location which will host the uploaded gallery images.<br />\n"
1246
- "5.1.2 Gallery role. Choose whether only author can make changes in the gallery or not.<br />\n"
1247
- "5.1.3 Album role. Choose whether only author can make changes in the albums or not.<br />\n"
1248
- "5.1.4 Image role. Choose whether only author can make changes in the gallery images or not.<br />\n"
1249
- "5.1.5 Show Search box. Choose whether to display a search box for the image search in galleries or not.\n"
1250
- "5.1.6 Search box width. Set the width for the search box displayed with the gallery. \n"
1251
- "5.1.7. Preload images. Choose whether to have a preload for specific number of gallery images first or have them all loaded and only then displayed in the slideshow of the gallery.\n"
1252
- "5.1.8. Count of images. Specify the number of gallery images which will be loaded before opening the slideshow. The rest of the images will be loaded during the processing of the slideshow."
1253
- msgstr ""
1254
-
1255
- #. Found in remaining content paragraph.
1256
- msgid ""
1257
- "5.2 Watermark. You can use this option to add different types of watermarks on your gallery images.<br />\n"
1258
- "5.2.1 Watermark Type. Choose what kind of advertisement you want to use from provided 2 options (text, image) or not to use watermarks in your galleries and albums.<br />\n"
1259
- "5.2.2 Text<br />\n"
1260
- "Watermark text. Provide the text which will be displayed over the gallery/album images.<br />\n"
1261
- "Watermark font size. Specify the font size of the watermark in percentage for the responsive look.<br />\n"
1262
- "Watermark font style. Specify the font family for the watermark text. There will be two default font styles to select from, but you will be able to further add more styles by inserting the fonts into the <code>fonts</code> folder in the Plugin folder.<br />\n"
1263
- "Watermark color. Select the watermark text font color.<br />\n"
1264
- "Watermark opacity. Define the level of opacity for the watermark, providing its percentage.<br />\n"
1265
- "Watermark position. Choose the positioning of the watermark from the available 9 options.<br />\n"
1266
- "5.2.3 Image<br />\n"
1267
- "Watermark URL. Provide the absolute URL of the image which will be used for the watermark.<br />\n"
1268
- "Watermark image size. Define the size (in percentage for the responsive look) of the image used for the watermark.<br />\n"
1269
- "Watermark position. Choose the positioning of the watermark from the available 9 options."
1270
- msgstr ""
1271
-
1272
- #. Found in remaining content paragraph.
1273
- msgid ""
1274
- "5.3. Advertisement. You can use this option to add advertisement over the gallery or album images.<br />\n"
1275
- "5.3.1 Advertisement Type. Choose what kind of advertisement you want to use from the provided 2 options (text, image) or not to use ads in your galleries and albums.<br />\n"
1276
- "5.3.2 Text<br />\n"
1277
- "Advertisement text. Provide the text which will be displayed over the gallery/album images.<br />\n"
1278
- "Advertisement link. Provide the link, which will open in a new window, when the user clicks on advertisement text.<br />\n"
1279
- "Advertisement font size. Specify the font size of the advertisement text.<br />\n"
1280
- "Advertisement font style. Specify the font family for the text used with the advertisement.<br />\n"
1281
- "Advertisement color. Select the font color which will be used with the advertisements.<br />\n"
1282
- "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1283
- "Advertisement position. Choose the positioning of the advertisement from the available 9 options.<br />\n"
1284
- "5.3.3 Image<br />\n"
1285
- "Advertisement URL. Provide the absolute URL of the image which will be used for the advertisement.<br />\n"
1286
- "Advertisement link. Provide the link, which will open in a new window, when the user clicks on the advertisement image.<br />\n"
1287
- "Advertisement dimensions. Define the dimensions of the image used for the advertisement.<br />\n"
1288
- "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1289
- "Advertisement position. Choose the positioning of the advertisement from the available 9 options."
1290
- msgstr ""
1291
-
1292
- #. Found in remaining content paragraph.
1293
- msgid ""
1294
- "5.4 Lightbox<br />\n"
1295
- "5.4.1 Ligthbox dimensions. Define the width and height of the lightbox which will be displayed with some of the gallery and album views.<br />\n"
1296
- "5.4.2 Lightbox effect. Select the effect which will be applied to the slideshow of gallry images in the lightbox.<br />\n"
1297
- "5.4.3 Interval. Provide the time interval between the display of slideshow images in seconds.<br />\n"
1298
- "5.4.4 Enable filmstrip. Choose whether to include the filmstrip of gallery or album images in the lightbox or not.<br />\n"
1299
- "5.4.5 Filmstrip height. Define the height of the filmstrip in pixels.<br />\n"
1300
- "5.4.6 Enable control buttons. Choose whether to display control buttons in the lightbox or not.<br />\n"
1301
- "5.4.7 Enable fullscreen. Choose whether to have a possibility of entering Fullscreen from the lightbox or not.\n"
1302
- "5.4.8 Enable info. Choose whether to have possibility of displaying gallery image information (Title and description) in this view or not.\n"
1303
- "5.4.9 Display info by default. Choose whether to display gallery image title by default when opening the lightbox or not. The image can be hidden hitting info button. \n"
1304
- "5.4.10 Enable rating. Choose whether to display rating possibility for the gallery images or not.<br />\n"
1305
- "5.4.11 Enable comments. Choose whether to display comments with the gallery images or not.<br />\n"
1306
- "5.4.12 Enable Captcha for comments. Choose whether to have Captcha field for the possibility of adding comments as a human verification or not.<br />\n"
1307
- "5.4.13 Enable original image display button. Choose whether to allow displaying original images upon clicking the button or not.<br />\n"
1308
- "5.4.14 Enable image download. Choose whether to allow downloading the gallery images or not.<br />\n"
1309
- "5.4.15 Enable Facebook button. Choose whether to display Facebook share button with the gallery images or not.<br />\n"
1310
- "5.4.16 Enable Twitter button. Choose whether to display twit button with the gallery images or not.<br />\n"
1311
- "5.4.17 Enable Google+ button. Choose whether to display Google+ share button with the gallery images or not.\n"
1312
- "5.4.18 Enable Pinterest button. Choose whether to display Pinterest pin button with the gallery images or not.\n"
1313
- "5.4.19 Enable Tumblr button. Choose whether to display Tumblr share button with the gallery images or not."
1314
- msgstr ""
1315
-
1316
- #. Found in remaining content paragraph.
1317
- msgid ""
1318
- "5.5 Album Options<br />\n"
1319
- "5.5.1 Number of album columns. Provide the maximum number of columns to be displayed within a single album.<br />\n"
1320
- "5.5.2 Albums per page. Provide the maximum number of albums available in a single page.<br />\n"
1321
- "5.5.3 Enable pagination. Choose whether to provide pagination for the albums or not.<br />\n"
1322
- "5.5.4 Show album title. Choose whether to display the album title or have it displayed only when hovered.<br />\n"
1323
- "5.5.5 Enable extended album description. Choose whether to have extended album view option or not.<br />\n"
1324
- "5.5.6 Album thumbnail dimensions. Define the width and height of the album thumbnails.<br />\n"
1325
- "5.5.7 Extended album height. Define the height of the album in extended album view."
1326
- msgstr ""
1327
-
1328
- #. Found in remaining content paragraph.
1329
- msgid ""
1330
- "5.6 Slideshow<br />\n"
1331
- "5.6.1 Slideshow effect. Select the slideshow effect to be applied to the galleries.<br />\n"
1332
- "5.6.2 Interval. Provide the time interval between the slideshow images in seconds.<br />\n"
1333
- "5.6.3 Slideshow dimensions. Define the width and height of the slideshow.<br />\n"
1334
- "5.6.4 Enable autoplay. Choose either to have the slideshow auto played or allow the users to change the images with a click.<br />\n"
1335
- "5.6.5 Enable shuffle. Choose whether to have the gallery images randomized in the slideshow or not.<br />\n"
1336
- "5.6.6 Enable control buttons. Choose whether to display control buttons with image slideshow views or not.<br />\n"
1337
- "5.6.7 Enable slideshow filmstrip. Choose whether to include the filmstrip of gallery images in the slideshow or not.<br />\n"
1338
- "5.6.8 Slideshow filmstrip height. Define the height for the filmstrip for the slideshow.<br />\n"
1339
- "5.6.9 Enable image title. Choose whether to display the titles for the slideshow images or not.<br />\n"
1340
- "5.6.10 Title position. Select the positioning for the image title from the provided options.<br />\n"
1341
- "5.6.11 Enable image description. Choose whether to have an image description or not.<br />\n"
1342
- "5.6.12 Description position. Select the positioning for the image description from the provided options.<br />\n"
1343
- "5.6.13 Enable slideshow music. Choose whether to have an audio track for the slideshow view or not.<br />\n"
1344
- "5.6.14 Music URL. Provide the URL of the track which will be played alongside the slideshow."
1345
- msgstr ""
1346
-
1347
- #. Found in remaining content paragraph.
1348
- msgid ""
1349
- "5.7 Thumbnail Options<br />\n"
1350
- "5.7.1 Number of image columns. Provide the maximum number of gallery image columns to be displayed with Thumbnails view.<br />\n"
1351
- "5.7.2 Images per page. Provide the maximum number of gallery images to be displayed in a single page.<br />\n"
1352
- "5.7.3 Show image title. Choose whether to always display the image title, have it displayed only when hovered or never display it.<br />\n"
1353
- "5.7.4 Generated thumbnail dimensions. Provide the dimensions of the thumbnail image which will be generated from the original image.<br />\n"
1354
- "5.7.5 Frontend thumbnail dimensions. Provide the dimensions of the image, which will be displayed in the front end as a thumbnail. This should be smaller than the generated thumbnail to keep the quality of the image.<br />\n"
1355
- "5.7.6 Thumbnail dimensions. Specify the width and height of the gallery image thumbnails.<br />\n"
1356
- "5.7.7 Enable image pagination. Choose whether to have image pagination or not."
1357
- msgstr ""
1358
-
1359
- #. Found in remaining content paragraph.
1360
- msgid ""
1361
- "5.8 Image Options<br />\n"
1362
- "5.7.1 Enable image title for Image Browser view. Choose whether to display gallery image titles for the Image Browser view or not.<br />\n"
1363
- "5.8.2 Enable image description for Image Browser view. Choose whether to have gallery image descriptions for the Image Browser view or not.<br />\n"
1364
- "5.8.3 Image width. Define the gallery image width for the Image Browser view option.<br />\n"
1365
- "5.8.4 Enable image title for Blog Style view. Choose whether to have gallery image titles in Blog Style view or not.<br />\n"
1366
- "5.8.5 Image width for Blog Style view. Define the galllery image width for the Blog Style view.<br />\n"
1367
- "5.8.6 Images per page in Blog Style view. Specify the number of gallery images to be displayed in a single page for the Blog Style view.<br />\n"
1368
- "5.8.7 Enable Pagination for Blog Style view. Choose whether to have pagination for the Blog Style view or not."
1369
- msgstr ""
1370
-
1371
- #. Found in remaining content paragraph.
1372
- msgid ""
1373
- "Use one of the default Photo Gallery themes or click <code>Add new</code> button to create a new theme.<br />\n"
1374
- "6.1 Thumbnails.<br />\n"
1375
- "6.1.1 Name. Provide a name for the theme.<br />\n"
1376
- "6.1.2 Margin. Define the space around the thumbnail in pixels.<br />\n"
1377
- "6.1.3 Padding. Define the padding of the thumbnail.<br />\n"
1378
- "6.1.4 Border width. Outline the border width of the thumbnail.<br />\n"
1379
- "6.1.5 Border style. Choose the style to be applied to the border of the thumbnails.<br />\n"
1380
- "6.1.6 Border color. Select the border color for the thumbnails.<br />\n"
1381
- "6.1.7 Border radius. Define the border radius in CSS type values.<br />\n"
1382
- "6.1.8 Shadow. Change the shadow of the image using CSS type values.<br />\n"
1383
- "6.1.9 Thumbnail background color. Choose the background color for the thumbnails.<br />\n"
1384
- "6.1.10 Thumbnail transparency. Specify the level of the transparency you want to apply to the thumbnails.<br />\n"
1385
- "6.1.11 Full background color. Choose the background color for the overall thumbnail view box.<br />\n"
1386
- "6.1.12 Full background transparency. Specify the level of the transparency you want to apply to the overall thumbnail view box.<br />\n"
1387
- "6.1.13 Alignment. Select the alignment of the thumbnail box.\n"
1388
- "6.1.14 Title position. Choose the position for the gallery title. \n"
1389
- "6.1.15 Title font size. Define the font size for the gallery image title.<br />\n"
1390
- "6.1.16 Title font color. Choose the gallery image title font color.<br />\n"
1391
- "6.1.17 Title font family. Choose the font family for the gallery image title.\n"
1392
- "6.1.18 Title font weight. Choose the font weight for the gallery image title.<br />\n"
1393
- "6.1.19 Title box shadow. Using CSS type values set the box shadow for the gallery image title.<br />\n"
1394
- "6.1.20 Title margin. Set the gallery image title margin using CSS type values."
1395
- msgstr ""
1396
-
1397
- #. Found in remaining content paragraph.
1398
- msgid ""
1399
- "6.2 Masonry<br />\n"
1400
- "6.2.1 Name. Provide a name for the theme.<br />\n"
1401
- "6.2.2 Padding. Define the padding of the individual gallery images.<br />\n"
1402
- "6.2.3 Border width. Define the border with for the individual gallery images.<br />\n"
1403
- "6.2.4 Border style. Select the style of the border from the provided options.<br />\n"
1404
- "6.2.5 Border color. Select the border color for the border.<br />\n"
1405
- "6.2.6 Border radius. Define the border radius for the individual gallery images using CSS type values.<br />\n"
1406
- "6.2.7 Transparency. Specify the level of transparency for the individual gallery images.<br />\n"
1407
- "6.2.8 Background color. Select a background color for the overall masonry box.<br />\n"
1408
- "6.2.9 Background transparency. Specify the background transparency level.<br />\n"
1409
- "6.2.10 Alignment. Choose the alignment of the masonry box in the page/post.<br />\n"
1410
- "6.2.11 Hover effect. Select the effect of the individual gallery images when hovered or chose to have none.<br />\n"
1411
- "6.2.12 Hover effect value. Specify the value of the chosen hover effect using CSS type values.<br />\n"
1412
- "6.2.13 Transition. Choose whether to have a transition with hover effects or not."
1413
- msgstr ""
1414
-
1415
- #. Found in remaining content paragraph.
1416
- msgid ""
1417
- "6.3 Slideshow<br />\n"
1418
- "6.3.1 Name. Provide a name for the theme.<br />\n"
1419
- "6.3.2 Background color. Set the background color for the slideshow view.<br />\n"
1420
- "6.3.3 Right, left buttons size. Determine the size for the Right and Left buttons.<br />\n"
1421
- "6.3.4 Play, pause buttons size. Determine the size for Play and Pause buttons.<br />\n"
1422
- "6.3.5 Buttons color. Pick the button color for the slideshow view.<br />\n"
1423
- "6.3.6 Buttons transparency. Specify the level of transparency for the buttons.<br />\n"
1424
- "6.3.7 Buttons hover color. Set the color for the buttons when hovered.<br />\n"
1425
- "6.3.8 Right, left buttons width. Define the width for the Right and Left buttons.<br />\n"
1426
- "6.3.9 Right, left buttons height. Define the height for the Right and Left buttons.<br />\n"
1427
- "6.3.10 Right, left buttons background color. Choose the background color for the Right and Left buttons.<br />\n"
1428
- "6.3.11 Right, left buttons border width. Set the border width for Right and Left buttons.<br />\n"
1429
- "6.3.12 Right, left buttons border style. Select the border style for Right and Left buttons.<br />\n"
1430
- "6.3.13 Right, left buttons border color. Pick the Right and Left button border color.<br />\n"
1431
- "6.3.14 Right, left buttons border radius. Define the Right and Left button border radius.<br />\n"
1432
- "6.3.15 Right, left buttons style. Choose a style to be applied to Right and Left buttons.<br />\n"
1433
- "6.3.16 Right, left buttons box shadow. Determine the shadow level for the Right and Left buttons.<br />\n"
1434
- "6.3.17 Filmstrip position. Specify the filmstrip position for the slideshow view.<br />\n"
1435
- "6.3.18 Filmstrip margin. Set the margin for the filmstrip using CSS type values.<br />\n"
1436
- "6.3.19 Filmstrip border width. Set the border width for the slideshow.<br />\n"
1437
- "6.3.20 Filmstrip border style. Specify the border style for the filmstrip.<br />\n"
1438
- "6.3.21 Filmstrip border color. Choose the border color for the filmstrip.<br />\n"
1439
- "6.3.22 Filmstrip border radius . Define the border radius for the filmstrip.<br />\n"
1440
- "6.3.23 Filmstrip active border width. Set the border width of the filmstrip item, which is currently displayed.<br />\n"
1441
- "6.3.24 Filmstrip active border color. Select the border color of the filmstrip item, which is currently displayed.<br />\n"
1442
- "6.3.25 Filmstrip deactive transparency. Specify the transparency level of the deactived filmstrip.<br />\n"
1443
- "6.3.26 Filmstrip right, left buttons background color. Choose the background color for the Right and Left buttons used with the filmstrip.<br />\n"
1444
- "6.3.27 Filmstrip right, left buttons color. Choose the button color for the Right and Left buttons used with the filmstrip.<br />\n"
1445
- "6.3.28 Filmstrip right, left buttons size. Determine the button size for the Right and Left buttons used with the filmstrip.<br />\n"
1446
- "6.3.29 Title background color. Set the background color for the slideshow image title.<br />\n"
1447
- "6.3.30 Title transparency. Set the level of transparency for the slideshow image title. 6.3.31 Title border radius. Define the border radius for the slideshow image title.<br />\n"
1448
- "6.3.32 Title padding. Set the slideshow image title padding using CSS type values.<br />\n"
1449
- "6.3.33 Title font size. Define the font size for the slideshow image title.<br />\n"
1450
- "6.3.34 Title color. Set the slideshow image title color.<br />\n"
1451
- "6.3.35 Title font family. Determine the font family for the slideshow image title.<br />\n"
1452
- "6.3.36 Description background color. Choose the background color for the slideshow image description.<br />\n"
1453
- "6.3.37 Description transparency. Select the level of transparency for the slideshow image description.<br />\n"
1454
- "6.3.38 Description border radius. Set the border radius for the slideshow image description.<br />\n"
1455
- "6.3.39 Description padding. Set the padding for the slideshow image description.<br />\n"
1456
- "6.3.40 Description font size. Define the font size for the slideshow image description.<br />\n"
1457
- "6.3.41 Description color. Choose the color for the slideshow image description.<br />\n"
1458
- "6.3.42 Description font family. Choose the font family for the slideshow image description.<br />\n"
1459
- "6.3.43 Slider bullet width. Set the slider bullet width for the slideshow.<br />\n"
1460
- "6.3.44 Slider bullet height. Set the slider bullet height for the slideshow.<br />\n"
1461
- "6.3.45 Slider bullet border radius. Set the border radius for the slider bullet using CSS type values.<br />\n"
1462
- "6.3.46 Slider bullet background color. Choose the background color for the slider bullet.<br />\n"
1463
- "6.3.47 Slider bullet margin. Set the slider bullet margin using CSS type values.<br />\n"
1464
- "6.3.48 Slider bullet active background color. Select the background color for the active slider bullet.<br />\n"
1465
- "6.3.49 Slider bullet active border width. Set the border width for the active slider bullet.<br />\n"
1466
- "6.3.50 Slider bullet active border color. Choose the border color for the active slider bullet."
1467
- msgstr ""
1468
-
1469
- #. Found in remaining content paragraph.
1470
- msgid ""
1471
- "6.4 Image Browser<br />\n"
1472
- "6.4.1 Name. Provide a name for the theme.<br />\n"
1473
- "6.4.2 Full padding. Using CSS type values set padding for the overall image browser box.<br />\n"
1474
- "6.4.3 Full background color. Select the overall background color for the image browser view.<br />\n"
1475
- "6.4.4 Full background transparency. Determine the level of background transparency for the overall image browser box.<br />\n"
1476
- "6.4.5 Full border radius. Define the border radius of the overall image browse box using CSS type values.<br />\n"
1477
- "6.4.6 Full border width. Set the overall border width in pixels.<br />\n"
1478
- "6.4.7 Full border style. Choose the overall border style.<br />\n"
1479
- "6.4.8 Full border color. Choose the overall border color.<br />\n"
1480
- "6.4.9 Alignment. Determine the alignment of the image browser box in the page/post.<br />\n"
1481
- "6.4.10 Margin. Set overall margins of the image browser box using CSS type values.<br />\n"
1482
- "6.4.11 Padding. Set overall padding for the image browser box using CSS type values.<br />\n"
1483
- "6.4.12 Border width. Define the border with for the images.<br />\n"
1484
- "6.4.13 Border style. Select the border style for the images.<br />\n"
1485
- "6.4.14 Border color. Choose the border color for the images.<br />\n"
1486
- "6.4.15 Border radius. Define the border radius for the images.<br />\n"
1487
- "6.4.16 Background color. Select the background color for the image browser box.<br />\n"
1488
- "6.4.17 Background transparency. Specify the transparency level of the overall background.<br />\n"
1489
- "6.4.18 Box shadow. Set the shadow values for the image browser box.<br />\n"
1490
- "6.4.19 Title alignment. Define the alignment for the gallery image titles.<br />\n"
1491
- "6.4.20 Font size. Set the font size for the text elements of the gallery images, e.g. title and description.<br />\n"
1492
- "6.4.21 Font color. Choose the font color for the text elements of the images, e.g. title and description.<br />\n"
1493
- "6.4.22 Font family. Choose the font family to be used for the image text elements, e.g. title and description.<br />\n"
1494
- "6.4.23 Description margin. Using CSS type values set gallery image description padding.<br />\n"
1495
- "6.4.24 Description padding. Using CSS type values set gallery image description padding.<br />\n"
1496
- "6.4.25 Description border width. Define the border width for the gallery image descriptions.<br />\n"
1497
- "6.4.26 Description border style. Select the border style for the gallery image description in image browser view.<br />\n"
1498
- "6.4.27 Description border color. Choose the border color for the gallery image description in image browser view.<br />\n"
1499
- "6.4.28 Description border radius. Define the border radius for the gallery image description in image browser view.<br />\n"
1500
- "6.4.29 Description background color. Select the background color for the galleryimage description in the image browser view."
1501
- msgstr ""
1502
-
1503
- #. Found in remaining content paragraph.
1504
- msgid ""
1505
- "6.5 Compact Album<br />\n"
1506
- "6.5.1 Name. Provide a name for the theme.<br />\n"
1507
- "6.5.2 Padding. Define the padding for the compact album preview image.<br />\n"
1508
- "6.5.3 Margin. Define the margin for the album preview image.<br />\n"
1509
- "6.5.4 Border width. Set the border width for the album preview image.<br />\n"
1510
- "6.5.5 Border style. Set the border style for the album preview image.<br />\n"
1511
- "6.5.6 Border color. Select the color for the border.<br />\n"
1512
- "6.5.7 Border radius. Using CSS type values define the border radius of the preview image.<br />\n"
1513
- "6.5.8 Shadow. Set a preview image shadow using CSS type values.<br />\n"
1514
- "6.5.9 Hover effect. Choose an effect to be applied to the preview image when hovered or avoid having one.<br />\n"
1515
- "6.5.10 Hover effect value. Set the CSS type value for the chosen hover effect.<br />\n"
1516
- "6.5.11 Thumbnail transition. Choose whether to have a transition for the thumbnail or not.<br />\n"
1517
- "6.5.12 Thumbnail background color. Select a background color the preview thumbnail image.<br />\n"
1518
- "6.5.13 Thumbnail transparency. Select the level of transparency for the preview thumbnail image.<br />\n"
1519
- "6.5.14 Full background color. Select a background color the overall compact album view.<br />\n"
1520
- "6.5.15 Full background transparency. Select the level of transparency for the background color the overall compact album view.<br />\n"
1521
- "6.5.16 Alignment. Define the alignment of the compact album in the page or post.<br />\n"
1522
- "6.5.17 Title font size. Define the font size for the album title.<br />\n"
1523
- "6.5.18 Title font color. Choose the album title font color.<br />\n"
1524
- "6.5.19 Title font family. Choose the font family for the album title.<br />\n"
1525
- "6.5.20 Title font weight. Choose the font weight for the album title.<br />\n"
1526
- "6.5.21 Title box shadow. Using CSS type values set the box shadow for the album title.<br />\n"
1527
- "6.5.22 Title margin. Set the compact album title margin using CSS type values.<br />\n"
1528
- "6.5.23 Font size. Define the font size for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1529
- "6.5.24 Font color. Choose the font color for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1530
- "6.5.25 Font family. Select the font family for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1531
- "6.5.26 Font weight. Choose the font weight for the additional texts (e.g. album is empty) and Back button label.<br />\n"
1532
- "6.5.27 Back padding. Set padding for the Back button."
1533
- msgstr ""
1534
-
1535
- #. Found in remaining content paragraph.
1536
- msgid ""
1537
- "6.6 Extended Album<br />\n"
1538
- "6.6.1 Name. Provide a name for the theme.<br />\n"
1539
- "6.6.2 Thumbnail margin. Set the extended album thumbnail margin using CSS type values.<br />\n"
1540
- "6.6.3 Thumbnail padding. Set the extended album thumbnail padding using CSS type values.<br />\n"
1541
- "6.6.4 Thumbnail border width. Define the border width for the album preview image.<br />\n"
1542
- "6.6.5 Thumbnail border style. Define the border style for the album preview image.<br />\n"
1543
- "6.6.6 Thumbnail border color. Choose the border color for the album preview image.<br />\n"
1544
- "6.6.7 Thumbnail border radius. Define the border radius for the album thumbnail.<br />\n"
1545
- "6.6.8 Thumbnail box shadow. Specify the shadow for the preview thumbnail using CSS type values.<br />\n"
1546
- "6.6.9 Thumbnail transition. Choose whether to have a transition for the preview thumbnail or not.<br />\n"
1547
- "6.6.10 Thumbnail alignment. Specify the positioning of the album thumbnail in the page or post.<br />\n"
1548
- "6.6.11 Thumbnail transparent. Choose the transparency level for the thumbnail.<br />\n"
1549
- "6.6.12 Thumbnail hover effect. Choose the effect to be applied to the image when hovered or choose to have none.<br />\n"
1550
- "6.6.13 Hover effect value. Give CSS type values to the selected hover effect for the thumbnail image.<br />\n"
1551
- "6.6.14 Thumbnail background color. Select a background color for the thumbnail image.<br />\n"
1552
- "6.6.15 Thumbnails background color. Select a background color for the overall view.<br />\n"
1553
- "6.6.16 Thumbnail background transparency. Specify the level of transparency for the thumbnail.<br />\n"
1554
- "6.6.17 Thumbnail div padding. Set padding for the thumbnail container using CSS type values.<br />\n"
1555
- "6.6.18 Thumbnail div background color. Choose the background color for the thumbnail container.<br />\n"
1556
- "6.6.19 Thumbnail div border width. Set the border width for the thumbnail container.<br />\n"
1557
- "6.6.20 Thumbnail div border style. Select the border style for the thumbnail container.<br />\n"
1558
- "6.6.21 Thumbnail div border color. Select the border color for the thumbnail container.<br />\n"
1559
- "6.6.22 Thumbnail div border radius. Using CSS type values set the thumbnail container radius.<br />\n"
1560
- "6.6.23 Margin. Set the margin for the overall extended album box.<br />\n"
1561
- "6.6.24 Padding. Set padding for the overall extended album box.<br />\n"
1562
- "6.6.25 Background color. Select the background color for the overall extended album box.<br />\n"
1563
- "6.6.26 Background transparency. Select the level of transparency for the overall background.<br />\n"
1564
- "6.6.27 Border radius. Set the overall border radius using CSS type values.<br />\n"
1565
- "6.6.28 Separator width. Set the width for the image separators.<br />\n"
1566
- "6.6.29 Separator style. Select the style for the image separator lines.<br />\n"
1567
- "6.6.30 Separator color. Select the color for the image separators.<br />\n"
1568
- "6.6.31 Back padding. Set padding for the Back button.<br />\n"
1569
- "6.6.32 Back font size. Define the font size for the Back button.<br />\n"
1570
- "6.6.33 Back font color. Select the font color for the Back button.<br />\n"
1571
- "6.6.34 Back font family. Choose the font family for the Back button label.<br />\n"
1572
- "6.6.35 Back font weight. Select the font weight for the Back button label.<br />\n"
1573
- "6.6.36 Text div padding. Set padding for the text container (title and description).<br />\n"
1574
- "6.6.37 Text div border width. Define the width for the text container (title and description).<br />\n"
1575
- "6.6.38 Text border style. Select the border style for the text container (title and description).<br />\n"
1576
- "6.6.39 Text border color. Choose the border color for the text container (title and description).<br />\n"
1577
- "6.6.40 Text div border radius. Set the border radius for the text container (title and description) using CSS type values.<br />\n"
1578
- "6.6.41 Text background color. Select the background color for the text container (title and description).<br />\n"
1579
- "6.6.42 Title margin. Set the album title margin using CSS type values.<br />\n"
1580
- "6.6.43 Title padding. Set the album title padding using CSS type values.<br />\n"
1581
- "6.6.44 Title border width. Specify the album title border width.<br />\n"
1582
- "6.6.45 Title border style. Select the album title border style.<br />\n"
1583
- "6.6.46 Title border color. Choose the album title border color.<br />\n"
1584
- "6.6.47 Title font size. Set the size for the album title.<br />\n"
1585
- "6.6.48 Title font color. Choose the font color for the album title text.<br />\n"
1586
- "6.6.49 Title font family. Choose the font family for the album title text.<br />\n"
1587
- "6.6.50 Title font weight. Select the font weight for the album title.<br />\n"
1588
- "6.6.51 Description padding. Define the album description padding using CSS type values.<br />\n"
1589
- "6.6.52 Description border width. Set the album description border width.<br />\n"
1590
- "6.6.53 Description border style. Choose the album description border style.<br />\n"
1591
- "6.6.54 Description border color. Select the album description border color.<br />\n"
1592
- "6.6.55 Description font size. Set the size for the album description.<br />\n"
1593
- "6.6.56 Description font color. Choose the font color for the album description.<br />\n"
1594
- "6.6.57 Description font family. Choose the font family for the album description.<br />\n"
1595
- "6.6.58 Description font weight. Set the font weight for the album description text.<br />\n"
1596
- "6.6.59 Description more size. Define the size for the More button in the description.<br />\n"
1597
- "6.6.60 Description more color. Choose the color for the More button in the description."
1598
- msgstr ""
1599
-
1600
- #. Found in remaining content paragraph.
1601
- msgid ""
1602
- "6.7 Blog Style<br />\n"
1603
- "6.7.1 Name. Provide a name for the theme.<br />\n"
1604
- "6.7.2 Background color. Select the overall background color.<br />\n"
1605
- "6.7.3 Background transparency. Specify the level of transparency for the overall background.<br />\n"
1606
- "6.7.4 Alignment. Choose the overall alignment.<br />\n"
1607
- "6.7.5 Margin. Set the view margin using CSS type values.<br />\n"
1608
- "6.7.6 Padding. Set the view padding using CSS type values.<br />\n"
1609
- "6.7.7 Box shadow. Set the view box shadow using CSS type values.<br />\n"
1610
- "6.7.8 Font family. Choose the font family for the Blog Style view texts.<br />\n"
1611
- "6.7.9 Font size. Set the font size for the Blog Style view texts.<br />\n"
1612
- "6.7.10 Font color. Select the font color for the Blog Style view texts.<br />\n"
1613
- "6.7.11 Border width. Set the image border width in pixels.<br />\n"
1614
- "6.7.12 Border style. Select the image border style.<br />\n"
1615
- "6.7.13 Border color. Choose the image border color.<br />\n"
1616
- "6.7.14 Border radius. Set the image border radius using CSS type values.<br />\n"
1617
- "6.7.15 Buttons and title margin. Set the buttons (social media sharing and comments) and title margins using CSS type values.<br />\n"
1618
- "6.7.16 Buttons size. Set the buttons (social media sharing and comments) size in pixels.<br />\n"
1619
- "6.7.17 Buttons color. Select the buttons (social media sharing and comments) color.<br />\n"
1620
- "6.7.18 Buttons and title border width. Set the border width for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1621
- "6.7.19 Buttons and title border style. Select the border style for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1622
- "6.7.20 Buttons and title border color. Select the border color for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1623
- "6.7.21 Buttons and title border radius. Set the border radius for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1624
- "6.7.22 Buttons and title background color. Select the background color for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1625
- "6.7.23 Buttons and title background transparency. Set the level of the background transparency for the buttons (social media sharing and comments) and gallery image title.<br />\n"
1626
- "6.7.24 Buttons or title alignment. Choose an alignment for either buttons or title. The second option will be adjusted automatically."
1627
- msgstr ""
1628
-
1629
- #. Found in remaining content paragraph.
1630
- msgid ""
1631
- "6.8 Lightbox\n"
1632
- "6.8.1 Name. Provide a name for the theme.\n"
1633
- "6.8.2 Overlay background color. Choose the background color for the gallery image background overlay. \n"
1634
- "6.8.3 Overlay background transparency. Select the level of transparency for the background overlay. \n"
1635
- "6.8.4 Lightbox background color. Select the overall background color for the lightbox. \n"
1636
- "6.8.5 Control buttons height. Set the height for the control buttons in the lightbox.\n"
1637
- "6.8.6 Control buttons margin (top). Set the top margin for the control buttons in the lightbox.\n"
1638
- "6.8.7 Control buttons margin (left). Set the left margin for the control buttons in the lightbox.\n"
1639
- "6.8.8 Control buttons position. Choose the position for the control buttons over the gallery images. \n"
1640
- "6.8.9 Control buttons background color. Choose the background color for the control buttons of the gallery images.\n"
1641
- "6.8.10 Control buttons container border radius. Set the border radius for the control buttons container.\n"
1642
- "6.8.11 Control buttons container background transparency. Choose the transparency level for the control buttons container.\n"
1643
- "6.8.12 Control buttons alignment. Set the positioning of the control buttons over the gallery images. \n"
1644
- "6.8.13 Control buttons color. Choose the color to use for the control buttons.\n"
1645
- "6.8.14 Control buttons transparency. Choose the level of transparency for the control buttons.\n"
1646
- "6.8.15 Toggle button height. Set the height for the toggle button.\n"
1647
- "6.8.16 Toggle button width. Set the width for the toggle button. \n"
1648
- "6.8.17 Close button border radius. Define the border radius for the Right and Left buttons. \n"
1649
- "6.8.18 Close button border width. Set the border width for the Close button.\n"
1650
- "6.8.19 Close button border style. Choose the border style for the Close button.\n"
1651
- "6.8.20 Close button border color. Select the border color for the Close button. \n"
1652
- "6.8.21 Close button box shadow. Set the box shadow for the Close button. \n"
1653
- "6.8.22 Close button background color. Select Close button background color. \n"
1654
- "6.8.23 Close button transparency. Choose the level of transparency for the Close button. \n"
1655
- "6.8.24 Close button width. Set the Close button width.\n"
1656
- "6.8.25 Close button height. Set the Close button height. \n"
1657
- "6.8.26 Close button top. Set the margin between the top border and the Close button. \n"
1658
- "6.8.27 Close button right. Set the margin between the right border and the Close button. \n"
1659
- "6.8.28 Close button size. Define the Close button size in pixels. \n"
1660
- "6.8.29 Close button color. Choose a color for the Close button. \n"
1661
- "6.8.30 Fullscreen close button color. Choose a color for the Fullscreen exit button. \n"
1662
- "6.8.31 Share buttons color. Choose a color to be applied to all Social share buttons used with the view.\n"
1663
- "6.8.32 Right, left buttons style. Choose the style for the Right and Left buttons. \n"
1664
- "6.8.33 Right, left buttons background color. Select the background color for the Right and Left buttons. \n"
1665
- "6.8.34 Right, left buttons transparency. Select the level of transparency for the Right and Left buttons.\n"
1666
- "6.8.35 Right, left buttons box shadow. Set the Right and Left buttons box shadow using CSS type values. \n"
1667
- "6.8.36 Right, left buttons height. Set the height for the Right and Left buttons. \n"
1668
- "6.8.37 Right, left buttons width. Set the width for the Right and Left buttons. \n"
1669
- "6.8.38 Right, left buttons size. Define the size for the Right and Left buttons. \n"
1670
- "6.8.39 Right, left, close buttons hover color. Choose the Right, Left and Close buttons color when hovered.\n"
1671
- "6.8.40 Right, left buttons color. Choose the Right and Left buttons color.\n"
1672
- "6.8.41 Right, left buttons border radius. Set the border radius for the Right and Left buttons. \n"
1673
- "6.8.42 Right, left buttons border width. Set the border width for the Right and Left buttons. \n"
1674
- "6.8.43 Right, left buttons border style. Choose the border style for the Right and Left buttons. \n"
1675
- "6.8.44 Right, left buttons border color. Choose the border color for the Right and Left buttons. \n"
1676
- "6.8.45 Filmstrip position. Set the filmstrip position in the lightbox. \n"
1677
- "6.8.46 Filmstrip thumbnail margin. Specify the margin for the filmstrip image using CSS type values. \n"
1678
- "6.8.47 Filmstrip thumbnail border width. Set the border width for the lightbox filmstrip.\n"
1679
- "6.8.48 Filmstrip thumbnail border style. Choose the border style for the lightbox filmstrip.\n"
1680
- "6.8.49 Filmstrip thumbnail border color. Select the border color for the lightbox filmstrip. \n"
1681
- "6.8.50 Filmstrip thumbnail border radius. Set the lightbox filmstrip border radius using CSS type values.\n"
1682
- "6.8.51 Filmstrip thumbnail active border width. Set the border width for the lightbox filmstrip image which is currently displayed.\n"
1683
- "6.8.52 Filmstrip thumbnail active border color. Choose the border style for the lightbox filmstrip image which is currently displayed.\n"
1684
- "6.8.53 Filmstrip thumbnail deactive transparency. Choose the transparency level of the thumbnails except the currently displayed one. \n"
1685
- "6.8.54 Filmstrip right, left buttons size. Define the button size for the Right and Left buttons of the filmstrip. \n"
1686
- "6.8.55 Filmstrip right, left buttons color. Select the button color for the Right and Left buttons of the filmstrip. \n"
1687
- "6.8.56 Filmstrip right, left button background color. Select the button background color for the Right and Left buttons of the filmstrip. \n"
1688
- "6.8.57 Rating position. Set the position for the rating icons over the gallery images.\n"
1689
- "6.8.58 Rating alignment. Set the alignment for the rating icon.\n"
1690
- "6.8.59 Rating icon. Select the rating icon among six possible options.\n"
1691
- "6.8.60 Rating color. Choose the color for the selected rating icon.\n"
1692
- "6.8.61 Rating hover color. Choose the color for the selecting rating icon range when hovered.<br />\n"
1693
- "6.8.62 Rating size. Define the rating dimensions.\n"
1694
- "6.8.63 Rating icon count. Set the amount of the rating symbols to be displayed.\n"
1695
- "6.8.64 Rating padding. Set the padding for the rating.\n"
1696
- "6.8.65 Hit counter position. Set the position for the hit counter.\n"
1697
- "6.8.66 Hit counter alignment. Set the alignment for the hit counter.\n"
1698
- "6.8.67 Hit counter background color. Choose the background color for the hit counter box.\n"
1699
- "6.8.68 Hit counter background transparency. Define the level of the background transparency for the hit counter box.\n"
1700
- "6.8.69 Hit counter border width. Set the border width for the hit counter box.\n"
1701
- "6.8.70 Hit counter border style. Specify the border style for the hit counter box.\n"
1702
- "6.8.71 Hit counter border color. Choose the border color for the hit counter box.\n"
1703
- "6.8.72 Hit counter border radius. Set the border radius for the hit counter box.\n"
1704
- "6.8.73 Hit counter padding. Set the padding for the hit counter box.\n"
1705
- "6.8.74 Hit counter margin. Set the margin for the hit counter box.\n"
1706
- "6.8.75 Hit counter font color. Select the font color within the hit counter box.\n"
1707
- "6.8.76 Hit counter font family. Choose the font family for the hit counter box text.<br />\n"
1708
- "6.8.77 Hit counter font weight. Choose the font weight for the hit counter box text.\n"
1709
- "6.8.78 Hit counter font size. Select the font size for the hit counter box text. \n"
1710
- "6.8.79 Info position. Specify the position of the gallery image title and description.\n"
1711
- "6.8.80 Info alignment. Select the alignment for the gallery image title and description.\n"
1712
- "6.8.81 Info background color. Choose the background color for the gallery image information.<br />\n"
1713
- "6.8.82 Info background transparency. Set the level of transparency for the gallery image information background.<br />\n"
1714
- "6.8.83 Info border width. Set a border width for the gallery image information box.<br />\n"
1715
- "6.8.84 Info border style. Set the border style for the gallery image information box.<br />\n"
1716
- "6.8.85 Info border color. Set the border color for the gallery image information box. \n"
1717
- "6.8.86 Info border radius. Set the border radius for the gallery image information box.<br />\n"
1718
- "6.8.87 Info padding. Set the padding for the image information box using CSS style values.\n"
1719
- "6.8.88 Info margin. Set the margin for the image information box using CSS style values.<br />\n"
1720
- "6.8.89 Title font color. Choose the font color for the gallery image title. \n"
1721
- "6.8.90 Title font family. Specify the font family for the gallery image title.<br />\n"
1722
- "6.8.91 Title font weight. Specify the font style for the gallery image title.<br />\n"
1723
- "6.8.92 Title font size. Set the font size for the gallery image title.\n"
1724
- "6.8.93 Description font color. Choose the font color for the gallery image description.\n"
1725
- "6.8.94 Description font family. Set the font family for the gallery image description. \n"
1726
- "6.8.95 Description font weight. Set the font style for the gallery image description.\n"
1727
- "6.8.96 Description font size. Define the font size for the gallery image description.\n"
1728
- "6.8.97 Comments width. Define the width of the comment box for the gallery images in the lightbox.<br />\n"
1729
- "6.8.98 Comments position. Select the comment position for the gallery images.\n"
1730
- "6.8.99 Comments background color. Select the background color for the comment box in the lightbox.<br />\n"
1731
- "6.8.100 Comments font size. Define the font size for the comments input field labels.\n"
1732
- "6.8.101 Comments font color. Define the font color for the gallery image comments. \n"
1733
- "6.8.102 Comments font family. Select the font family for the image comments.\n"
1734
- "6.8.103 Comments author font size. Define the font size for the Author text in the image comment box.\n"
1735
- "6.8.104 Comments date font size. Define the font size for the gallery image comment date.\n"
1736
- "6.8.105 Comments body font size. Define the font size for the gallery image comments.\n"
1737
- "6.8.106 Comment input border width. Define the border width for the comment box.<br />\n"
1738
- "6.8.107 Comment input border style. Select the style to be applied to the comment box border.\n"
1739
- "6.8.108 Comment input border color. Choose the border color for the comment box border\n"
1740
- "6.8.109 Comment input border radius. Set the border radius for the comment box input field.\n"
1741
- "6.8.110 Comment input padding. Set padding for the comment box input area using CSS type values.<br />\n"
1742
- "6.8.111 Comment input background color. Choose the background color for the comment input field.\n"
1743
- "6.8.112 Comment button background color. Choose a background color for the comment button.<br />\n"
1744
- "6.8.113 Comment button padding. Set the comment button padding using CSS type values.<br />\n"
1745
- "6.8.114 Comment button border width. Set the border width for the comment button.<br />\n"
1746
- "6.8.115 Comment button border style. Select the border style for the comment button.<br />\n"
1747
- "6.8.116 Comment button border color. Choose the border color for the comment button.\n"
1748
- "6.8.117 Comment button border radius. Set the border radius for the comment button using CSS type values.\n"
1749
- "6.8.118 Comment separator width. Set the width for the comment separators.<br />\n"
1750
- "6.8.119 Comment separator style. Choose the style for the comment separator lines.<br />\n"
1751
- "6.8.120 Comment separator color. Select the color for the comment separators."
1752
- msgstr ""
1753
-
1754
- #. Found in remaining content paragraph.
1755
- msgid ""
1756
- "6.9 Page Navigation.<br />\n"
1757
- "6.9.1 Name. Provide a name for the theme.<br />\n"
1758
- "6.9.2 Font size. Define the font size for the page navigation.<br />\n"
1759
- "6.9.3 Font color. Choose the font color for the page navigation.<br />\n"
1760
- "6.9.4 Font family. Select the font family for the page navigation.<br />\n"
1761
- "6.9.5 Font weight. Select the font weight from the provided options to apply to page navigation.<br />\n"
1762
- "6.9.6 Border width. Set the page navigation border width.<br />\n"
1763
- "6.9.7 Border style. Select the border style for the page navigation.<br />\n"
1764
- "6.9.8 Border color. Choose the page navigation border color.<br />\n"
1765
- "6.9.9 Border radius. Set the border radius for the page navigation using CSS type values.<br />\n"
1766
- "6.9.10 Margin. Set the margin for the page navigation using CSS type values.<br />\n"
1767
- "6.9.11 Padding. Set padding using CSS type values for the page navigation.<br />\n"
1768
- "6.9.12 Button background color. Choose the navigation button background color.<br />\n"
1769
- "6.9.13 Button background transparency. Specify the level of transparency for the navigation button background.<br />\n"
1770
- "6.9.14 Button transition. Choose whether to set a transition for the navigation button or not.<br />\n"
1771
- "6.9.15 Box shadow. Set the box shadow for the navigation.<br />\n"
1772
- "6.9.16 Position. Determine the position of the navigation buttons.<br />\n"
1773
- "6.9.17 Alignment. Define the alignment for the navigation buttons.<br />\n"
1774
- "6.9.18 Numbering. Choose whether to have numbers next to navigation buttons or not.<br />\n"
1775
- "6.9.19 Button text. Choose whether to have text or navigation arrow set for the page navigation."
1776
- msgstr ""
1777
-
1778
- #. Found in remaining content paragraph.
1779
- msgid ""
1780
- "7.1 Image. Choose the gallery image you want to moderate the comments for.<br />\n"
1781
- "7.2 Name. Choose the author of the comments, if there are multiple comments for the chosen gallery image.<br />\n"
1782
- "7.3 Publish. Click to publish the gallery image comment.<br />\n"
1783
- "7.4 Unpublish. Click to unpublish the gallery image comment.<br />\n"
1784
- "7.5 Delete. Click to delete the gallery image comment."
1785
- msgstr ""
1786
-
1787
- #. Found in remaining content paragraph.
1788
- msgid ""
1789
- "To insert a gallery into a Page or a Post.<br />\n"
1790
- "Open the post/page you want to display the gallery. Press the button named Photo Gallery. A camera icon will be inserted into the page/post. Click on the gallery image and select the gallery/album display you want to use for that specific page/post.<br />\n"
1791
- "Each Photo Gallery shortcode uses three columns of parameters. The first column shows parameters specific for that Photo Gallery view only, the second one shows Lightbox (except Slideshow view) parameters, the third one is referred to the Advertisement.<br />\n"
1792
- "In addition you can add the galllery shortcode using Shortcode Generator of the Photo Gallery.<br />\n"
1793
- "8.1 General Parameters (First Column)<br />\n"
1794
- "8.1.1Thumbnails<br />\n"
1795
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1796
- "Gallery. Select the gallery.<br />\n"
1797
- "Sort by. Choose the option to use for the gallery image sequence.<br />\n"
1798
- "Max. number of image columns. Provide the number of image columns in a page.<br />\n"
1799
- "Images per page. Provide the maximum number of gallery images per page.<br />\n"
1800
- "Enable pagination. Choose whether to have pagination for the view or not.<br />\n"
1801
- "Image thumbnail dimensions. Define the thumbnail width and height in pixels.<br />\n"
1802
- "8.1.2 Masonry<br />\n"
1803
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1804
- "Gallery. Select the gallery.<br />\n"
1805
- "Sort by. Choose the option to use for image sequence.<br />\n"
1806
- "Max. number of image columns. Provide the number of image columns in a page.<br />\n"
1807
- "Images per page. Provide the maximum number of gallery images per page.<br />\n"
1808
- "Enable pagination. Choose whether to have pagination for the view or not.<br />\n"
1809
- "Image thumbnail width. Provide the thumbnail width for the images.<br />\n"
1810
- "8.1.3 Slideshow<br />\n"
1811
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1812
- "Gallery. Select the gallery.<br />\n"
1813
- "Sort by. Choose the option to use for the gallery image sequence.<br />\n"
1814
- "Slideshow Effect. Select the effect to be applied to the slideshow.<br />\n"
1815
- "Time interval. Specify the time interval between the images.<br />\n"
1816
- "Slideshow dimensions. Define the width and height of the slideshow.<br />\n"
1817
- "Enable autoplay. Choose whether to have an Autoplay of Slideshow or not.<br />\n"
1818
- "Enable shuffle. Choose whether to have shuffle enabled for the slideshow view or not.<br />\n"
1819
- "Enable control buttons. Choose whether to display control buttons or not.<br />\n"
1820
- "Enable slideshow filmstrip. Choose whether to have a thumbnail filmstrip with slideshow view or not.<br />\n"
1821
- "Slideshow Filmstrip height. Specify the height for the filmstrip.<br />\n"
1822
- "8.1.4 Image Browser<br />\n"
1823
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1824
- "Gallery. Select the gallery.<br />\n"
1825
- "Sort by. Choose the option to use for image sequence.<br />\n"
1826
- "Image width. Set the width for the image.<br />\n"
1827
- "Enable image title. Choose whether to have an image title displayed within the view or not.<br />\n"
1828
- "Enable image description. Choose whether to have an image description displayed within the view or not.<br />\n"
1829
- "8.1.5 Compact Album.<br />\n"
1830
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1831
- "Album. Select the album.<br />\n"
1832
- "Max. number of album columns. Provide the maximum number of albums to be displayed in a single column.<br />\n"
1833
- "Albums per page. Provide the number of albums to be displayed in a single page.<br />\n"
1834
- "Album title. Choose whether to display a static album title or have it displayed only when hovered.<br />\n"
1835
- "Album thumbnail dimensions. Choose the image thumbnail width and height used for album preview.<br />\n"
1836
- "Max. number of image columns. Define the maximum number of image columns to be displayed in a single page.<br />\n"
1837
- "Images per page. Set the number of images to be displayed in a single page.<br />\n"
1838
- "Image thumbnail dimensions. Set the image thumbnail width and height for the album images.<br />\n"
1839
- "Enable pagination. Choose whether to have pagination for the compact album view or not.<br />\n"
1840
- "8.1.6 Extended Album<br />\n"
1841
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1842
- "Album. Select album.<br />\n"
1843
- "Albums per page. Provide the number of albums to be displayed in a single page.<br />\n"
1844
- "Album row height. Set the height for the album rows.<br />\n"
1845
- "Enable album description. Choose whether to display album description or not.<br />\n"
1846
- "Album thumbnail dimensions. Set the album preview thumbnail width and height.<br />\n"
1847
- "Max. number of image columns. Define the maximum number of image columns to be displayed in a single page.<br />\n"
1848
- "Images per page. Define the number of images to be displayed in a single page.<br />\n"
1849
- "Image thumbnail dimensions. Define the image thumbnail width and height for the album images.<br />\n"
1850
- "Enable pagination. Choose whether to have pagination for the extended albums or not.<br />\n"
1851
- "8.1.7 Blog Style<br />\n"
1852
- "Theme. Select the theme to be applied to this Photo Gallery view.<br />\n"
1853
- "Gallery. Select the gallery.<br />\n"
1854
- "Sort by. Choose the option to use for the image sequence.<br />\n"
1855
- "Image width. Set the image width for the Blog Style view.<br />\n"
1856
- "Enable image title. Choose whether to have image title displayed within this view or not.<br />\n"
1857
- "Images per page. Set the number of images to be displayed in a single page.<br />\n"
1858
- "Enable pagination. Choose whether to have pagination for the extended albums or not."
1859
- msgstr ""
1860
-
1861
- #. Found in remaining content paragraph.
1862
- msgid ""
1863
- "8.2 Lightbox Parameters (Second Column)<br />\n"
1864
- "Lightbox dimensions. Define the lightbox height and width in pixels.<br />\n"
1865
- "Lightbox effect. Select the lightbox effect from the provided options.<br />\n"
1866
- "Time interval. Set the time interval between the display of the sequential image.<br />\n"
1867
- "Enable filmstrip in lightbox. Choose whether to have filmstrip enabled in the pop-up or not.<br />\n"
1868
- "Filmstrip height. Define the height of the filmstrip if applicable.<br />\n"
1869
- "Enable control buttons. Choose whether to have control buttons enabled in the lightbox or not.<br />\n"
1870
- "Enable fullscreen. Choose whether to have Fullscreen enabled for the lightbox or not.<br />\n"
1871
- "Enable comments. Choose whether to display comment box in the pop-up or not.<br />\n"
1872
- "Enable Facebook button. Choose whether to have Facebook social sharing button enabled in the pop-up or not.<br />\n"
1873
- "Enable Twitter button. Choose whether to have Twitter social sharing button enabled in the pop-up or not.<br />\n"
1874
- "Enable Google+ button. Choose whether to have Google+ social sharing button enabled in the pop-up or not."
1875
- msgstr ""
1876
-
1877
- #. Found in remaining content paragraph.
1878
- msgid ""
1879
- "(for Slideshow View only)<br />\n"
1880
- "Enable image title. Choose whether to display gallery image titles during the slideshow or not.<br />\n"
1881
- "Title position. Set the position of the title using the available options.<br />\n"
1882
- "Enable image description. Choose whether to display gallery image description during the slideshow or not.<br />\n"
1883
- "Description position. Set the position of the description using the available options.<br />\n"
1884
- "Enable slideshow music. Choose whether to have background audio track during the slideshow or not.<br />\n"
1885
- "Music URL. Provide the URL of the audio track to play during the slideshow."
1886
- msgstr ""
1887
-
1888
- #. Found in remaining content paragraph.
1889
- msgid ""
1890
- "8.3 Advertisement (Third Column)<br />\n"
1891
- "Advertisement type. Select the type of advertisement you want to use (text, image) or choose not to use ads in your galleries and albums.<br />\n"
1892
- "8.3.1 Text<br />\n"
1893
- "Advertisement text. Provide the text which will be displayed over the gallery/album images.<br />\n"
1894
- "Advertisement link. Provide the link, which will open in a new window, when the user clicks on advertisement text.<br />\n"
1895
- "Advertisement font size. Specify the font size of the advertisement text.<br />\n"
1896
- "Advertisement font style. Specify the font family for the text used with the advertisement.<br />\n"
1897
- "Advertisement color. Select the text color which will be used with the advertisements.<br />\n"
1898
- "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1899
- "Advertisement position. Choose the positioning of the advertisement from the available 9 options.<br />\n"
1900
- "8.3.2 Image<br />\n"
1901
- "Advertisement URL. Provide the absolute URL of the image which will be used for the advertisement.<br />\n"
1902
- "Advertisement link. Provide the link, which will open in a new window, when the user clicks on advertisement image.<br />\n"
1903
- "Advertisement dimensions. Define the dimensions of the image used for the advertisement.<br />\n"
1904
- "Advertisement opacity. Define the level of opacity for the advertisement, providing its percentage.<br />\n"
1905
- "Advertisement position. Choose the positioning of the advertisement from the available 9 options."
1906
- msgstr ""
1907
-
1908
- #. Found in remaining content paragraph.
1909
- msgid ""
1910
- "Go to Appearance&gt;Widgets. Here select the widget option you want to add to a custom location. Afterwards drag and drop the selected widget into the custom location, fill in the options and press Save button.<br />\n"
1911
- "9.1 Tag Cloud. This widget is included as a hosted widget for the WordPress standard Tag Cloud. It will display the tags added to the albums and images. After the click, the images using the tags will be displayed in Thumbnails view.<br />\n"
1912
- "9.1.1 Title. Provide a title for the tag cloud.<br />\n"
1913
- "9.1.2 Taxonomy. Select Photo Gallery from the provided options."
1914
- msgstr ""
1915
-
1916
- #. Found in remaining content paragraph.
1917
- msgid "Go to Appearance&gt;Widgets. Here select the gallery widget option you want to add to a custom location. Afterwards drag and drop the selected gallery widget into the custom location, fill in the options and press Save button."
1918
- msgstr ""
1919
-
1920
- #. Found in remaining content paragraph.
1921
- msgid ""
1922
- "9.2 Photo Gallery Tags Cloud. This dynamic widget allows having rotating tags or gallery images. After clicking on the tag a separate page will be opened displaying the gallery images corresponding to the tag. In case of the gallery images, the images will display with a pop-up.<br />\n"
1923
- "9.2.1 Title. Provide a title for the dynamic tag cloud.<br />\n"
1924
- "9.2.2 Choosing Text type:<br />\n"
1925
- "Number. Provide the number of tags you want to display. If you leave it to 0 all gallery tags will be displayed.<br />\n"
1926
- "Dimensions. Specify the width and height for the dynamic tag cloud.<br />\n"
1927
- "Transparent background. Choose whether to have a transparent background or not for the gallery widget or not.<br />\n"
1928
- "Background color. Choose the background color for the tag cloud.<br />\n"
1929
- "Text color. Choose the tag text color.<br />\n"
1930
- "Theme. Choose the theme, which will be applied to the gallery or album corresponding to the tag.<br />\n"
1931
- "9.2.3 Choosing Image type:<br />\n"
1932
- "Show tag names. Choose whether to display tag names or not.<br />\n"
1933
- "Number. Provide the number of gallery images you want to display. If you leave it to 0 all gallery images will be displayed.<br />\n"
1934
- "Dimensions. Specify the width and height for the dynamic image cloud.<br />\n"
1935
- "Background color. Choose the background color for the image cloud.<br />\n"
1936
- "Text color. Choose the tag text color.<br />\n"
1937
- "Theme. Choose the theme, which will be applied to the gallery/album corresponding to the image/tag."
1938
- msgstr ""
1939
-
1940
- #. Found in remaining content paragraph.
1941
- msgid ""
1942
- "9.3 Photo Gallery Slideshow.<br />\n"
1943
- "9.3.1 Title. Provide a title for the gallery slideshow.<br />\n"
1944
- "9.3.2 Select Gallery. Specify the gallery you want to use for the slideshow.<br />\n"
1945
- "9.3.3 Dimensions. Specify the width and height for the gallery slideshow.<br />\n"
1946
- "9.3.4 Slideshow effect. Select the effect to apply to the slideshow.<br />\n"
1947
- "9.3.5 Time interval. Define the time interval between the change of gallery images in seconds.<br />\n"
1948
- "9.3.6 Enable shuffle. Choose whether to have shuffle for the slideshow images or not.<br />\n"
1949
- "9.3.7 Theme. Choose the theme to be applied to the gallery image slideshow."
1950
- msgstr ""
1951
-
1952
- #. Found in remaining content paragraph.
1953
- msgid ""
1954
- "9.4 Photo Gallery Widget. You can add album and gallery images into a custom location as a gallery widget. After click the users will be redirected into compact album view, if it is an album. If it is a gallery included in the album it will open up in Thumbnails view. The gallery images will be displayed in a lightbox.<br />\n"
1955
- "9.4.1 Title. Provide a title for the gallery widget.<br />\n"
1956
- "9.4.2 Choose whether to display an album or gallery.<br />\n"
1957
- "9.4.3 Select Gallery/Select Album. Select the gallery or album to be displayed with the widget.<br />\n"
1958
- "9.4.4 Choose whether to display random or the last few images of the gallery or album.<br />\n"
1959
- "9.4.5 Number. Provide the number of gallery images to be displayed with the widget.<br />\n"
1960
- "9.4.6 Dimensions. Specify the width and height of the gallery widget.<br />\n"
1961
- "9.4.7 Theme. Choose the theme, which will be applied to the gallery or album."
1962
- msgstr ""
1963
-
1964
- #. Found in remaining content paragraph.
1965
- msgid "To use the created galleries and albums for the custom location, you can generate custom gallery shortcodes and edit the exisiting gallery shortcodes."
1966
- msgstr ""
1967
-
1968
- #. Found in remaining content paragraph.
1969
- msgid ""
1970
- "10.1 Generate. Clicking this button you will be able to create a special gallery shortcode based on your option choices. The created shortcode will appear in the box below. It can be copied/cut and pasted into a post/page for gallery/album display.<br />\n"
1971
- "10.2 Import.Pasting the gallery shortcode in the box below and pressing the button, you will be able to edit and make changes in the gallery shortcode.The final shortcode can be copied/cut and pasted into a post/page for the gallery or album display."
1972
- msgstr ""