Photo Gallery by WD – Responsive Photo Gallery - Version 1.1.23

Version Description

Download this release

Release Info

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

Code changes from version 1.1.22 to 1.1.23

Files changed (75) hide show
  1. css/bwg_shortcode.css +1 -1
  2. filemanager/model.php +1 -1
  3. frontend/views/BWGViewAlbum_compact_preview.php +6 -6
  4. frontend/views/BWGViewThumbnails.php +3 -3
  5. js/bwg_gallery_box.js +1 -0
  6. languages/bwg-af.mo +0 -0
  7. languages/bwg-af.po +133 -133
  8. languages/bwg-ar.mo +0 -0
  9. languages/bwg-ar.po +133 -133
  10. languages/bwg-be_BY.mo +0 -0
  11. languages/bwg-be_BY.po +133 -132
  12. languages/bwg-bg_BG.mo +0 -0
  13. languages/bwg-bg_BG.po +135 -135
  14. languages/bwg-ca.mo +0 -0
  15. languages/bwg-ca.po +135 -135
  16. languages/bwg-cs_CZ.mo +0 -0
  17. languages/bwg-cs_CZ.po +134 -133
  18. languages/bwg-da_DK.mo +0 -0
  19. languages/bwg-da_DK.po +134 -133
  20. languages/bwg-de_DE.mo +0 -0
  21. languages/bwg-de_DE.po +134 -134
  22. languages/bwg-el.mo +0 -0
  23. languages/bwg-el.po +132 -131
  24. languages/bwg-en_US.mo +0 -0
  25. languages/bwg-en_US.po +134 -134
  26. languages/bwg-eo_EO.mo +0 -0
  27. languages/bwg-eo_EO.po +132 -131
  28. languages/bwg-es_ES.mo +0 -0
  29. languages/bwg-es_ES.po +134 -134
  30. languages/bwg-et.mo +0 -0
  31. languages/bwg-et.po +133 -132
  32. languages/bwg-fa_IR.mo +0 -0
  33. languages/bwg-fa_IR.po +133 -133
  34. languages/bwg-fi.mo +0 -0
  35. languages/bwg-fi.po +134 -134
  36. languages/bwg-fr_FR.mo +0 -0
  37. languages/bwg-fr_FR.po +133 -133
  38. languages/bwg-gl_ES.mo +0 -0
  39. languages/bwg-gl_ES.po +133 -133
  40. languages/bwg-he_IL.mo +0 -0
  41. languages/bwg-he_IL.po +133 -133
  42. languages/bwg-hi_IN.mo +0 -0
  43. languages/bwg-hi_IN.po +135 -135
  44. languages/bwg-hr.mo +0 -0
  45. languages/bwg-hr.po +133 -133
  46. languages/bwg-hu_HU.mo +0 -0
  47. languages/bwg-hu_HU.po +133 -133
  48. languages/bwg-hy_AM.mo +0 -0
  49. languages/bwg-hy_AM.po +148 -147
  50. languages/bwg-id_ID.mo +0 -0
  51. languages/bwg-id_ID.po +135 -135
  52. languages/bwg-it_IT.mo +0 -0
  53. languages/bwg-it_IT.po +133 -133
  54. languages/bwg-ja.mo +0 -0
  55. languages/bwg-ja.po +135 -135
  56. languages/bwg-ka_GE.mo +0 -0
  57. languages/bwg-ka_GE.po +133 -133
  58. languages/bwg-ko_KR.mo +0 -0
  59. languages/bwg-ko_KR.po +133 -133
  60. languages/bwg-lt_LT.mo +0 -0
  61. languages/bwg-lt_LT.po +135 -135
  62. languages/bwg-lv.mo +0 -0
  63. languages/bwg-lv.po +134 -134
  64. languages/bwg-mk_MK.mo +0 -0
  65. languages/bwg-mk_MK.po +135 -135
  66. languages/bwg-ms_MY.mo +0 -0
  67. languages/bwg-ms_MY.po +135 -135
  68. languages/bwg-mt_MT.mo +0 -0
  69. languages/bwg-mt_MT.po +132 -132
  70. languages/bwg-nb_NO.mo +0 -0
  71. languages/bwg-nb_NO.po +134 -133
  72. languages/bwg-nl_NL.mo +0 -0
  73. languages/bwg-nl_NL.po +133 -132
  74. languages/bwg-pl_PL.mo +0 -0
  75. languages/bwg-pl_PL.po +128 -128
css/bwg_shortcode.css CHANGED
@@ -51,7 +51,7 @@
51
 
52
  .bwg_short_div {
53
  float: left;
54
- height: 500px;
55
  padding: 15px;
56
  width: 30%;
57
  }
51
 
52
  .bwg_short_div {
53
  float: left;
54
+ height: 530px;
55
  padding: 15px;
56
  width: 30%;
57
  }
filemanager/model.php CHANGED
@@ -187,7 +187,7 @@ class FilemanagerModel {
187
  $file['filename'] = substr($file_name, 0, strrpos($file_name, '.'));
188
  $file['type'] = strtolower(end(explode('.', $file_name)));
189
  $file['thumb'] = wp_get_attachment_thumb_url($image->ID);
190
- $file['icon'] = wp_get_attachment_thumb_url($image->ID);
191
  if (($valid_types[0] != '*') && (in_array($file['type'], $valid_types) == FALSE)) {
192
  continue;
193
  }
187
  $file['filename'] = substr($file_name, 0, strrpos($file_name, '.'));
188
  $file['type'] = strtolower(end(explode('.', $file_name)));
189
  $file['thumb'] = wp_get_attachment_thumb_url($image->ID);
190
+ $file['icon'] = $file['thumb'];
191
  if (($valid_types[0] != '*') && (in_array($file['type'], $valid_types) == FALSE)) {
192
  continue;
193
  }
frontend/views/BWGViewAlbum_compact_preview.php CHANGED
@@ -199,9 +199,6 @@ class BWGViewAlbum_compact_preview {
199
  }
200
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_album_thumb_spun1_<?php echo $bwg; ?> {
201
  background-color: #<?php echo $theme_row->album_compact_thumb_bg_color; ?>;
202
- border-radius: <?php echo $theme_row->album_compact_thumb_border_radius; ?>;
203
- border: <?php echo $theme_row->album_compact_thumb_border_width; ?>px <?php echo $theme_row->album_compact_thumb_border_style; ?> #<?php echo $theme_row->album_compact_thumb_border_color; ?>;
204
- box-shadow: <?php echo $theme_row->album_compact_thumb_box_shadow; ?>;
205
  display: inline-block;
206
  height: <?php echo $params['compuct_album_thumb_height']; ?>px;
207
  margin: <?php echo $theme_row->album_compact_thumb_margin; ?>px;
@@ -229,6 +226,9 @@ class BWGViewAlbum_compact_preview {
229
  z-index: 102;
230
  }
231
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_album_thumb_spun2_<?php echo $bwg; ?> {
 
 
 
232
  display: inline-block;
233
  height: <?php echo $params['compuct_album_thumb_height']; ?>px;
234
  overflow: hidden;
@@ -308,9 +308,6 @@ class BWGViewAlbum_compact_preview {
308
  /*Image thumbs styles.*/
309
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?> {
310
  background-color: #<?php echo $theme_row->thumb_bg_color; ?>;
311
- border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
312
- border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
313
- box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
314
  display: inline-block;
315
  height: <?php echo $params['compuct_album_image_thumb_height']; ?>px;
316
  margin: <?php echo $theme_row->thumb_margin; ?>px;
@@ -337,6 +334,9 @@ class BWGViewAlbum_compact_preview {
337
  position: relative;
338
  }
339
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
 
 
 
340
  display: inline-block;
341
  height: <?php echo $params['compuct_album_image_thumb_height']; ?>px;
342
  overflow: hidden;
199
  }
200
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_album_thumb_spun1_<?php echo $bwg; ?> {
201
  background-color: #<?php echo $theme_row->album_compact_thumb_bg_color; ?>;
 
 
 
202
  display: inline-block;
203
  height: <?php echo $params['compuct_album_thumb_height']; ?>px;
204
  margin: <?php echo $theme_row->album_compact_thumb_margin; ?>px;
226
  z-index: 102;
227
  }
228
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_album_thumb_spun2_<?php echo $bwg; ?> {
229
+ border-radius: <?php echo $theme_row->album_compact_thumb_border_radius; ?>;
230
+ border: <?php echo $theme_row->album_compact_thumb_border_width; ?>px <?php echo $theme_row->album_compact_thumb_border_style; ?> #<?php echo $theme_row->album_compact_thumb_border_color; ?>;
231
+ box-shadow: <?php echo $theme_row->album_compact_thumb_box_shadow; ?>;
232
  display: inline-block;
233
  height: <?php echo $params['compuct_album_thumb_height']; ?>px;
234
  overflow: hidden;
308
  /*Image thumbs styles.*/
309
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun1_<?php echo $bwg; ?> {
310
  background-color: #<?php echo $theme_row->thumb_bg_color; ?>;
 
 
 
311
  display: inline-block;
312
  height: <?php echo $params['compuct_album_image_thumb_height']; ?>px;
313
  margin: <?php echo $theme_row->thumb_margin; ?>px;
334
  position: relative;
335
  }
336
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
337
+ border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
338
+ border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
339
+ box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
340
  display: inline-block;
341
  height: <?php echo $params['compuct_album_image_thumb_height']; ?>px;
342
  overflow: hidden;
frontend/views/BWGViewThumbnails.php CHANGED
@@ -158,9 +158,6 @@ class BWGViewThumbnails {
158
  -moz-box-sizing: content-box;
159
  box-sizing: content-box;
160
  background-color: #<?php echo $theme_row->thumb_bg_color; ?>;
161
- border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
162
- border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
163
- box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
164
  display: inline-block;
165
  height: <?php echo $params['thumb_height']; ?>px;
166
  margin: <?php echo $theme_row->thumb_margin; ?>px;
@@ -187,6 +184,9 @@ class BWGViewThumbnails {
187
  position: relative;
188
  }
189
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
 
 
 
190
  display: inline-block;
191
  height: <?php echo $params['thumb_height']; ?>px;
192
  overflow: hidden;
158
  -moz-box-sizing: content-box;
159
  box-sizing: content-box;
160
  background-color: #<?php echo $theme_row->thumb_bg_color; ?>;
 
 
 
161
  display: inline-block;
162
  height: <?php echo $params['thumb_height']; ?>px;
163
  margin: <?php echo $theme_row->thumb_margin; ?>px;
184
  position: relative;
185
  }
186
  #bwg_container1_<?php echo $bwg; ?> #bwg_container2_<?php echo $bwg; ?> .bwg_standart_thumb_spun2_<?php echo $bwg; ?> {
187
+ border: <?php echo $theme_row->thumb_border_width; ?>px <?php echo $theme_row->thumb_border_style; ?> #<?php echo $theme_row->thumb_border_color; ?>;
188
+ border-radius: <?php echo $theme_row->thumb_border_radius; ?>;
189
+ box-shadow: <?php echo $theme_row->thumb_box_shadow; ?>;
190
  display: inline-block;
191
  height: <?php echo $params['thumb_height']; ?>px;
192
  overflow: hidden;
js/bwg_gallery_box.js CHANGED
@@ -64,6 +64,7 @@ function spider_destroypopup(duration) {
64
  if (isMobile && viewportmeta) {
65
  viewportmeta.content = 'width=device-width, initial-scale=1';
66
  }
 
67
  }
68
 
69
  // Submit popup.
64
  if (isMobile && viewportmeta) {
65
  viewportmeta.content = 'width=device-width, initial-scale=1';
66
  }
67
+ clearInterval(bwg_playInterval);
68
  }
69
 
70
  // Submit popup.
languages/bwg-af.mo CHANGED
Binary file
languages/bwg-af.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:17+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:42+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: af\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "veld is required. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Dit is nie 'n geldige e-posadres."
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Daar is geen foto's in die gallery."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "item(s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Eerste"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Vorige"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Volgende"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Duur"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Gaan na die eerste bladsy"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Gaan na die vorige bladsy"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "van"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Gaan na die volgende bladsy"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Gaan na die laaste bladsy"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Herstel"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Soek"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Daar is geen tema gekies of die tema is verwyder."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Daar is geen album gekies of die album is verwyder."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Daar is geen foto's in die gallery."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Terug"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album is leeg."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery is leeg."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Meer"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Verberg"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Daar is geen gallery gekies of die gallery is verwyder."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Wys kommentaar"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Deel op Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Deel op Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Deel op Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Deel op Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Deel op Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Die beeld is verwyder"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Speel"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimeer"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Volskerm"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Wys info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Wys gradering"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Open beeld in die oorspronklike grootte"
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Aflaai oorspronklike beeld"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Nog nie gegradeer nie"
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "stemme"
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Die styl van jou gradering"
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Jy het reeds gegradeer"
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Fout. Verkeerde Bevestigingskode."
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Steek kommentaar"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Noem"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-pos "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Kommentaar lewer nie"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Bevestigingskode"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Stuur"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Jou opmerking is wag moderering"
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Verwyder Kommentaar"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Wys kommentaar"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Verberg"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Steek gradering"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Herstel"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Verlaat Volskerm"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Breek"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:36+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:38+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: af\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "veld is required. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Dit is nie 'n geldige e-posadres."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Daar is geen beelde wat ooreenstem met jou soektog."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "item(s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Eerste"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Vorige"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Volgende"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Duur"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Gaan na die eerste bladsy"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Gaan na die vorige bladsy"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "van"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Gaan na die volgende bladsy"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Gaan na die laaste bladsy"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Herstel"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Soek"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Daar is geen tema gekies of die tema is verwyder."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Daar is geen album gekies of die album is verwyder."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Daar is geen foto's in die gallery."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Terug"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album is leeg."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery is leeg."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Meer"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Verberg"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Daar is geen gallery gekies of die gallery is verwyder."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Wys kommentaar"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Deel op Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Deel op Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Deel op Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Deel op Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Deel op Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Die beeld is verwyder"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Speel"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimeer"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Volskerm"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Wys info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Wys gradering"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Open beeld in die oorspronklike grootte"
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Aflaai oorspronklike beeld"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Gegradeer."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Nog nie gegradeer nie"
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "stemme"
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Die styl van jou gradering"
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Jy het reeds gegradeer"
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Fout. Verkeerde Bevestigingskode."
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Steek kommentaar"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Noem"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-pos "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Kommentaar lewer nie"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Bevestigingskode"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Stuur"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Jou opmerking is wag moderering"
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Verwyder Kommentaar"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Wys kommentaar"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Steek info"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Steek gradering"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Herstel"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Verlaat Volskerm"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Breek"
languages/bwg-ar.mo CHANGED
Binary file
languages/bwg-ar.po CHANGED
@@ -1,317 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:43+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:44+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ar\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
15
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
  msgstr "مطلوب الميدان. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
  msgstr "هذا ليس عنوان بريد إلكتروني صحيح."
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "ا توجد صور في هذا الألبوم"
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "البند (ق)"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr " أولا"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "  السابقة"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "المقبل"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "آخر"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "  انتقل إلى الصفحة الأولى"
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "  انتقل إلى الصفحة السابقة"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "  من"
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr "  انتقل إلى الصفحة التالية"
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "  انتقل إلى الصفحة الأخيرة"
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "إعادة تعيين"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "البحث"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr " . لا يوجد أي موضوع المحددة أو تم حذف الموضوع"
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "  لا يوجد ألبوم المحددة أو تم حذف الألبوم"
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "ا توجد صور في هذا الألبوم"
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "  الظهر"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "  الألبوم فارغ"
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "  معرض فارغة"
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "أكثر"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "إخفاء"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "لا توجد المعرض المحددة أو تم حذف المعرض"
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "تظهر التعليقات"
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr "حصة في الفيسبوك"
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr "مشاركة على تويتر"
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "في + Google المشاركة"
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr "مشاركة على تويتر"
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr "مشاركة على تويتر"
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "تم حذف الصورة"
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "لعب"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "تعظيم"
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "ملء الشاشة"
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "تظهر المعلومات"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "تظهر التصنيف"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "صورة مفتوحة في حجمها الأصلي"
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "تحميل الصورة الأصلية"
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "الفعالية:"
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "غير مصنفة حتى الآن."
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "عدد الأصوات: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "إلغاء تقييمك"
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "لقد تقييما بالفعل"
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "خطأ. رمز التحقق غير صحيح. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "إخفاء التعليقات"
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr "الاسم"
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "مينا "
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "التعليق"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "كود التحقق"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "تقدم"
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "تعليقك ينتظر الاعتدال"
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "حذف تعليق"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr " عرض التعليقات"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
- #, fuzzy
296
  msgid "Hide info"
297
- msgstr "إخفاء"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "اخفاء تصنيف"
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
305
  msgid "Restore"
306
  msgstr "استعادة"
307
 
308
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
309
  msgid "Exit Fullscreen"
310
  msgstr "خروج ملء الشاشة"
311
 
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
316
  msgid "Pause"
317
  msgstr "وقفة"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:39+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:40+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ar\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
15
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
  msgstr "مطلوب الميدان. "
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
  msgstr "هذا ليس عنوان بريد إلكتروني صحيح."
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "لا توجد صور تتوافق مع البحث."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "البند (ق)"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr " أولا"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "  السابقة"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "المقبل"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "آخر"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "  انتقل إلى الصفحة الأولى"
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "  انتقل إلى الصفحة السابقة"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "  من"
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "  انتقل إلى الصفحة التالية"
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "  انتقل إلى الصفحة الأخيرة"
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "إعادة تعيين"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "البحث"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr " . لا يوجد أي موضوع المحددة أو تم حذف الموضوع"
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "  لا يوجد ألبوم المحددة أو تم حذف الألبوم"
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "ا توجد صور في هذا الألبوم"
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "  الظهر"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "  الألبوم فارغ"
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "  معرض فارغة"
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "أكثر"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "إخفاء"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "لا توجد المعرض المحددة أو تم حذف المعرض"
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "تظهر التعليقات"
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr "حصة في الفيسبوك"
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr "مشاركة على تويتر"
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "في + Google المشاركة"
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "على حصة بينتيريست"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "نعرفكم على حصة"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "تم حذف الصورة"
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "لعب"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "تعظيم"
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "ملء الشاشة"
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "تظهر المعلومات"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "تظهر التصنيف"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "صورة مفتوحة في حجمها الأصلي"
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "تحميل الصورة الأصلية"
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "الفعالية:"
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "تصنيف."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "غير مصنفة حتى الآن."
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "عدد الأصوات: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "إلغاء تقييمك"
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "لقد تقييما بالفعل"
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "خطأ. رمز التحقق غير صحيح. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "إخفاء التعليقات"
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr "الاسم"
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "مينا "
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "التعليق"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "كود التحقق"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "تقدم"
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "تعليقك ينتظر الاعتدال"
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "حذف تعليق"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr " عرض التعليقات"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
296
  msgid "Hide info"
297
+ msgstr "إخفاء المعلومات"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "اخفاء تصنيف"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "استعادة"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "خروج ملء الشاشة"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "وقفة"
languages/bwg-be_BY.mo CHANGED
Binary file
languages/bwg-be_BY.po CHANGED
@@ -1,317 +1,318 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:45+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:47+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: be_BY\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
  msgstr "поле з'яўляецца абавязковым. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
- msgstr "Гэта не правільны адрас электроннай пошты. "
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "Там няма малюнкаў у гэтай галерэі "
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "элемент(ы)"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr "Першая"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "Папярэдні"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "Наступная"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "Апошні"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "Да першай старонцы "
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "Перайсці на папярэднюю старонку"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "з "
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr "Перайсці да наступнай старонцы "
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "Перайсці да апошняй старонцы "
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "Скід"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "Пошук"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr "Там няма тэмы абраны або тэма была выдаленая"
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "Там няма абранага альбома ці альбом быў выдалены "
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "Там няма малюнкаў у гэтай галерэі "
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "Вярнуцца "
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "Альбом пусты "
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "Галерэя пусты "
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "Больш"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "Схаваць"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "Там няма галерэя абраны або галерэі быў выдалены "
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "Паказаць каментары "
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr "Адправіць на Facebook "
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr "Адправіць на Twitter "
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "Адправіць у Google+ "
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr "Адправіць на Twitter "
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr "Адправіць на Twitter "
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "Вобраз быў выдалены"
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "Гуляць"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "Максімізацыя "
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "Поўнаэкранны "
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "Паказаць інфармацыю"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "Паказаць рэйтынг"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "Адкрыць малюнак у арыгінальным памеры."
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "Спампаваць арыгінальнае малюнак"
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "праглядаў:"
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "Пакуль не ацэнена"
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "галасоў: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "Адмяніць свой ​​рэйтынг"
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "Вы ўжо ацанілі"
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Памылка. Няправільны код верыфікацыі. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "Схаваць Каментарыі "
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr " Імя "
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "E-mail "
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "Каментар"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "код пацверджання"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "Уявіце "
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Ваш каментар чакае мадэрацыі "
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "Выдаліць каментар"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr "Паказаць каментары"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Схаваць"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "Схаваць рэйтынг"
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
305
  msgid "Restore"
306
  msgstr "Аднаўленне "
307
 
308
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
309
  msgid "Exit Fullscreen"
310
  msgstr "Выйдзіце на ўвесь экран "
311
 
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
316
  msgid "Pause"
317
  msgstr "Паўза "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:40+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:42+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: be_BY\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
  msgstr "поле з'яўляецца абавязковым. "
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
+ msgstr "Гэта не правільны адрас электроннай пошты."
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "Там няма малюнкаў Вашаму пошуку."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "элемент(ы)"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Першая"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Папярэдні"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Наступная"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Апошні"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Да першай старонцы "
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Перайсці на папярэднюю старонку"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "з "
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Перайсці да наступнай старонцы "
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Перайсці да апошняй старонцы "
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Скід"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Пошук"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Там няма тэмы абраны або тэма была выдаленая"
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Там няма абранага альбома ці альбом быў выдалены "
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Там няма малюнкаў у гэтай галерэі "
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "Вярнуцца "
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "Альбом пусты "
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "Галерэя пусты "
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "Больш"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "Схаваць"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Там няма галерэя абраны або галерэі быў выдалены "
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "Паказаць каментары "
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr "Адправіць на Facebook "
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr "Адправіць на Twitter "
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "Адправіць у Google+ "
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "Выкласці на Pinterest"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "Выкласці на Tumblr"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "Вобраз быў выдалены"
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "Гуляць"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "Максімізацыя "
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "Поўнаэкранны "
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "Паказаць інфармацыю"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "Паказаць рэйтынг"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "Адкрыць малюнак у арыгінальным памеры."
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "Спампаваць арыгінальнае малюнак"
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "праглядаў:"
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "Намінальная."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "Пакуль не ацэнена"
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "галасоў: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "Адмяніць свой ​​рэйтынг"
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "Вы ўжо ацанілі"
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "Памылка. Няправільны код верыфікацыі. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "Схаваць Каментарыі "
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr " Імя "
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "E-mail "
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "Каментар"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "код пацверджання"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "Уявіце "
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "Ваш каментар чакае мадэрацыі "
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "Выдаліць каментар"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr "Паказаць каментары"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
296
  #, fuzzy
297
  msgid "Hide info"
298
  msgstr "Схаваць"
299
 
300
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
301
  msgid "Hide rating"
302
  msgstr "Схаваць рэйтынг"
303
 
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
305
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
306
  msgid "Restore"
307
  msgstr "Аднаўленне "
308
 
309
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
310
  msgid "Exit Fullscreen"
311
  msgstr "Выйдзіце на ўвесь экран "
312
 
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
316
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
317
  msgid "Pause"
318
  msgstr "Паўза "
languages/bwg-bg_BG.mo CHANGED
Binary file
languages/bwg-bg_BG.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:47+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:49+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: bg\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "е задължително поле. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Това не е валиден имейл адрес. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Има още няма снимки в тази галерия"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "элемент(и)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Първа"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Предишна"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Следваща"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Последен"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Отиди на първата страница"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Отидете на предишната страница."
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "на"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Преминете към следващата страница"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Отиди до последната страница"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Search"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Не е избрана тема или темата е била изтрита"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Не е избран албум или албумът е изтрит."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Има още няма снимки в тази галерия"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Назад към"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr " Албум е празна"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Галерията е празна"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Повече"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Скриване"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Не е избран галерия или галерията е била изтрита."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Покажи коментари"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Споделяне на Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Споделяне на Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Споделете в Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Споделяне на Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Споделяне на Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Образът е изтрит"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Възпроизвеждане"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Увеличете"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Полноэкранный"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Покажи информация"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Покажи рейтинг"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Open снимката в оригинален размер. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Изтегляне на оригиналното изображение"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Посещения:"
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Все още неоценен."
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Гласове: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Отмени вашата оценка."
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Вече сте оценили. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Грешка. Грешен код за потвърждение. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Скриване на коментарите"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Име"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Коментар"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Verification Code"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Изпращане"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Вашият коментар изчаква умереност"
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Изтриване на коментар"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Покажи коментарите"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Скриване"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Hide рейтинг"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Възстанови"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Изход полный экран"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Пауза"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:42+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:43+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: bg\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "е задължително поле."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Това не е валиден имейл адрес."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Не са открити снимки, отговарящи на вашето търсене."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "элемент(и)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Първа"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Предишна"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Следваща"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Последен"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Отиди на първата страница"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Отидете на предишната страница."
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "на"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Преминете към следващата страница"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Отиди до последната страница"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Search"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Не е избрана тема или темата е била изтрита"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Не е избран албум или албумът е изтрит."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Има още няма снимки в тази галерия"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Назад към"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr " Албум е празна"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Галерията е празна"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Повече"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Скриване"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Не е избран галерия или галерията е била изтрита."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Покажи коментари"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Споделяне на Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Споделяне на Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Споделете в Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Сподели на Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Сподели на Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Образът е изтрит"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Възпроизвеждане"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Увеличете"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Полноэкранный"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Покажи информация"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Покажи рейтинг"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Open снимката в оригинален размер. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Изтегляне на оригиналното изображение"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Посещения:"
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Номинално."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Все още неоценен."
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Гласове: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Отмени вашата оценка."
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Вече сте оценили. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Грешка. Грешен код за потвърждение. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Скриване на коментарите"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Име"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Коментар"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Verification Code"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Изпращане"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Вашият коментар изчаква умереност"
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Изтриване на коментар"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Покажи коментарите"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Скриване на информация"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Hide рейтинг"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Възстанови"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Изход полный экран"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Пауза"
languages/bwg-ca.mo CHANGED
Binary file
languages/bwg-ca.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:49+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:51+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ca\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "Es requereix camp. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Això no és una adreça de correu electrònic vàlida. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "No hi ha imatges en aquesta galeria."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "article(s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "En primer lloc"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Anterior"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Següent"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Passat"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Anar a la primera pàgina "
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Anar a la pàgina anterior"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "de "
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Anar a la pàgina següent"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Anar a l'última pàgina"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Restablir"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Cerca"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "No hi ha tema seleccionat o s'ha eliminat el tema."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "No hi ha cap àlbum seleccionat o es va eliminar l'àlbum."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "No hi ha imatges en aquesta galeria."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Tornar"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Àlbum està buit."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galeria és buida."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Més"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Amaga"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "No hi ha galeria seleccionada o la galeria s'ha eliminat."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Mostrar comentaris"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Comparteix a Facebook "
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Comparteix a Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Comparteix a Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Comparteix a Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Comparteix a Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "La imatge ha estat esborrada."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Juga"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximitzar"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Pantalla completa "
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Mostra la informació"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Mostra classificació"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Obrir imatge en mida original."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Descarregar la imatge original"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "hits:"
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "No s'ha classificat. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "vots: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Cancel seva qualificació. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Ja has valorat. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Error. Incorrecta del codi de verificació. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Amaga comentaris "
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nom"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Comentari"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "codi de verificació"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Enviar"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "La vostra revisió està pendent de moderació "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Eliminar comentari"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Mostrar comentaris"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Amaga"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Amaga qualificació"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Restaurar"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Surt de la pantalla completa"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pausa"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:43+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:44+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ca\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "Es requereix camp."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Això no és una adreça de correu electrònic vàlida."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "No hi ha imatges que coincideixen amb la vostra cerca."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "article(s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "En primer lloc"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Anterior"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Següent"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Passat"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Anar a la primera pàgina "
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Anar a la pàgina anterior"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "de "
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Anar a la pàgina següent"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Anar a l'última pàgina"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Restablir"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Cerca"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "No hi ha tema seleccionat o s'ha eliminat el tema."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "No hi ha cap àlbum seleccionat o es va eliminar l'àlbum."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "No hi ha imatges en aquesta galeria."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Tornar"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Àlbum està buit."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galeria és buida."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Més"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Amaga"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "No hi ha galeria seleccionada o la galeria s'ha eliminat."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Mostrar comentaris"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Comparteix a Facebook "
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Comparteix a Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Comparteix a Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Compartir a Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Compartir a Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "La imatge ha estat esborrada."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Juga"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximitzar"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Pantalla completa "
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Mostra la informació"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Mostra classificació"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Obrir imatge en mida original."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Descarregar la imatge original"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "hits:"
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Puntuació."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "No s'ha classificat. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "vots: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Cancel seva qualificació. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Ja has valorat. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Error. Incorrecta del codi de verificació. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Amaga comentaris "
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nom"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Comentari"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "codi de verificació"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Enviar"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "La vostra revisió està pendent de moderació "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Eliminar comentari"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Mostrar comentaris"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Anterior informació"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Amaga qualificació"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Restaurar"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Surt de la pantalla completa"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pausa"
languages/bwg-cs_CZ.mo CHANGED
Binary file
languages/bwg-cs_CZ.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:51+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:54+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "je povinné pole. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Toto není platná e-mailová adresa. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "V této galerii žádné snímky"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "položka(ek)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "První"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Předchozí"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Další"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Trvat"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Přejít na první stránku"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Přejít na předchozí stránku"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "z"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Přejděte na další stránku"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Přejít na poslední stránku"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Obnovit"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Hledat"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Není vybrán žádný motiv nebo téma bylo smazáno"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Neexistuje žádný vybrané album nebo alba byl smazán"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "V této galerii žádné snímky"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Zpět"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album je prázdný"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galerie je prázdná"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Více"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Skrýt"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Není vybrán žádný galerie nebo galerie byla smazána"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Ukaž komentáře"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Sdílejte na Facebooku"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Sdílet na Twitteru"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Sdílet na Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Sdílet na Twitteru"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Sdílet na Twitteru"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Obraz byl smazán"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Přehrát"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximalizovat"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Celá obrazovka"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Zobrazit informace"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Zobrazit hodnocení"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Otevřít obrázek v původní velikosti."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Stáhnout původní obrázek. "
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Zobrazení: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Zatím nebyla hodnocena. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "hlasů: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Zrušit své hodnocení"
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Už jste hodnotili"
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Chyba. Nesprávný ověřovací kód. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Skrýt komentáře"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Jméno"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-mail "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Komentovat"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Ověřovací kód"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Odeslat"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Váš komentář čeká na moderování "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Odstranit komentář"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Zobrazit komentáře"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Skrýt"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Skrýt hodnocení"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Obnovit"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Ukončete celá obrazovka"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pauza"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:45+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:46+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "je povinné pole."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Toto není platná e-mailová adresa."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Nejsou žádné snímky, které odpovídají zadaným."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "položka(ek)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "První"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Předchozí"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Další"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Trvat"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Přejít na první stránku"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Přejít na předchozí stránku"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "z"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Přejděte na další stránku"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Přejít na poslední stránku"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Obnovit"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Hledat"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Není vybrán žádný motiv nebo téma bylo smazáno"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Neexistuje žádný vybrané album nebo alba byl smazán"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "V této galerii žádné snímky"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Zpět"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album je prázdný"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galerie je prázdná"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Více"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Skrýt"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Není vybrán žádný galerie nebo galerie byla smazána"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Ukaž komentáře"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Sdílejte na Facebooku"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Sdílet na Twitteru"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Sdílet na Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Share on Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Share on Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Obraz byl smazán"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Přehrát"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximalizovat"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Celá obrazovka"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Zobrazit informace"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Zobrazit hodnocení"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Otevřít obrázek v původní velikosti."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Stáhnout původní obrázek. "
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Zobrazení: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Jmenovitý."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Zatím nebyla hodnocena. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "hlasů: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Zrušit své hodnocení"
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Už jste hodnotili"
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Chyba. Nesprávný ověřovací kód. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Skrýt komentáře"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Jméno"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-mail "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Komentovat"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Ověřovací kód"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Odeslat"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Váš komentář čeká na moderování "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Odstranit komentář"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Zobrazit komentáře"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Skrýt"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Skrýt hodnocení"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Obnovit"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Ukončete celá obrazovka"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pauza"
languages/bwg-da_DK.mo CHANGED
Binary file
languages/bwg-da_DK.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:57+0300\n"
5
- "PO-Revision-Date: 2014-05-27 17:59+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: da\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "felt er påkrævet. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Dette er ikke en gyldig e-mail-adresse. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Der er ingen billeder i dette galleri."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "vare (r)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "First"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Forrige"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Næste"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Sidste"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Gå til første side"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Gå til den forrige side."
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "af"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Gå til næste side"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Gå til sidste side"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Søg"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Der er ikke valgt tema eller temaet blev slettet"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr " Der er ikke valgt album eller albummet blev slettet"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Der er ingen billeder i dette galleri."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Back"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album er tom."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery er tom."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Mere"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Skjul"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Der er ikke valgt galleri eller galleriet blev slettet."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Vis kommentarer"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Del på Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Del på Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Del på Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Del på Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Del på Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Billedet er blevet slettet."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Afspil"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimer"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Vis info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Vis rating"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Åbn billede i original størrelse"
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Download originalbilledet"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Ikke bedømt endnu. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "stemmer: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Annullere din bedømmelse. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Du har allerede bedømt. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Fejl. Forkert bekræftelseskode. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Skjul kommentarer"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Navn"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-mail "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Kommentar"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "bekræftelseskode"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Send"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Din kommentar afventer moderation "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Slet kommentar"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Vis kommentarer"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Skjul"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Skjul rating."
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Gendan"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Afslut fuldskærm"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pause"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:46+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:47+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: da\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "felt er påkrævet."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Dette er ikke en gyldig e-mail-adresse."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Der er ingen billeder matcher din søgning."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "vare (r)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "First"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Forrige"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Næste"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Sidste"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Gå til første side"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Gå til den forrige side."
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "af"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Gå til næste side"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Gå til sidste side"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Søg"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Der er ikke valgt tema eller temaet blev slettet"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr " Der er ikke valgt album eller albummet blev slettet"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Der er ingen billeder i dette galleri."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Back"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album er tom."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery er tom."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Mere"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Skjul"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Der er ikke valgt galleri eller galleriet blev slettet."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Vis kommentarer"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Del på Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Del på Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Del på Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Del på Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Del på Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Billedet er blevet slettet."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Afspil"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimer"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Vis info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Vis rating"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Åbn billede i original størrelse"
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Download originalbilledet"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Bedømt."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Ikke bedømt endnu. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "stemmer: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Annullere din bedømmelse. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Du har allerede bedømt. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Fejl. Forkert bekræftelseskode. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Skjul kommentarer"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Navn"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-mail "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Kommentar"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "bekræftelseskode"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Send"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Din kommentar afventer moderation "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Slet kommentar"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Vis kommentarer"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Skjul"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Skjul rating."
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Gendan"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Afslut fuldskærm"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pause"
languages/bwg-de_DE.mo CHANGED
Binary file
languages/bwg-de_DE.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 17:59+0300\n"
5
- "PO-Revision-Date: 2014-05-27 18:00+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "Feld ist erforderlich. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Dies ist keine gültige E-Mail-Adresse. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Es sind keine Bilder in dieser Galerie"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "Artikel(s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Erste"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Vorherige"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Weiter"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Laden"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Gehen Sie auf die erste Seite"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Gehen Sie auf die vorherige Seite"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "von"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Gehen Sie auf der nächsten Seite"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Gehen Sie auf der letzten Seite"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Zurücksetzen"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Suchen"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Es gibt kein Thema ausgewählt oder das Thema gelöscht wurde"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Es gibt kein Album ausgewählt oder das Album gelöscht wurd"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Es sind keine Bilder in dieser Galerie"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Zurück"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album ist leer"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galerie ist leer"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Mehr"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Ausblenden"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Es gibt keine Galerie ausgewählt oder die Galerie gelöscht wurde"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Kommentare anzeigen"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Teilen auf Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Teilen Sie auf Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Teilen auf Google+ "
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Teilen Sie auf Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Teilen Sie auf Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Das Bild wurde gelöscht. "
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Spielen"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximieren"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Vollbild"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Info anzeigen"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Zeigen Bewertung"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Bild in Originalgröße. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Originalbild"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Treffer: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Noch nicht bewertet. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Stimmen: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Abbrechen Ihre Bewertung. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Sie haben schon bewertet. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Fehler. Falsche Verifikations-Code. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Kommentare ausblenden "
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Zu nennen"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-Mail "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Kommentar"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Bestätigungs-Code"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Senden"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Ihr Kommentar wartet auf Moderation "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Kommentar löschen"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Anmerkungen anzeigen "
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Ausblenden"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Bewertung ausblenden"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Wiederherstellen"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Verlassen Sie Vollbild "
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pause"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:48+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:50+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "Feld ist erforderlich."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Dies ist keine gültige E-Mail-Adresse."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Es gibt keine Bilder, die Ihren Such."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "Artikel(s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Erste"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Vorherige"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Weiter"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Laden"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Gehen Sie auf die erste Seite"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Gehen Sie auf die vorherige Seite"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "von"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Gehen Sie auf der nächsten Seite"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Gehen Sie auf der letzten Seite"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Zurücksetzen"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Suchen"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Es gibt kein Thema ausgewählt oder das Thema gelöscht wurde"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Es gibt kein Album ausgewählt oder das Album gelöscht wurd"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Es sind keine Bilder in dieser Galerie"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Zurück"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album ist leer"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galerie ist leer"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Mehr"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Ausblenden"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Es gibt keine Galerie ausgewählt oder die Galerie gelöscht wurde"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Kommentare anzeigen"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Teilen auf Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Teilen Sie auf Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Teilen auf Google+ "
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Share on Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Share on Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Das Bild wurde gelöscht. "
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Spielen"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximieren"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Vollbild"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Info anzeigen"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Zeigen Bewertung"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Bild in Originalgröße. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Originalbild"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Treffer: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Nenn."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Noch nicht bewertet. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Stimmen: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Abbrechen Ihre Bewertung. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Sie haben schon bewertet. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Fehler. Falsche Verifikations-Code. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Kommentare ausblenden "
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Zu nennen"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-Mail "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Kommentar"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Bestätigungs-Code"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Senden"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Ihr Kommentar wartet auf Moderation "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Kommentar löschen"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Anmerkungen anzeigen "
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
  msgstr "Ausblenden"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Bewertung ausblenden"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Wiederherstellen"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Verlassen Sie Vollbild "
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pause"
languages/bwg-el.mo CHANGED
Binary file
languages/bwg-el.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 18:01+0300\n"
5
- "PO-Revision-Date: 2014-05-27 18:06+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: el\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "το πεδίο είναι υποχρεωτικό. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Αυτό δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "στοιχείο"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Πρώτον"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Προηγούμενη"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Επόμενο"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Φορτίο"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Πήγαινε στην πρώτη σελίδα"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Μετάβαση στην προηγούμενη σελίδα"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "της"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Μετάβαση στην επόμενη σελίδα"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Μετάβαση στην τελευταία σελίδα"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Επαναφορά"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Αναζήτηση"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Δεν υπάρχει θέμα επιλογής ή το θέμα διαγράφηκε"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Δεν υπάρχει επιλεγμένο άλμπουμ ή το άλμπουμ έχει διαγραφεί"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Πίσω"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album είναι άδειο"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery σας είναι άδειο"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Περισσότερα"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Απόκρυψη"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Δεν υπάρχει επιλεγμένη γκαλερί ή η γκαλερί έχει διαγραφεί"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Δείτε σχόλια"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Μοιραστείτε στο Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Μοιραστείτε στο Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Μοιραστείτε στο Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Μοιραστείτε στο Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Μοιραστείτε στο Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Η εικόνα έχει διαγραφεί."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Παίξτε"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Μεγιστοποίηση"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Πλήρης οθόνη"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Δείτε πληροφορίες"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Εμφάνιση αξιολόγησης"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Ανοίξτε την εικόνα στο αρχικό της μέγεθος."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Κατεβάστε αρχική εικόνα"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Επισκέψεις: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Δεν έχει βαθμολογηθεί ακόμα. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "ψήφοι: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Ακύρωση βαθμολογία σας. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Έχετε ήδη αξιολογήσει. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Σφάλμα. Λάθος Κωδικός Επαλήθευσης. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Απόκρυψη Σχόλια"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Όνομα"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Σχόλιο"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Κωδικός Επαλήθευσης"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Υποβολή"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Το σχόλιό σας αναμένει συγκράτηση "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Διαγραφή σχολίου"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Εμφάνιση σχολίων"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Απόκρυψη"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Απόκρυψη βαθμολογία."
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Επαναφορά"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Έξοδος από πλήρη οθόνη"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Παύση"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:52+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:52+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: el\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "το πεδίο είναι υποχρεωτικό. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Αυτό δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Δεν υπάρχουν εικόνες που ταιριάζουν στην αναζήτησή σας."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "στοιχείο"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Πρώτον"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Προηγούμενη"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Επόμενο"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Φορτίο"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Πήγαινε στην πρώτη σελίδα"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Μετάβαση στην προηγούμενη σελίδα"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "της"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Μετάβαση στην επόμενη σελίδα"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Μετάβαση στην τελευταία σελίδα"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Επαναφορά"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Αναζήτηση"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Δεν υπάρχει θέμα επιλογής ή το θέμα διαγράφηκε"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Δεν υπάρχει επιλεγμένο άλμπουμ ή το άλμπουμ έχει διαγραφεί"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Δεν υπάρχουν εικόνες σε αυτή την συλλογή"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Πίσω"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album είναι άδειο"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery σας είναι άδειο"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Περισσότερα"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Απόκρυψη"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Δεν υπάρχει επιλεγμένη γκαλερί ή η γκαλερί έχει διαγραφεί"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Δείτε σχόλια"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Μοιραστείτε στο Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Μοιραστείτε στο Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Μοιραστείτε στο Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Μοιραστείτε στο Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Μοιραστείτε στο Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Η εικόνα έχει διαγραφεί."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Παίξτε"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Μεγιστοποίηση"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Πλήρης οθόνη"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Δείτε πληροφορίες"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Εμφάνιση αξιολόγησης"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Ανοίξτε την εικόνα στο αρχικό της μέγεθος."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Κατεβάστε αρχική εικόνα"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Επισκέψεις: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Ονομαστική."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Δεν έχει βαθμολογηθεί ακόμα. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "ψήφοι: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Ακύρωση βαθμολογία σας. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Έχετε ήδη αξιολογήσει. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Σφάλμα. Λάθος Κωδικός Επαλήθευσης. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Απόκρυψη Σχόλια"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Όνομα"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Σχόλιο"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Κωδικός Επαλήθευσης"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Υποβολή"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Το σχόλιό σας αναμένει συγκράτηση "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Διαγραφή σχολίου"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Εμφάνιση σχολίων"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Απόκρυψη"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Απόκρυψη βαθμολογία."
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Επαναφορά"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Έξοδος από πλήρη οθόνη"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Παύση"
languages/bwg-en_US.mo CHANGED
Binary file
languages/bwg-en_US.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-27 18:06+0300\n"
5
- "PO-Revision-Date: 2014-05-27 18:07+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_GB\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "field is required."
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "This is not a valid email address."
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "There are no images in this gallery."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "item(s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "First"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Previous"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Next"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Last"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Go to the first page"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Go to the previous page"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "of"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Go to the next page"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Go to the last page"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Search"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "There is no theme selected or the theme was deleted."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "There is no album selected or the album was deleted."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "There are no images in this gallery."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Back"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album is empty."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery is empty."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "More"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Hide"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "There is no gallery selected or the gallery was deleted."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Show comments"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Share on Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Share on Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Share on Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Share on Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Share on Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "The image has been deleted."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Play"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximize"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
- msgstr "The image has been deleted."
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Show rating"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Open image in original size."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Download original image"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Not rated yet."
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Votes: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Cancel your rating."
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "You have already rated."
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Error. Incorrect Verification Code."
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Hide Comments"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Name"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Comment"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Verification Code"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Submit"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Your comment is awaiting moderation"
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Delete Comment"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Show Comments"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Hide"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Hide rating"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Restore"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Exit Fullscreen"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pause"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:30+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:36+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_GB\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "field is required."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "This is not a valid email address."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "There are no images matching your search."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "item(s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "First"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Previous"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Next"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Last"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Go to the first page"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Go to the previous page"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "of"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Go to the next page"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Go to the last page"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Search"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "There is no theme selected or the theme was deleted."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "There is no album selected or the album was deleted."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "There are no images in this gallery."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Back"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album is empty."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery is empty."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "More"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Hide"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "There is no gallery selected or the gallery was deleted."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Show comments"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Share on Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Share on Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Share on Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Share on Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Share on Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "The image has been deleted."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Play"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximize"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
+ msgstr "Show info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Show rating"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Open image in original size."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Download original image"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Rated."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Not rated yet."
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Votes: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Cancel your rating."
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "You have already rated."
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Error. Incorrect Verification Code."
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Hide Comments"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Name"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Comment"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Verification Code"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Submit"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Your comment is awaiting moderation"
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Delete Comment"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Show Comments"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Hide info"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Hide rating"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Restore"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Exit Fullscreen"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pause"
languages/bwg-eo_EO.mo CHANGED
Binary file
languages/bwg-eo_EO.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:09+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:11+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: eo\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "kampo estas bezonata. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Tio ne estas valida retadreso. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Ne estas bildoj en ĉi galerion."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "listero"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Unua"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Malantaŭa"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Sekva"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Daŭri"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Iru al la unua paĝo"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Iru al la antaŭa paĝo"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "de"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Iru al la sekva paĝo"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Iru al la lasta paĝo"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Restarigi"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Serĉu"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Ne estas la temo elektita aŭ la temo estis forigita."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Ne estas disko selektitaj aŭ la albumo estis forigita."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Ne estas bildoj en ĉi galerion."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Dorso"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Albumo estas malplena"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galerio estas malplena"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Pli"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Kaŝi"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Ne estas galerio selektitaj aŭ la galerio estis forigita."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Montri komentojn"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Kunhavigi en Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Kunhavigi en Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Kunhavigi sur Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Kunhavigi en Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Kunhavigi en Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "La bildo estas forigita"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Ludi"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimumigi"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Montru informoj"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Montru kvalifikon"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Malferma bildo in originala grandeco. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Elŝuti originala bildo"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Trafoj: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Ne rated ankoraŭ."
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Voĉdonoj: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Nuligi via takso. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Vi jam rated. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Eraro. Malĝusta Konfirma Kodo. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Kaŝi Komentoj"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nomo"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "retpoŝto "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Komento"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Konfirma kodo"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Submetu"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Via komento atendas modereco "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Forigi Komento"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Montri komentojn"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Kaŝi"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Kaŝi kvalifikon"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Redonu"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Eliro Fullscreen"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Paŭzi"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:53+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:54+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: eo\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "kampo estas bezonata. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Tio ne estas valida retadreso. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Ne estas bildoj kongruas kun via serĉo."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "listero"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Unua"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Malantaŭa"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Sekva"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Daŭri"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Iru al la unua paĝo"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Iru al la antaŭa paĝo"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "de"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Iru al la sekva paĝo"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Iru al la lasta paĝo"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Restarigi"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Serĉu"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Ne estas la temo elektita aŭ la temo estis forigita."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Ne estas disko selektitaj aŭ la albumo estis forigita."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Ne estas bildoj en ĉi galerion."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Dorso"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Albumo estas malplena"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galerio estas malplena"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Pli"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Kaŝi"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Ne estas galerio selektitaj aŭ la galerio estis forigita."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Montri komentojn"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Kunhavigi en Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Kunhavigi en Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Kunhavigi sur Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Dividi en Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Dividi en Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "La bildo estas forigita"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Ludi"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimumigi"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Montru informoj"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Montru kvalifikon"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Malferma bildo in originala grandeco. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Elŝuti originala bildo"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Trafoj: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Rated."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Ne rated ankoraŭ."
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Voĉdonoj: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Nuligi via takso. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Vi jam rated. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Eraro. Malĝusta Konfirma Kodo. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Kaŝi Komentoj"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nomo"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "retpoŝto "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Komento"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Konfirma kodo"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Submetu"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Via komento atendas modereco "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Forigi Komento"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Montri komentojn"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Kaŝi"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Kaŝi kvalifikon"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Redonu"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Eliro Fullscreen"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Paŭzi"
languages/bwg-es_ES.mo CHANGED
Binary file
languages/bwg-es_ES.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:12+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:14+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "Se requiere campo. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Esto no es una dirección de correo electrónico válida. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "No hay imágenes en esta galería."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "artículo (s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "En primer lugar"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Anterior"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Siguiente"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Pasado"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Ir a la primera página"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Ir a la página anterior"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "de"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Ir a la página siguiente"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Ir a la última página"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Restablecer"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Búsqueda"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "No hay tema seleccionado o se ha eliminado el tema"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "No hay ningún álbum seleccionado o se eliminó el álbum"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "No hay imágenes en esta galería."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Back"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Álbum está vacío"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galería está vacía"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Más"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Ocultar"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "No hay galería seleccionada o la galería se ha eliminado."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Mostrar comentarios"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Comparte en Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Comparte en Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Comparte en Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Comparte en Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Comparte en Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "La imagen ha sido borrada. "
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Juega"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximizar"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Pantalla completa"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Mostrar info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Mostrar clasificación"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Abrir imagen en tamaño original. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Descargar la imagen original"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "No se ha clasificado. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Votos: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Cancelar su calificación. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Ya has valorado. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Error. Incorrecta del código de verificación. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Ocultar comentarios"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nombre"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Comentario"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Código de Verificación"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Enviar"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Tu comentario está pendiente de moderación "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Eliminar comentario"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Restaurar"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Ocultar"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Ocultar calificación"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Restaurar"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Salir de pantalla completa"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pausa"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:54+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:55+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "Se requiere campo. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Esto no es una dirección de correo electrónico válida."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "No hay imágenes que coinciden con su búsqueda."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "artículo (s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "En primer lugar"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Anterior"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Siguiente"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Pasado"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Ir a la primera página"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Ir a la página anterior"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "de"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Ir a la página siguiente"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Ir a la última página"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Restablecer"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Búsqueda"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "No hay tema seleccionado o se ha eliminado el tema"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "No hay ningún álbum seleccionado o se eliminó el álbum"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "No hay imágenes en esta galería."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Back"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Álbum está vacío"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galería está vacía"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Más"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Ocultar"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "No hay galería seleccionada o la galería se ha eliminado."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Mostrar comentarios"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Comparte en Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Comparte en Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Comparte en Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Compartir en Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Compartir en Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "La imagen ha sido borrada. "
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Juega"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximizar"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Pantalla completa"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Mostrar info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Mostrar clasificación"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Abrir imagen en tamaño original. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Descargar la imagen original"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Puntuación."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "No se ha clasificado. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Votos: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Cancelar su calificación. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Ya has valorado. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Error. Incorrecta del código de verificación. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Ocultar comentarios"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nombre"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Comentario"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Código de Verificación"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Enviar"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Tu comentario está pendiente de moderación "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Eliminar comentario"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Restaurar"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Anterior información"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Ocultar calificación"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Restaurar"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Salir de pantalla completa"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pausa"
languages/bwg-et.mo CHANGED
Binary file
languages/bwg-et.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:15+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:16+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: et\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "valdkonnas on vaja. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "See ei ole kehtiv e-posti aadress. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Puuduvad pildid selles galeriis."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "objekt"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Esimene"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Eelmine"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Järgmine"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Viimane"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Mine esimesele lehele"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Mine eelmisele lehele"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "kohta"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Mine järgmisele lehele"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Mine viimasele lehele"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Otsi"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Ei ole teema valik või teema kustutati."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Ühtegi albumit valitud või album kustutati."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Puuduvad pildid selles galeriis."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Tagasi"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album on tühi."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galerii on tühi."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Rohkem"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Peida"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Ei ole valitud galeriisse või galerii kustutatud."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Näita kommentaare."
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Jaga Facebookis."
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Jaga veebisaidil Twitter."
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Jaga Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Jaga veebisaidil Twitter."
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Jaga veebisaidil Twitter."
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Pilt on eemaldatud. "
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Esita"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimeerida"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Näita info. "
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Näita hinnang"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Ava pilt originaalsuuruses."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Lae alla originaalpilt"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Pole veel hinnatud. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Hääli: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Loobu oma hinnang. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Te olete juba hinnatud."
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Viga. Vale kinnituskood. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Peida kommentaarid"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nimi"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Post"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Kommentaar"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Kontrollkood"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Saada"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Sinu kommentaar ootab mõõdukalt "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Kustuta kommentaar"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Näita Kommentaarid"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Peida"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Peida hinnang"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Taasta"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Exit Fullscreen"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Paus"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:55+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:56+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: et\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "valdkonnas on vaja. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "See ei ole kehtiv e-posti aadress."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Puuduvad pildid Teie otsingukriteeriumitele."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "objekt"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Esimene"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Eelmine"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Järgmine"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Viimane"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Mine esimesele lehele"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Mine eelmisele lehele"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "kohta"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Mine järgmisele lehele"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Mine viimasele lehele"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Otsi"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Ei ole teema valik või teema kustutati."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Ühtegi albumit valitud või album kustutati."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Puuduvad pildid selles galeriis."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Tagasi"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album on tühi."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galerii on tühi."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Rohkem"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Peida"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Ei ole valitud galeriisse või galerii kustutatud."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Näita kommentaare."
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Jaga Facebookis."
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Jaga veebisaidil Twitter."
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Jaga Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Jaga Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Jaga Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Pilt on eemaldatud. "
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Esita"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimeerida"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Näita info. "
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Näita hinnang"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Ava pilt originaalsuuruses."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Lae alla originaalpilt"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Hinnatud."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Pole veel hinnatud. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Hääli: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Loobu oma hinnang. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Te olete juba hinnatud."
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Viga. Vale kinnituskood. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Peida kommentaarid"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nimi"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Post"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Kommentaar"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Kontrollkood"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Saada"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Sinu kommentaar ootab mõõdukalt "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Kustuta kommentaar"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Näita Kommentaarid"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Peida"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Peida hinnang"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Taasta"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Exit Fullscreen"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Paus"
languages/bwg-fa_IR.mo CHANGED
Binary file
languages/bwg-fa_IR.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:17+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:18+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fa\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "فیلد الزامی است."
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "این یک آدرس ایمیل معتبر نیست. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "تصویر در این گالری وجود دارد"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "آیتم استفاده کنید"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "نخست"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "قبلی"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "بعد"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "تاریخ و زمان آخرین"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "برو به صفحه اول"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "برو به صفحه قبلی"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "از"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "برو به صفحه بعد"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "برو به صفحه آخر"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "تنظیم مجدد"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "جستجو"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "هیچ موضوع انتخاب شده وجود دارد و یا موضوع حذف شد"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "هیچ آلبوم انتخاب شده وجود دارد و یا این آلبوم حذف شد"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "تصویر در این گالری وجود دارد"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "برگشت"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "آلبوم خالی است"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "گالری خالی است"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "بیشتر"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "مخفی شود"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "هیچ گالری انتخاب شده وجود دارد و یا از گالری حذف شده است"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "نمایش نظرات"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "در فیس بوک به اشتراک بگذارید"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "در توییتر به اشتراک بگذارید"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "در + Google به اشتراک بگذارید"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "در توییتر به اشتراک بگذارید"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "در توییتر به اشتراک بگذارید"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "تصویر حذف شده است"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "بازی"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "به حداکثر رساندن"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "تمام صفحه"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "نمایش اطلاعات"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "نمایش امتیاز"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "باز کردن تصویر در اندازه اصلی"
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "دانلود تصویر اصلی"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "بازدید:"
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "هنوز رتبه بندی نشده"
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "امتیاز: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "لغو امتیاز خود را"
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "شما در حال حاضر به امتیاز"
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "خطا. کد امنیتی اشتباه است. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "مخفی کردن نظرات"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "نام و نام خانوادگی"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "پست الکترونیک "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "نظر"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "کد امنیتی"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "ثبت کردن"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "نظر شما در انتظار تایید"
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "حذف نظر"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "نمایش نظرات"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "مخفی شود"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "مخفی کردن امتیاز"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "بازگرداندن"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "خروج از تمام صفحه"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "مکث"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:56+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:58+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fa\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "فیلد الزامی است."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "این یک آدرس ایمیل معتبر نیست. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "تصویر مطابق با جستجو شما وجود دارد."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "آیتم استفاده کنید"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "نخست"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "قبلی"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "بعد"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "تاریخ و زمان آخرین"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "برو به صفحه اول"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "برو به صفحه قبلی"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "از"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "برو به صفحه بعد"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "برو به صفحه آخر"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "تنظیم مجدد"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "جستجو"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "هیچ موضوع انتخاب شده وجود دارد و یا موضوع حذف شد"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "هیچ آلبوم انتخاب شده وجود دارد و یا این آلبوم حذف شد"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "تصویر در این گالری وجود دارد"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "برگشت"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "آلبوم خالی است"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "گالری خالی است"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "بیشتر"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "مخفی شود"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "هیچ گالری انتخاب شده وجود دارد و یا از گالری حذف شده است"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "نمایش نظرات"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "در فیس بوک به اشتراک بگذارید"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "در توییتر به اشتراک بگذارید"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "در + Google به اشتراک بگذارید"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "اشتراک در Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "به اشتراک گذاشتن در وبلاگ Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "تصویر حذف شده است"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "بازی"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "به حداکثر رساندن"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "تمام صفحه"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "نمایش اطلاعات"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "نمایش امتیاز"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "باز کردن تصویر در اندازه اصلی"
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "دانلود تصویر اصلی"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "بازدید:"
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "دارای رتبه."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "هنوز رتبه بندی نشده"
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "امتیاز: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "لغو امتیاز خود را"
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "شما در حال حاضر به امتیاز"
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "خطا. کد امنیتی اشتباه است. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "مخفی کردن نظرات"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "نام و نام خانوادگی"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "پست الکترونیک "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "نظر"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "کد امنیتی"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "ثبت کردن"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "نظر شما در انتظار تایید"
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "حذف نظر"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "نمایش نظرات"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "مخفی کردن اطلاعات"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "مخفی کردن امتیاز"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "بازگرداندن"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "خروج از تمام صفحه"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "مکث"
languages/bwg-fi.mo CHANGED
Binary file
languages/bwg-fi.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:19+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:21+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fi\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "kenttä on pakollinen. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Tämä ei ole voimassa oleva sähköpostiosoite. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Ei kuvia tässä galleriassa"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "kohde(tta)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Ensin"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Edellinen"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Seuraava"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Kestää"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Mene ensimmäiselle sivulle"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Siirry edelliselle sivulle"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "annettu"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Siirry seuraavalle sivulle"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Siirry viimeiselle sivulle"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Nollaa"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Etsi"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Ei ole mitään teemaa tai valitun teeman poistettiin"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Ei ole albumia valittuna tai albumin poistettiin"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Ei kuvia tässä galleriassa"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Takaisin"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Albumi on tyhjä."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galleria on tyhjä."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Enemmän"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Piilota"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Ei ole galleriaan tai galleriassa poistettiin"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Näytä kommentit"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Jaa Facebookissa"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Jaa Twitterissä"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Jaa Google+-palvelussa"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Jaa Twitterissä"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Jaa Twitterissä"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Kuva on poistettu."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Pelata"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimoimiseksi"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Näytä info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Näytä arvosanan."
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Avoin kuva alkuperäisessä koossa. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Lataa alkuperäinen kuva"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Osumia: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Ei vielä."
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Äänestykset: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Peruuta luokitus. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Olet jo arvostellut. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Virhe. Väärä Varmennuskoodi. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Piilota kommentit"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nimi"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Sähköposti"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Kommentti"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Varmennuskoodi"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Lähetä"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Kommenttisi odottaa maltillisesti "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Poista kommentti"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Näytä kommentit"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Piilota"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Piilota luokitus"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Palauta"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Poistu koko näytön"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Tauko"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:58+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 10:59+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fi\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "kenttä on pakollinen. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Tämä ei ole voimassa oleva sähköpostiosoite."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Kuvia ei ole vastaa hakuasi."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "kohde(tta)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Ensin"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Edellinen"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Seuraava"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Kestää"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Mene ensimmäiselle sivulle"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Siirry edelliselle sivulle"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "annettu"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Siirry seuraavalle sivulle"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Siirry viimeiselle sivulle"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Nollaa"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Etsi"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Ei ole mitään teemaa tai valitun teeman poistettiin"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Ei ole albumia valittuna tai albumin poistettiin"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Ei kuvia tässä galleriassa"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Takaisin"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Albumi on tyhjä."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galleria on tyhjä."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Enemmän"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Piilota"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Ei ole galleriaan tai galleriassa poistettiin"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Näytä kommentit"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Jaa Facebookissa"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Jaa Twitterissä"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Jaa Google+-palvelussa"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Jaa Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Jaa Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Kuva on poistettu."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Pelata"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimoimiseksi"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Näytä info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Näytä arvosanan."
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Avoin kuva alkuperäisessä koossa. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Lataa alkuperäinen kuva"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Osumia: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Mitoitettu."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Ei vielä."
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Äänestykset: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Peruuta luokitus. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Olet jo arvostellut. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Virhe. Väärä Varmennuskoodi. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Piilota kommentit"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nimi"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Sähköposti"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Kommentti"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Varmennuskoodi"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Lähetä"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Kommenttisi odottaa maltillisesti "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Poista kommentti"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Näytä kommentit"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Piilota tiedot"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Piilota luokitus"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Palauta"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Poistu koko näytön"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Tauko"
languages/bwg-fr_FR.mo CHANGED
Binary file
languages/bwg-fr_FR.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:22+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:23+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "champ est obligatoire. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Ce n'est pas une adresse email valide. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Il n'y a pas d'images dans cette galerie."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "article(s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Première"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Précédent"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Suivant"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Durer"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Aller à la première page"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Aller à la page précédente"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "de"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Aller à la page suivante"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Aller à la dernière page"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Réinitialiser"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Recherche"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Il n'ya pas de thème choisi ou le thème a été supprimé."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Il n'y a aucune album sélectionné ou l'album a été supprimé."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Il n'y a pas d'images dans cette galerie."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Retour"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "L'album est vide."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galerie est vide."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Plus"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Cacher"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Il n'ya pas de galerie sélectionné ou la galerie a été supprimé."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Afficher les commentaires"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Partager sur Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Partager sur Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Partager sur Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Partager sur Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Partager sur Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "L'image a été supprimée"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Lecture"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximisez"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Plein écran"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Afficher infos"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Afficher les classifications"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Ouvrir l'image dans sa taille originale. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Télécharger l'image originale"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Pas encore évalué."
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Votes:"
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Annuler votre note"
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Vous avez déjà noté. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Erreur. Code de vérification incorrecte. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Masquer les commentaires"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nom"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Commentaire"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "code de vérification"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Envoyer"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Votre commentaire est en attente de modération "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Supprimer le commentaire"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Afficher les commentaires"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Cacher"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Masquer note"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Restaurer"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Quitter plein écran"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pause"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 10:59+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:00+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "champ est obligatoire. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Ce n'est pas une adresse email valide. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Il n'y a pas d'images correspondant à votre recherche."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "article(s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Première"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Précédent"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Suivant"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Durer"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Aller à la première page"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Aller à la page précédente"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "de"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Aller à la page suivante"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Aller à la dernière page"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Réinitialiser"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Recherche"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Il n'ya pas de thème choisi ou le thème a été supprimé."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Il n'y a aucune album sélectionné ou l'album a été supprimé."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Il n'y a pas d'images dans cette galerie."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Retour"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "L'album est vide."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galerie est vide."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Plus"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Cacher"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Il n'ya pas de galerie sélectionné ou la galerie a été supprimé."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Afficher les commentaires"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Partager sur Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Partager sur Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Partager sur Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Partager sur Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Partager sur Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "L'image a été supprimée"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Lecture"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximisez"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Plein écran"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Afficher infos"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Afficher les classifications"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Ouvrir l'image dans sa taille originale. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Télécharger l'image originale"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Classé."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Pas encore évalué."
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Votes:"
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Annuler votre note"
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Vous avez déjà noté. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Erreur. Code de vérification incorrecte. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Masquer les commentaires"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nom"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Commentaire"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "code de vérification"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Envoyer"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Votre commentaire est en attente de modération "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Supprimer le commentaire"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Afficher les commentaires"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Masquer info"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Masquer note"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Restaurer"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Quitter plein écran"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pause"
languages/bwg-gl_ES.mo CHANGED
Binary file
languages/bwg-gl_ES.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:25+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:26+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "Se requiere campo. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Esto no es una dirección de correo electrónico válida. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "No hay imágenes en esta galería."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "artículo(s)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "En primer lugar"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Anterior"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Siguiente"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Pasado"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Ir a la primera página"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Ir a la página anterior"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "de"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Ir a la página siguiente"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Ir a la última página"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Restablecer"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Búsqueda"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "No hay tema seleccionado o se ha eliminado el tema."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr " No hay ningún álbum seleccionado o se eliminó el álbum."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "No hay imágenes en esta galería."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Back"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Álbum está vacío."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galería está vacía."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Más"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Ocultar"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "No hay galería seleccionada o la galería se ha eliminado."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Mostrar comentarios."
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Comparte en Facebook."
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Comparte en Twitter."
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Comparte en Google+."
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Comparte en Twitter."
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Comparte en Twitter."
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "La imagen ha sido borrada. "
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Juega"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximizar"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Pantalla completa"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Mostrar info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Mostrar clasificación"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Abrir imagen en tamaño original."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Descargar la imagen original"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "No se ha clasificado. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Votos: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Cancelar su calificación. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Ya has valorado. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Error. Incorrecta del código de verificación. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Ocultar comentarios"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nombre"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Comentario"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Código de Verificación"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Enviar"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Tu comentario está pendiente de moderación "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Eliminar comentario"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr " Mostrar comentarios"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Ocultar"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Ocultar calificación."
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Restaurar"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Salir de pantalla completa"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pausa"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:00+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:01+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "Se requiere campo. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Esto no es una dirección de correo electrónico válida. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "No hay imágenes que coinciden con su búsqueda."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "artículo(s)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "En primer lugar"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Anterior"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Siguiente"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Pasado"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Ir a la primera página"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Ir a la página anterior"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "de"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Ir a la página siguiente"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Ir a la última página"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Restablecer"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Búsqueda"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "No hay tema seleccionado o se ha eliminado el tema."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr " No hay ningún álbum seleccionado o se eliminó el álbum."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "No hay imágenes en esta galería."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Back"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Álbum está vacío."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galería está vacía."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Más"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Ocultar"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "No hay galería seleccionada o la galería se ha eliminado."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Mostrar comentarios."
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Comparte en Facebook."
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Comparte en Twitter."
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Comparte en Google+."
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Compartir en Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Compartir en Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "La imagen ha sido borrada. "
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Juega"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximizar"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Pantalla completa"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Mostrar info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Mostrar clasificación"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Abrir imagen en tamaño original."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Descargar la imagen original"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Puntuación."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "No se ha clasificado. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Votos: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Cancelar su calificación. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Ya has valorado. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Error. Incorrecta del código de verificación. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Ocultar comentarios"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nombre"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Comentario"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Código de Verificación"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Enviar"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Tu comentario está pendiente de moderación "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Eliminar comentario"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr " Mostrar comentarios"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Anterior información"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Ocultar calificación."
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Restaurar"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Salir de pantalla completa"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pausa"
languages/bwg-he_IL.mo CHANGED
Binary file
languages/bwg-he_IL.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:27+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:29+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: he_IL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "שדה נדרש."
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "זה לא כתובת דוא\"ל חוקית. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "אין תמונות בגלריה זו"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "פריט (ים)."
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "פריט (ים)."
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "קודם"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "הבא"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "אחרון"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "עבור לדף הראשון"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "עבור לדף הקודם"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "של"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "לעבור לדף הבא"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "עבור לדף האחרון"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "איפוס"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "חיפוש"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "אין נושא שנבחר או הנושא נמחק"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "אין אלבום שנבחר או את האלבום נמחק"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "אין תמונות בגלריה זו"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "חזור"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "האלבום הוא ריק"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "הגלריה היא ריקה"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "יותר"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "הסתר"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "אין גלריה הנבחרת או הגלריה נמחקה"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "הצג הערות"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "לשתף בפייסבוק"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "לשתף בטוויטר"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "שתף ב-Google +"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "לשתף בטוויטר"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "לשתף בטוויטר"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "התמונה נמחקה"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Translation:"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "מקסם"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "מסך מלא"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "הצג מידע"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "הצג דירוג"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "תמונה פתוחה בגודל מקורי."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "להוריד את התמונה מקורית"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "להיטים: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "לא דורג עדיין"
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "הצבעות: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "לבטל הדירוג שלך"
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "כבר דרגו"
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "שגיאה. מספר אימות שגויה."
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "הסתר הערות"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "שם"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "דוא\"ל "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "להגיב"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "קוד אימות"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "שליחה"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "התגובה שלך מחכה לאישור"
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "מחיקת הערה"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "הצג תגובות"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "הסתר"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "דירוג הסתר"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "שחזור"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "צא ממסך מלא"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "השהה"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:16+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:18+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: he_IL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "שדה נדרש."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "זה לא כתובת דוא\"ל חוקית. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "אין תמונות החיפוש שלך תואמות."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "פריט (ים)."
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "פריט (ים)."
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "קודם"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "הבא"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "אחרון"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "עבור לדף הראשון"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "עבור לדף הקודם"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "של"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "לעבור לדף הבא"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "עבור לדף האחרון"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "איפוס"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "חיפוש"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "אין נושא שנבחר או הנושא נמחק"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "אין אלבום שנבחר או את האלבום נמחק"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "אין תמונות בגלריה זו"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "חזור"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "האלבום הוא ריק"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "הגלריה היא ריקה"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "יותר"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "הסתר"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "אין גלריה הנבחרת או הגלריה נמחקה"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "הצג הערות"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "לשתף בפייסבוק"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "לשתף בטוויטר"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "שתף ב-Google +"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "שתף בPinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "שתף על Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "התמונה נמחקה"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Translation:"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "מקסם"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "מסך מלא"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "הצג מידע"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "הצג דירוג"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "תמונה פתוחה בגודל מקורי."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "להוריד את התמונה מקורית"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "להיטים: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "מדורג."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "לא דורג עדיין"
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "הצבעות: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "לבטל הדירוג שלך"
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "כבר דרגו"
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "שגיאה. מספר אימות שגויה."
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "הסתר הערות"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "שם"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "דוא\"ל "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "להגיב"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "קוד אימות"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "שליחה"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "התגובה שלך מחכה לאישור"
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "מחיקת הערה"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "הצג תגובות"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "הסתר מידע"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "דירוג הסתר"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "שחזור"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "צא ממסך מלא"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "השהה"
languages/bwg-hi_IN.mo CHANGED
Binary file
languages/bwg-hi_IN.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:30+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:30+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hi_IN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "क्षेत्र की आवश्यकता है. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "यह एक मान्य ईमेल पता नहीं है. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "इस गैलरी में कोई चित्र नहीं हैं"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "मद (ओं)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "पहले"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "पिछले"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "अगला"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "पिछले"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "प्रथम पृष्ठ पर जाएं"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "पिछले पृष्ठ पर जाएँ"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "की"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "अगले पेज पर जाएं"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "अंतिम पृष्ठ पर जाएं"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "रीसेट"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "खोज"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "वहाँ चयनित कोई विषय है या विषय हटाया गया था"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "वहाँ चयनित कोई एल्बम नहीं है या एलबम हटा दिया गया था."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "इस गैलरी में कोई चित्र नहीं हैं"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "पीछे"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "एलबम खाली है"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "गैलरी खाली है"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "ज़्यादा"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "छिपाएँ"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "वहाँ चयनित नहीं गैलरी है या गैलरी हटा दिया गया था"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "टिप्पणियां दिखाएं"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "फेसबुक पर शेयर करें"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "ट्विटर पर साझा करे"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Google+ से साझा करें"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "ट्विटर पर साझा करे"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "ट्विटर पर साझा करे"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "छवि हटा दिया गया है"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "चलायें"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "अधिकतम करें"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "फुलस्क्रीन"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "जानकारी दिखाएँ"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "मू्ल्यांकन"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "मूल आकार में खुले छवि"
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "मूल छवि को डाउनलोड करें"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "हिट्स:"
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "अभी तक रेटेड नहीं."
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "वोट: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "आपकी रेटिंग रद्द. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "आप पहले से ही मूल्यांकन किया गया है. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "त्रुटि. गलत सत्यापन कोड. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "टिप्पणियां छुपाएं"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "नाम"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "ईमेल"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "टिप्पणी"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "सत्यापन कोड"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "सबमिट करें"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "आपकी टिप्पणी मॉडरेशन की प्रतीक्षा में है "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "टिप्पणी हटाएँ."
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "टिप्पणियां दिखाएं"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "छिपाएँ"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "छिपाएँ रेटिंग"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "पुनर्स्थापित"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "ूर्ण स्क्रीन से बाहर निकलें"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "रोकें"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:18+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:19+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hi_IN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "क्षेत्र की आवश्यकता है."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "यह एक मान्य ईमेल पता नहीं है."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "आपकी खोज से मेल खाते कोई छवियाँ हैं."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "मद (ओं)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "पहले"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "पिछले"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "अगला"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "पिछले"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "प्रथम पृष्ठ पर जाएं"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "पिछले पृष्ठ पर जाएँ"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "की"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "अगले पेज पर जाएं"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "अंतिम पृष्ठ पर जाएं"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "रीसेट"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "खोज"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "वहाँ चयनित कोई विषय है या विषय हटाया गया था"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "वहाँ चयनित कोई एल्बम नहीं है या एलबम हटा दिया गया था."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "इस गैलरी में कोई चित्र नहीं हैं"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "पीछे"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "एलबम खाली है"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "गैलरी खाली है"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "ज़्यादा"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "छिपाएँ"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "वहाँ चयनित नहीं गैलरी है या गैलरी हटा दिया गया था"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "टिप्पणियां दिखाएं"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "फेसबुक पर शेयर करें"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "ट्विटर पर साझा करे"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Google+ से साझा करें"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Pinterest पर शेयर"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Tumblr पर साझा करें"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "छवि हटा दिया गया है"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "चलायें"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "अधिकतम करें"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "फुलस्क्रीन"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "जानकारी दिखाएँ"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "मू्ल्यांकन"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "मूल आकार में खुले छवि"
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "मूल छवि को डाउनलोड करें"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "हिट्स:"
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "मूल्यांकन किया गया."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "अभी तक रेटेड नहीं."
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "वोट: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "आपकी रेटिंग रद्द. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "आप पहले से ही मूल्यांकन किया गया है. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "त्रुटि. गलत सत्यापन कोड. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "टिप्पणियां छुपाएं"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "नाम"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "ईमेल"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "टिप्पणी"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "सत्यापन कोड"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "सबमिट करें"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "आपकी टिप्पणी मॉडरेशन की प्रतीक्षा में है "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "टिप्पणी हटाएँ."
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "टिप्पणियां दिखाएं"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "जानकारी छुपाएं"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "छिपाएँ रेटिंग"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "पुनर्स्थापित"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "ूर्ण स्क्रीन से बाहर निकलें"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "रोकें"
languages/bwg-hr.mo CHANGED
Binary file
languages/bwg-hr.po CHANGED
@@ -1,317 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:31+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:33+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: bs\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
  msgstr "je obavezno polje. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
  msgstr "Ovo nije važeći e-mail adresu. "
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "Nema slika u ovoj galeriji."
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "stavke"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr "Prvo"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "Prethodni"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "Next"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "Trajati"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "Idi na prvoj stranici"
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "Idi na prethodnu stranicu"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "od"
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr "Idi na sljedeću stranicu"
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "Idi na posljednjoj stranici"
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "Reset"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "Traži"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr "Nema odabrane teme ili tema bila izbrisana."
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "Nema odabrani album ili album je izbrisan."
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "Nema slika u ovoj galeriji."
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "Natrag"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "Album je prazna"
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "Galerija je prazna."
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "Više"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "Sakrij"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "Nema odabrana galerija ili galerija je izbrisan."
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "Prikaži komentare."
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr "Podijeli na Facebooku."
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr " Podijeli na Twitteru."
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "Podijelite Google+"
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr " Podijeli na Twitteru."
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr " Podijeli na Twitteru."
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "Slika je obrisan."
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "Igrajte"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "Povećali"
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "Na cijelom zaslonu"
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "Pokaži info"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "Pokaži rejting"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "Otvori sliku u originalnoj veličini."
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "Download originalne slike"
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "Pogodaka: "
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "Još nije ocjenjeno. "
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "Glasova: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "Odustani svoj ​​rejting. "
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "Već ste ocijenili. "
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Greška. Pogrešan verifikaciju broj. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "Sakrij komentare"
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr "Ime"
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "E-mail "
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "Komentar"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "Verifikacija kod"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "Podnijeti"
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Vaš komentar čeka moderiranje "
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "Izbriši komentar"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr "Prikaži komentare"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
- #, fuzzy
296
  msgid "Hide info"
297
- msgstr "Sakrij"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "Sakrij rejting"
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
305
  msgid "Restore"
306
  msgstr "Vraćanje"
307
 
308
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
309
  msgid "Exit Fullscreen"
310
  msgstr "Izađite preko cijelog zaslona"
311
 
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
316
  msgid "Pause"
317
  msgstr "Pauza"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:20+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:21+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: bs\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
  msgstr "je obavezno polje. "
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
  msgstr "Ovo nije važeći e-mail adresu. "
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "Nema slika podudaranje vaše pretraživanje."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "stavke"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Prvo"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Prethodni"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Next"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Trajati"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Idi na prvoj stranici"
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Idi na prethodnu stranicu"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "od"
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Idi na sljedeću stranicu"
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Idi na posljednjoj stranici"
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Traži"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Nema odabrane teme ili tema bila izbrisana."
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Nema odabrani album ili album je izbrisan."
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Nema slika u ovoj galeriji."
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "Natrag"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "Album je prazna"
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "Galerija je prazna."
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "Više"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "Sakrij"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Nema odabrana galerija ili galerija je izbrisan."
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "Prikaži komentare."
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr "Podijeli na Facebooku."
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr " Podijeli na Twitteru."
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "Podijelite Google+"
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "Podijeli na Pinterest"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "Podijeli na Tumblr"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "Slika je obrisan."
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "Igrajte"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "Povećali"
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "Na cijelom zaslonu"
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "Pokaži info"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "Pokaži rejting"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "Otvori sliku u originalnoj veličini."
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "Download originalne slike"
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "Pogodaka: "
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "Ocijenjene."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "Još nije ocjenjeno. "
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "Glasova: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "Odustani svoj ​​rejting. "
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "Već ste ocijenili. "
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "Greška. Pogrešan verifikaciju broj. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "Sakrij komentare"
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr "Ime"
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "E-mail "
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "Komentar"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "Verifikacija kod"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "Podnijeti"
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "Vaš komentar čeka moderiranje "
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "Izbriši komentar"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr "Prikaži komentare"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
296
  msgid "Hide info"
297
+ msgstr "Sakrij informacije"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Sakrij rejting"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Vraćanje"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Izađite preko cijelog zaslona"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pauza"
languages/bwg-hu_HU.mo CHANGED
Binary file
languages/bwg-hu_HU.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:33+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:35+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "mező kitöltése kötelező. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Ez nem egy érvényes e-mail címét. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Nincsenek képek ebben a galériában."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "elemet"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Első"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Előző"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Tovább"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Az utolsó"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Ugrás az első oldalra"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Ugrás az előző oldalra"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "A"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Ugrás a következő oldalra"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Menj az utolsó oldalra"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Visszaállítása"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Keresés"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Nincs téma kiválasztva, vagy a téma törölve lett."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Nincs album kiválasztva, vagy az albumot törölték."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Nincsenek képek ebben a galériában."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Back"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album üres"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery üres"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Többet"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Elrejtése"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Nincs galéria kiválasztott, illetve a galériát törölték."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Mutassa megjegyzéseket"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Ossza meg a Facebook-on"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Ossza meg a Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Ossza Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Ossza meg a Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Ossza meg a Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "A kép törölve lett."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Lejátszás"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximalizálása"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Teljes képernyő"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Mutassa info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Mutassa értékelése"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Kép megnyitása eredeti méretben. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Töltsd le az eredeti képet"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Találat: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Még nem értékelték. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Szavazatok száma: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Megszüntetni az értékelésbe. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Már értékelted. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Hiba. Helytelen Ellenőrző kód. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Megjegyzések elrejtése"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Név"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-mail "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Megjegyzés"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "ellenőrző kód"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Submit"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Megjegyzése vár moderálás "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Megjegyzés törlése"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Hozzászólást mutat"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Elrejtése"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Hide értékelése"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Visszaállítása"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Kilépés Teljes képernyő"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Szünet"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:21+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:22+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "mező kitöltése kötelező. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Ez nem egy érvényes e-mail címét. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Nincsenek képek felel meg a keresést."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "elemet"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Első"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Előző"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Tovább"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Az utolsó"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Ugrás az első oldalra"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Ugrás az előző oldalra"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "A"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Ugrás a következő oldalra"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Menj az utolsó oldalra"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Visszaállítása"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Keresés"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Nincs téma kiválasztva, vagy a téma törölve lett."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Nincs album kiválasztva, vagy az albumot törölték."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Nincsenek képek ebben a galériában."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Back"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album üres"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery üres"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Többet"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Elrejtése"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Nincs galéria kiválasztott, illetve a galériát törölték."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Mutassa megjegyzéseket"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Ossza meg a Facebook-on"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Ossza meg a Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Ossza Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Megosztás on Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Megosztás a Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "A kép törölve lett."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Lejátszás"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximalizálása"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Teljes képernyő"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Mutassa info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Mutassa értékelése"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Kép megnyitása eredeti méretben. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Töltsd le az eredeti képet"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Találat: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Névleges."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Még nem értékelték. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Szavazatok száma: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Megszüntetni az értékelésbe. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Már értékelted. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Hiba. Helytelen Ellenőrző kód. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Megjegyzések elrejtése"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Név"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-mail "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Megjegyzés"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "ellenőrző kód"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Submit"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Megjegyzése vár moderálás "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Megjegyzés törlése"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Hozzászólást mutat"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Információ elrejtése"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Hide értékelése"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Visszaállítása"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Kilépés Teljes képernyő"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Szünet"
languages/bwg-hy_AM.mo CHANGED
Binary file
languages/bwg-hy_AM.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:35+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:44+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hy_AM\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "դաշտը պարտադիր է: "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Սա անվավեր էլեկտրոնային փոստի հասցե է: "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Այս պատկերասրահում պատկերներ չկան: "
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "պատկեր(ներ)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Առաջին"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Նախորդ"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Հաջորդ"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Վերջին"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Գնալ առաջին էջ"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Գնալ նախորդ էջ"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
- msgstr "ը"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
- msgstr "Գնալ դեպի հաջորդ էջ"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Գնալ վերջին էջ"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
- msgstr "Վերագործարկեք"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Որոնում"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Ընտրված թեմա չկա կամ թեման ջնջված է :"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Ընտրված ալբոմ չկա կամ ալբոմը ջնջված է :"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Այս պատկերասրահում պատկերներ չկան: "
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Հետ"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Ալբոմը դատարկ է:"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Պատկերասրահը դատարկ է:"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Ավելին"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Թաքցնել"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Ընտրված պատկերասրահ չկա կամ այն ջնջված է :"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
- msgstr "Ցույց տալ դիտարկումները"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Կիսվել Facebook-ում"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Կիսվել Twitter-ում "
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Կիսվել Google+-ում"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Կիսվել Twitter-ում "
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Կիսվել Twitter-ում "
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Պատկերը ջնջված է:"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
- msgstr "Խաղալ"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Մեծացնել"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Ամբողջ էկրան"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
- msgstr "Ցույց տալ տեղեկությունը. "
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
- msgstr "Ցույց տալ վարկանիշը. "
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
- msgstr "Պատկերը բացել բնագրի չափ"
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
- msgstr "Բեռնել պատկերի բնորինակը"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Դիտումների քանակը."
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
- msgstr "Դեռ գնահատված չէ. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Ձայներ."
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
- msgstr "Ընդհատել Ձեր գնահատականը:"
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
- msgstr "Դուք արդեն գնահատել. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
- msgstr "Ստուգման կոդը սխալ է: "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
- msgstr "Թաքցնել մեկնաբանություններ"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Անուն"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "էլեկտրոնային փոստ"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Մեկնաբանություն"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Ստուգման կոդ"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Ուղարկել"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
- msgstr "Ձեր մեկնաբանությունը սպասում միջնորդություն "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Ջնջել մեկնաբանությունը"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Ցույց տալ մեկնաբանությունները"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Թաքցնել"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Թաքցնել գնահատականը."
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Վերականգնել"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
- msgstr "Անջատել ամբողջ էկրանը"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Դադար"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:23+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:39+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hy_AM\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "դաշտը պարտադիր է: "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Սա անվավեր էլեկտրոնային փոստի հասցե է: "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Ձեր որոնմանը համապատասխան տվյալներ չկան:"
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "պատկեր(ներ)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Առաջին"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Նախորդ"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Հաջորդ"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Վերջին"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Գնալ առաջին էջ"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Գնալ նախորդ էջ"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
+ msgstr ""
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
+ msgstr "Գնալ հաջորդ էջ"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Գնալ վերջին էջ"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
+ msgstr "Դատարկել"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Որոնում"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Ընտրված թեմա չկա կամ թեման ջնջված է :"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Ընտրված ալբոմ չկա կամ ալբոմը ջնջված է :"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Այս պատկերասրահում պատկերներ չկան: "
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Հետ"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Ալբոմը դատարկ է:"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Պատկերասրահը դատարկ է:"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Ավելին"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Թաքցնել"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Ընտրված պատկերասրահ չկա կամ այն ջնջված է :"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
+ msgstr "Ցույց տալ մեկնաբանությունները"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Կիսվել Facebook-ում"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Կիսվել Twitter-ում "
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Կիսվել Google+-ում"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Կիսվել Pinterest-ում "
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Կիսվել Tumblr-ում "
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Պատկերը ջնջված է:"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
+ msgstr "Սկսել"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Մեծացնել"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Ամբողջ էկրան"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
+ msgstr "Ցույց տալ տեղեկությունը"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
+ msgstr "Ցույց տալ վարկանիշը"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
+ msgstr "Տեսնել պատկերը օրիգինալ չափով"
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
+ msgstr "Բեռնել պատկերը"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Դիտումների քանակը."
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Գնահատված է"
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
+ msgstr "Գնահատված չէ"
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Ձայներ."
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
+ msgstr "Չեղյալ համարել Ձեր գնահատականը"
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
+ msgstr "Դուք արդեն գնահատել եք"
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
+ msgstr "Ստուգման կոդը սխալ է"
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
+ msgstr "Թաքցնել մեկնաբանությունները"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Անուն"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "էլեկտրոնային փոստ"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Մեկնաբանություն"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Ստուգման կոդ"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Ուղարկել"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
+ msgstr "Ձեր մեկնաբանությունը սպասում է հաստատման"
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Ջնջել մեկնաբանությունը"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Ցույց տալ մեկնաբանությունները"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Թաքցնել"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Թաքցնել գնահատականը."
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Վերականգնել"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
+ msgstr "Դուրս գալ ամբողջ էկրանից"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Դադար"
languages/bwg-id_ID.mo CHANGED
Binary file
languages/bwg-id_ID.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:40+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:42+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: id_ID\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "lapangan diperlukan. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Ini bukan alamat email yang valid. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Tidak ada foto dalam galeri ini."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "barang"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Pertama"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Sebelumnya"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Berikutnya"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Berlangsung"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Pergi ke halaman pertama"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Pergi ke halaman sebelumnya"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "dari"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Pergi ke halaman berikutnya"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Pergi ke halaman terakhir"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Search"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Tidak ada tema yang dipilih atau tema itu dihapus."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Tidak ada album yang dipilih atau album tersebut telah dihapus."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Tidak ada foto dalam galeri ini."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Kembali"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album kosong."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery kosong."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Lebih"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Sembunyikan"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr " Tidak ada galeri yang dipilih atau galeri itu dihapus."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Tampilkan komentar"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Berbagi di Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Berbagi di Twitter."
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Berbagi di Google+."
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Berbagi di Twitter."
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Berbagi di Twitter."
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Gambar telah dihapus."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Mainkan"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimalkan"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Besar layar"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Tampilkan informasi"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Tampilkan peringkat"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Buka foto dalam ukuran aslinya. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Ambil gambar asli"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Belum dinilai. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Votes: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Batal rating Anda. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Anda telah dinilai. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Kesalahan. Salah Kode verifikasi. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Sembunyikan Komentar"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nama"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Komentar"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Kode verifikasi"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Kirim"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Komentar anda sedang menunggu moderasi "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Hapus Komentar"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Tampilkan Komentar"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Sembunyikan"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Sembunyikan rating"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Kembalikan"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Keluar Layar penuh."
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Jeda"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:40+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:42+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: id_ID\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "lapangan diperlukan."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Ini bukan alamat email yang valid."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Tidak ada gambar yang sesuai dengan pencarian Anda."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "barang"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Pertama"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Sebelumnya"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Berikutnya"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Berlangsung"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Pergi ke halaman pertama"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Pergi ke halaman sebelumnya"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "dari"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Pergi ke halaman berikutnya"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Pergi ke halaman terakhir"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Search"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Tidak ada tema yang dipilih atau tema itu dihapus."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Tidak ada album yang dipilih atau album tersebut telah dihapus."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Tidak ada foto dalam galeri ini."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Kembali"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album kosong."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery kosong."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Lebih"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Sembunyikan"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr " Tidak ada galeri yang dipilih atau galeri itu dihapus."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Tampilkan komentar"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Berbagi di Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Berbagi di Twitter."
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Berbagi di Google+."
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Berbagi di Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Berbagi di Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Gambar telah dihapus."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Mainkan"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimalkan"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Besar layar"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Tampilkan informasi"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Tampilkan peringkat"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Buka foto dalam ukuran aslinya. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Ambil gambar asli"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Dinilai."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Belum dinilai. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Votes: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Batal rating Anda. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Anda telah dinilai. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Kesalahan. Salah Kode verifikasi. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Sembunyikan Komentar"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nama"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Komentar"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Kode verifikasi"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Kirim"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Komentar anda sedang menunggu moderasi "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Hapus Komentar"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Tampilkan Komentar"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Menyembunyikan"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Sembunyikan rating"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Kembalikan"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Keluar Layar penuh."
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Jeda"
languages/bwg-it_IT.mo CHANGED
Binary file
languages/bwg-it_IT.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:51+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:52+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "è obbligatorio campo. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "Questo non è un indirizzo email valido. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Non ci sono immagini in questa galleria."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "articolo"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Primo"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Precedente"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Avanti"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Ultimo"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Vai alla prima pagina"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Vai alla pagina precedente"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "di"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Vai alla pagina successiva"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Vai all'ultima pagina"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Ripristina"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Ricerca"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Non c'è tema selezionato o il tema è stato eliminato."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Non vi è alcun album selezionato o l'album è stato eliminato."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Non ci sono immagini in questa galleria."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Indietro"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "L'album è vuoto."
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery è vuoto."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Di più"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Hide"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Non vi è alcuna galleria selezionata o la galleria è stata eliminata."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Mostra i commenti."
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Condividi su Facebook."
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Condividi su Twitter."
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Condividi su Google+."
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Condividi su Twitter."
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Condividi su Twitter."
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "L'immagine è stata cancellata."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Play"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Massimizzare"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Mostra info. "
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Mostra classificazione"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Apri l'immagine in formato originale. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Apri l'immagine originale"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Non ancora valutato. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Voti: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Annulla il tuo voto."
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Hai già votato. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Errore. Non corretto del codice di verifica. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Nascondi commenti"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nome"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "Email"
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Commento"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Codice di verifica"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Invia"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Il tuo commento è in attesa di moderazione "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Elimina commento"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Mostra i commenti"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Hide"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Hide valutazione"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Ripristina"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Uscire a schermo intero"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pausa"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:42+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:43+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "è obbligatorio campo. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "Questo non è un indirizzo email valido. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Non ci sono immagini corrispondenti alla tua ricerca."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "articolo"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Primo"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Precedente"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Avanti"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Ultimo"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Vai alla prima pagina"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Vai alla pagina precedente"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "di"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Vai alla pagina successiva"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Vai all'ultima pagina"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Ripristina"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Ricerca"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Non c'è tema selezionato o il tema è stato eliminato."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Non vi è alcun album selezionato o l'album è stato eliminato."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Non ci sono immagini in questa galleria."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Indietro"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "L'album è vuoto."
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery è vuoto."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Di più"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Hide"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Non vi è alcuna galleria selezionata o la galleria è stata eliminata."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Mostra i commenti."
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Condividi su Facebook."
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Condividi su Twitter."
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Condividi su Google+."
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Condividi su Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Condividi su Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "L'immagine è stata cancellata."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Play"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Massimizzare"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Mostra info. "
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Mostra classificazione"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Apri l'immagine in formato originale. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Apri l'immagine originale"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Nominale."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Non ancora valutato. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Voti: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Annulla il tuo voto."
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Hai già votato. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Errore. Non corretto del codice di verifica. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Nascondi commenti"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nome"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "Email"
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Commento"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Codice di verifica"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Invia"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Il tuo commento è in attesa di moderazione "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Elimina commento"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Mostra i commenti"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Nascondi informazioni"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Hide valutazione"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Ripristina"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Uscire a schermo intero"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Pausa"
languages/bwg-ja.mo CHANGED
Binary file
languages/bwg-ja.po CHANGED
@@ -1,318 +1,318 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:53+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:54+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ja_JP\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "フィールドは必須です。 "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "これは有効なメールアドレスではありません。 "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "このギャラリーには画像がありません"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "アイテム"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "最初"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "前"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr " 次へ"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "最後"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "最初のページに移動します"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "前のページに移動します"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "の"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "次のページに移動します"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "最後のページに移動します"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "リセットします"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "検索"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "そこに選択されていませんテーマはありませんかテーマが削除されました"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr ""
100
  "そこに選択されていませんアルバムはありませんか、アルバムが削除されました"
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "このギャラリーには画像がありません"
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr " バック"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "アルバムは空です"
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "ギャラリーは空です"
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "もっと"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "非表示にします"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr ""
143
  "そこに選択されていませんギャラリーはありませんかギャラリーが削除されました"
144
 
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
146
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
147
  msgid "Show comments"
148
  msgstr "コメントを見る"
149
 
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
153
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
154
  msgid "Share on Facebook"
155
  msgstr "Facebook上で共有しています"
156
 
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
160
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
161
  msgid "Share on Twitter"
162
  msgstr "Twitterで共有しています"
163
 
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
167
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
168
  msgid "Share on Google+"
169
  msgstr "Google+で共有しています"
170
 
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
174
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
175
- #, fuzzy
176
  msgid "Share on Pinterest"
177
- msgstr "Twitterで共有しています"
178
 
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
182
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
183
- #, fuzzy
184
  msgid "Share on Tumblr"
185
- msgstr "Twitterで共有しています"
186
 
187
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
188
  msgid "The image has been deleted."
189
  msgstr "画像は削除されました"
190
 
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
193
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
194
  msgid "Play"
195
  msgstr "再生"
196
 
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
199
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
200
  msgid "Maximize"
201
  msgstr "最大化します"
202
 
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
204
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
205
  msgid "Fullscreen"
206
  msgstr "フルスクリーン"
207
 
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
209
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
210
  msgid "Show info"
211
  msgstr "情報を表示します"
212
 
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
214
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
215
  msgid "Show rating"
216
  msgstr "評価を表示します"
217
 
218
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
219
  msgid "Open image in original size."
220
  msgstr "元のサイズで画像を開く"
221
 
222
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
223
  msgid "Download original image"
224
  msgstr "元の画像をダウンロードしてください"
225
 
226
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
227
  msgid "Hits: "
228
  msgstr "ヒット数:"
229
 
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
231
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
232
  msgid "Not rated yet."
233
  msgstr "まだ評価されていません。 "
234
 
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
236
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
237
  msgid "Votes: "
238
  msgstr "投票: "
239
 
240
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
241
  msgid "Cancel your rating."
242
  msgstr "あなたの評価をキャンセル。 "
243
 
244
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
245
  msgid "You have already rated."
246
  msgstr "あなたは既に評価されています"
247
 
248
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "エラーが発生しました。誤った認証コード。 "
251
 
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
253
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
254
  msgid "Hide Comments"
255
  msgstr "コメントを非表示にします"
256
 
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
260
  msgid "Name"
261
  msgstr "名前を付けます"
262
 
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
266
  msgid "Email"
267
  msgstr "Eメール"
268
 
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
272
  msgid "Comment"
273
  msgstr "コメント"
274
 
275
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
276
  msgid "Verification Code"
277
  msgstr "認証コード"
278
 
279
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
280
  msgid "Submit"
281
  msgstr "提出してください"
282
 
283
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "あなたのコメント承認待ちです "
286
 
287
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
288
  msgid "Delete Comment"
289
  msgstr "コメントを削除します"
290
 
291
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
292
  msgid "Show Comments"
293
  msgstr "コメントを表示します"
294
 
295
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
296
- #, fuzzy
297
  msgid "Hide info"
298
- msgstr "非表示にします"
299
 
300
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
301
  msgid "Hide rating"
302
  msgstr "隠す評価"
303
 
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
305
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
306
  msgid "Restore"
307
  msgstr "復元します"
308
 
309
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
310
  msgid "Exit Fullscreen"
311
  msgstr "フルスクリーンを終了します"
312
 
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
316
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
317
  msgid "Pause"
318
  msgstr "一時停止します"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:44+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:44+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ja_JP\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "フィールドは必須です。"
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "これは有効なメールアドレスではありません。"
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "検索に一致する画像がありません。"
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "アイテム"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "最初"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "前"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr " 次へ"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "最後"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "最初のページに移動します"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "前のページに移動します"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "の"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "次のページに移動します"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "最後のページに移動します"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "リセットします"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "検索"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "そこに選択されていませんテーマはありませんかテーマが削除されました"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr ""
99
  "そこに選択されていませんアルバムはありませんか、アルバムが削除されました"
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "このギャラリーには画像がありません"
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr " バック"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "アルバムは空です"
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "ギャラリーは空です"
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "もっと"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "非表示にします"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr ""
142
  "そこに選択されていませんギャラリーはありませんかギャラリーが削除されました"
143
 
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
146
  msgid "Show comments"
147
  msgstr "コメントを見る"
148
 
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
152
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
153
  msgid "Share on Facebook"
154
  msgstr "Facebook上で共有しています"
155
 
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
159
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
160
  msgid "Share on Twitter"
161
  msgstr "Twitterで共有しています"
162
 
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
166
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
167
  msgid "Share on Google+"
168
  msgstr "Google+で共有しています"
169
 
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
173
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
174
  msgid "Share on Pinterest"
175
+ msgstr "Pinterestの上の共有"
176
 
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
180
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
181
  msgid "Share on Tumblr"
182
+ msgstr "スキの共有"
183
 
184
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
185
  msgid "The image has been deleted."
186
  msgstr "画像は削除されました"
187
 
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
190
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
191
  msgid "Play"
192
  msgstr "再生"
193
 
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
196
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
197
  msgid "Maximize"
198
  msgstr "最大化します"
199
 
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
201
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
202
  msgid "Fullscreen"
203
  msgstr "フルスクリーン"
204
 
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
206
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
207
  msgid "Show info"
208
  msgstr "情報を表示します"
209
 
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
211
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
212
  msgid "Show rating"
213
  msgstr "評価を表示します"
214
 
215
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
216
  msgid "Open image in original size."
217
  msgstr "元のサイズで画像を開く"
218
 
219
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
220
  msgid "Download original image"
221
  msgstr "元の画像をダウンロードしてください"
222
 
223
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
224
  msgid "Hits: "
225
  msgstr "ヒット数:"
226
 
227
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
228
+ msgid "Rated."
229
+ msgstr "評価した。"
230
+
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
232
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
233
  msgid "Not rated yet."
234
  msgstr "まだ評価されていません。 "
235
 
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
237
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
238
  msgid "Votes: "
239
  msgstr "投票: "
240
 
241
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
242
  msgid "Cancel your rating."
243
  msgstr "あなたの評価をキャンセル。 "
244
 
245
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
246
  msgid "You have already rated."
247
  msgstr "あなたは既に評価されています"
248
 
249
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
250
  msgid "Error. Incorrect Verification Code."
251
  msgstr "エラーが発生しました。誤った認証コード。 "
252
 
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
254
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
255
  msgid "Hide Comments"
256
  msgstr "コメントを非表示にします"
257
 
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
260
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
261
  msgid "Name"
262
  msgstr "名前を付けます"
263
 
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
266
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
267
  msgid "Email"
268
  msgstr "Eメール"
269
 
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
272
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
273
  msgid "Comment"
274
  msgstr "コメント"
275
 
276
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
277
  msgid "Verification Code"
278
  msgstr "認証コード"
279
 
280
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
281
  msgid "Submit"
282
  msgstr "提出してください"
283
 
284
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
285
  msgid "Your comment is awaiting moderation"
286
  msgstr "あなたのコメント承認待ちです "
287
 
288
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
289
  msgid "Delete Comment"
290
  msgstr "コメントを削除します"
291
 
292
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
293
  msgid "Show Comments"
294
  msgstr "コメントを表示します"
295
 
296
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
297
  msgid "Hide info"
298
+ msgstr "情報を隠す"
299
 
300
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
301
  msgid "Hide rating"
302
  msgstr "隠す評価"
303
 
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
305
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
306
  msgid "Restore"
307
  msgstr "復元します"
308
 
309
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
310
  msgid "Exit Fullscreen"
311
  msgstr "フルスクリーンを終了します"
312
 
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
316
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
317
  msgid "Pause"
318
  msgstr "一時停止します"
languages/bwg-ka_GE.mo CHANGED
Binary file
languages/bwg-ka_GE.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:54+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:55+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ka_GE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "ველი არ არის საჭირო. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "ეს არ არის მართებული ელფოსტა. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "არ არსებობს სურათები ამ გალერეა."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "ერთეულზე"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "პირველი"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "წინა"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "შემდეგი"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "გაგრძელდება"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "გადადით პირველ გვერდზე"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "გადადით წინა გვერდზე"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "შესახებ"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "წასვლა მომდევნო გვერდზე"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "გადასვლა ბოლო გვერდი"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "ხელახლა"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "ძებნა"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "არ არსებობს თემა ავტორმა ან თემა წაშლილი იყო"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "არ არსებობს ფოტოალბომის ავტორმა ან ფოტოალბომის წაშლილი იყო."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "არ არსებობს სურათები ამ გალერეა."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "უკან"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "ალბომი ცარიელია"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "გალერეა ცარიელია"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "უფრო"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "დასამალი"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "არ არსებობს შერჩეულ გალერეაში ან გალერეაში წაშლილი იყო"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "აჩვენეთ კომენტარი"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Share on Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Share on Twitter."
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Share on Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Share on Twitter."
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Share on Twitter."
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "გამოსახულება წაშლილია"
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "ითამაშოს"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "მაქსიმალურად"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "ეკრანის"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "აჩვენეთ ინფორმაცია"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "აჩვენეთ ნიშანი"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "გახსენით იმიჯი ორიგინალური ზომა. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "ჩამოტვირთვა ორიგინალური იმიჯი"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "არ არის შეფასებული. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "რაოდენობა: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "გააუქმოს თქვენი ნიშანი. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "თქვენ უკვე შეაფასა. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "შეცდომა. მცდარი Verification Code. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "ღონისძიებები კომენტარები"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "ასახელებს"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "ელ "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "კომენტარები"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Verification Code"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "წარმოადგინოს"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "თქვენი კომენტარი ელოდება მოდერაცია "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "წაშალე კომენტარები"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "კომენტარების ხილვა"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "დასამალი"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "დამალე ნიშანი"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "აღდგენა"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Exit Fullscreen."
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "პაუზა"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:45+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:46+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ka_GE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "ველი არ არის საჭირო. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "ეს არ არის მართებული ელფოსტა. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "არ არსებობს images შესატყვისი თქვენი ძებნა."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "ერთეულზე"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "პირველი"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "წინა"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "შემდეგი"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "გაგრძელდება"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "გადადით პირველ გვერდზე"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "გადადით წინა გვერდზე"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "შესახებ"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "წასვლა მომდევნო გვერდზე"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "გადასვლა ბოლო გვერდი"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "ხელახლა"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "ძებნა"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "არ არსებობს თემა ავტორმა ან თემა წაშლილი იყო"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "არ არსებობს ფოტოალბომის ავტორმა ან ფოტოალბომის წაშლილი იყო."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "არ არსებობს სურათები ამ გალერეა."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "უკან"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "ალბომი ცარიელია"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "გალერეა ცარიელია"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "უფრო"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "დასამალი"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "არ არსებობს შერჩეულ გალერეაში ან გალერეაში წაშლილი იყო"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "აჩვენეთ კომენტარი"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Share on Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Share on Twitter."
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Share on Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Share on Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Share on Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "გამოსახულება წაშლილია"
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "ითამაშოს"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "მაქსიმალურად"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "ეკრანის"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "აჩვენეთ ინფორმაცია"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "აჩვენეთ ნიშანი"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "გახსენით იმიჯი ორიგინალური ზომა. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "ჩამოტვირთვა ორიგინალური იმიჯი"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "შეაფასა."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "არ არის შეფასებული. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "რაოდენობა: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "გააუქმოს თქვენი ნიშანი. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "თქვენ უკვე შეაფასა. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "შეცდომა. მცდარი Verification Code. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "ღონისძიებები კომენტარები"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "ასახელებს"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "ელ "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "კომენტარები"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Verification Code"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "წარმოადგინოს"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "თქვენი კომენტარი ელოდება მოდერაცია "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "წაშალე კომენტარები"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "კომენტარების ხილვა"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "ღონისძიებები კარგი"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "დამალე ნიშანი"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "აღდგენა"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Exit Fullscreen."
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "პაუზა"
languages/bwg-ko_KR.mo CHANGED
Binary file
languages/bwg-ko_KR.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:56+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:57+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ko\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "필드는 필수입니다. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
  msgstr "이것은 유효한 이메일 주소가 아닙니다. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr " 갤러리에있는 이미지가 없습니다"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "항목"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "첫째"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "이전"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "다음"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "마지막으로"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "첫 페이지로 이동합니다"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "이전 페이지로 이동합니다"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "의"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "다음 페이지로 이동합니다"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "마지막 페이지로 이동합니다"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "재설정합니다"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "검색"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "이 선택에는 테마가 없거나 테마가 삭제되었습니다"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "가 선택한 수있는 앨범이 없거나 앨범은 삭제되었습니다"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "이 갤러리에있는 이미지가 없습니다"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "돌아 가기"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "앨범이 비어 있습니다"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "갤러리가 비어 있습니다"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "더"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "숨 깁니다"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "이 선택에는 갤러리가 없거나 갤러리가 삭제되었습니다"
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "코멘트를 표시합니다"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "페이스 북에 공유 할 수 있습니다"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "트위터에 공유 할 수 있습니다"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Google+에서 공유 할 수 있습니다"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "트위터에 공유 할 수 있습니다"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "트위터에 공유 할 수 있습니다"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "이미지가 삭제되었습니다."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "재생합니다"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "극대화 할 수 있습니다"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "전체 화면"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "정보를 표시합니다"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "평가를 표시합니다"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "원래 크기의 이미지 열기."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "원본 이미지를 다운로드합니다"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "조회수 : "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "아무런 평가가 없습니다. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "투표 수 : "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "귀하의 평가를 취소 할 수 있습니다. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "이미 평가했습니다. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "오류가 발생했습니다. 잘못된 인증 코드. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr " 댓글을 숨 깁니다"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "이름을 지정합니다"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "이메일 "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "코멘트"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "확인 코드"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "제출"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "당신의 코멘트는 검토를 기다리고있다 "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "댓글을 삭제합니다"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "댓글을 표시합니다"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr " 깁니다"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "숨기기 평가"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "복원합니다"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "전체 화면을 종료합니다"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "일시 중지합니다"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:46+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:47+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ko\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "필드는 필수입니다. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
  msgstr "이것은 유효한 이메일 주소가 아닙니다. "
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "검색과 일치하는 이미지가 없습니다."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "항목"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "첫째"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "이전"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "다음"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "마지막으로"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "첫 페이지로 이동합니다"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "이전 페이지로 이동합니다"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "의"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "다음 페이지로 이동합니다"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "마지막 페이지로 이동합니다"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "재설정합니다"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "검색"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "이 선택에는 테마가 없거나 테마가 삭제되었습니다"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "가 선택한 수있는 앨범이 없거나 앨범은 삭제되었습니다"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "이 갤러리에있는 이미지가 없습니다"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "돌아 가기"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "앨범이 비어 있습니다"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "갤러리가 비어 있습니다"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "더"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "숨 깁니다"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "이 선택에는 갤러리가 없거나 갤러리가 삭제되었습니다"
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "코멘트를 표시합니다"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "페이스 북에 공유 할 수 있습니다"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "트위터에 공유 할 수 있습니다"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Google+에서 공유 할 수 있습니다"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "클립 공유"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "텀블러 공유"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "이미지가 삭제되었습니다."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "재생합니다"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "극대화 할 수 있습니다"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "전체 화면"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "정보를 표시합니다"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "평가를 표시합니다"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "원래 크기의 이미지 열기."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "원본 이미지를 다운로드합니다"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "조회수 : "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "평가."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "아무런 평가가 없습니다. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "투표 수 : "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "귀하의 평가를 취소 할 수 있습니다. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "이미 평가했습니다. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "오류가 발생했습니다. 잘못된 인증 코드. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr " 댓글을 숨 깁니다"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "이름을 지정합니다"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "이메일 "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "코멘트"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "확인 코드"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "제출"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "당신의 코멘트는 검토를 기다리고있다 "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "댓글을 삭제합니다"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "댓글을 표시합니다"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "정보 숨기기"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "숨기기 평가"
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "복원합니다"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "전체 화면을 종료합니다"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "일시 중지합니다"
languages/bwg-lt_LT.mo CHANGED
Binary file
languages/bwg-lt_LT.po CHANGED
@@ -1,317 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 15:57+0300\n"
5
- "PO-Revision-Date: 2014-05-29 15:59+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: lt_LT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
15
  "%100<10 || n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
- msgstr "laukelis būtinas. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
- msgstr "Tai nėra galiojantis elektroninio pašto adresą. "
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "Nėra šioje galerijoje vaizdai."
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "punktas"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr "Pirmas"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "Ankstesnis"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "Kitas"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "Paskutinis"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "Eiti į pirmąjį puslapį"
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "Eiti į ankstesnį puslapį"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "iš"
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr "Eiti į kitą puslapį"
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "Eiti į paskutinį puslapį"
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "Nustatyti iš naujo"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "Paieška"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr "Nėra tema pasirinkta arba tema buvo ištrinta."
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "Nėra albumai pasirinktas ar albumą buvo ištrintas."
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "Nėra šioje galerijoje vaizdai."
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "Atgal"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "Albumas tuščias."
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "Galerija yra tuščia"
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "Daugiau"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "Slėpti"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "Nėra galerija pasirinktas ar galerija buvo ištrintas."
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "Rodyti komentarus."
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr " Share on Facebook."
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr "Dalytis Twitter."
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "Dalytis \"Google+\"."
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr "Dalytis Twitter."
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr "Dalytis Twitter."
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "Vaizdas buvo ištrintas."
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "Žaisti"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "Padidinti"
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "Per visą ekraną."
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "Rodyti informaciją"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "Rodyti įvertinimus"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "Atidaryti atvaizdą originalaus dydžio."
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "Atsisiųsti originalų vaizdą. "
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "Hitai: "
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "Dar neįvertinta. "
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "balsai: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "Atšaukti savo reitingą. "
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "Jūs jau įvertinote. "
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Klaida. Neteisingas patvirtinimo kodas. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "Paslėpti komentarus"
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr "Vardas"
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "laišką "
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "Komentaras"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "Patvirtinimo kodas"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "Pateikti"
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Jūsų komentaras laukia nuosaikumo "
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "Ištrinti komentarą"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr "Rodyti komentarus"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
- #, fuzzy
296
  msgid "Hide info"
297
- msgstr "Slėpti"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "Slėpti įvertinimas."
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
305
  msgid "Restore"
306
  msgstr "Atkurti"
307
 
308
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
309
  msgid "Exit Fullscreen"
310
  msgstr "Išeikite per visą ekraną"
311
 
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
316
  msgid "Pause"
317
  msgstr "Pauzė"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:47+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:48+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: lt_LT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
15
  "%100<10 || n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
+ msgstr "laukelis būtinas."
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
+ msgstr "Tai nėra galiojantis elektroninio pašto adresą."
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "Nėra nuotraukos atitinkančių jūsų paiešką."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "punktas"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Pirmas"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Ankstesnis"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Kitas"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Paskutinis"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Eiti į pirmąjį puslapį"
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Eiti į ankstesnį puslapį"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "iš"
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Eiti į kitą puslapį"
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Eiti į paskutinį puslapį"
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Nustatyti iš naujo"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Paieška"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Nėra tema pasirinkta arba tema buvo ištrinta."
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Nėra albumai pasirinktas ar albumą buvo ištrintas."
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Nėra šioje galerijoje vaizdai."
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "Atgal"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "Albumas tuščias."
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "Galerija yra tuščia"
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "Daugiau"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "Slėpti"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Nėra galerija pasirinktas ar galerija buvo ištrintas."
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "Rodyti komentarus."
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr " Share on Facebook."
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr "Dalytis Twitter."
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "Dalytis \"Google+\"."
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "Dalintis apie Pinterest"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "Dalintis apie Tumblr"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "Vaizdas buvo ištrintas."
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "Žaisti"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "Padidinti"
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "Per visą ekraną."
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "Rodyti informaciją"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "Rodyti įvertinimus"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "Atidaryti atvaizdą originalaus dydžio."
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "Atsisiųsti originalų vaizdą. "
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "Hitai: "
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "Vardinė."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "Dar neįvertinta. "
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "balsai: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "Atšaukti savo reitingą. "
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "Jūs jau įvertinote. "
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "Klaida. Neteisingas patvirtinimo kodas. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "Paslėpti komentarus"
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr "Vardas"
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "laišką "
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "Komentaras"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "Patvirtinimo kodas"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "Pateikti"
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "Jūsų komentaras laukia nuosaikumo "
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "Ištrinti komentarą"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr "Rodyti komentarus"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
296
  msgid "Hide info"
297
+ msgstr "Slėpti informacija"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Slėpti įvertinimas."
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Atkurti"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Išeikite per visą ekraną"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pauzė"
languages/bwg-lv.mo CHANGED
Binary file
languages/bwg-lv.po CHANGED
@@ -1,317 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:00+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:02+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: lv_LV\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
15
  "2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
  msgstr "lauks ir nepieciešams. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
- msgstr "Šī nav derīga e-pasta adresi. "
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "Nav bildes šajā galerijā"
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "pozīcija"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr "Pirmās"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "Iepriekšējā"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "Nākamais"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "Pēdējais"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "Iet uz pirmo lapu"
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "Doties uz iepriekšējo lapu"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "gada"
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr "Doties uz nākamo lapu"
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "Iet uz pēdējo lapu"
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "Reset"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "Meklēšanu"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr "Nav izvēlēts tēmu vai tēma tika dzēsts"
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "Nav izvēlēts albuma vai albums tika dzēsts"
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "Nav bildes šajā galerijā"
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "Atpakaļ"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "Albums ir tukšs"
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "Galerija ir tukša"
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "Vairāk"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "Slēpt"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "Nav galerija jāizvēlas vai galerijā tika dzēsts"
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "Parādīt komentārus"
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr "Dalīties ar Facebook"
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr "Dalīties ar Twitter"
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "Daļa Google+."
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr "Dalīties ar Twitter"
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr "Dalīties ar Twitter"
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "Attēls ir izdzēsts."
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "Spēlēt"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "Palielinātu"
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "Pilnekrāna"
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "Parādīt info"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "Parādīt reitingu"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "Atvērt attēlu oriģinālajā izmērā. "
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "Lejupielādēt oriģinālo attēlu"
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "Hits: "
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "Nav vērtējuma."
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "Balsis: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "Atcelt savu reitingu. "
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "Jūs jau novērtēja. "
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Kļūda. Nepareizs verifikācijas kods. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "Slēpt komentārus"
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr "Nosaukt"
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "e-pasts "
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "Komentārs"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "verifikācijas kodu"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "Iesniegt"
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Jūsu komentārs gaida mērenība "
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "Dzēst komentāru"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr "Rādīt komentārus"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
- #, fuzzy
296
  msgid "Hide info"
297
- msgstr "Slēpt"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "Slēpt vērtējums"
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
305
  msgid "Restore"
306
  msgstr "Atjaunot"
307
 
308
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
309
  msgid "Exit Fullscreen"
310
  msgstr "Izietu visu ekrānu"
311
 
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
316
  msgid "Pause"
317
  msgstr "Pauze"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:49+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:49+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: lv_LV\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
15
  "2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
  msgstr "lauks ir nepieciešams. "
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
+ msgstr "Šī nav derīga e-pasta adresi."
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "Nav attēlu, kas atbilst Jūsu meklēšanai."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "pozīcija"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Pirmās"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Iepriekšējā"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Nākamais"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Pēdējais"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Iet uz pirmo lapu"
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Doties uz iepriekšējo lapu"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "gada"
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Doties uz nākamo lapu"
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Iet uz pēdējo lapu"
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Meklēšanu"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Nav izvēlēts tēmu vai tēma tika dzēsts"
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Nav izvēlēts albuma vai albums tika dzēsts"
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Nav bildes šajā galerijā"
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "Atpakaļ"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "Albums ir tukšs"
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "Galerija ir tukša"
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "Vairāk"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "Slēpt"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Nav galerija jāizvēlas vai galerijā tika dzēsts"
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "Parādīt komentārus"
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr "Dalīties ar Facebook"
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr "Dalīties ar Twitter"
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "Daļa Google+."
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "Share on Pinterest"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "Share on Tumblr"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "Attēls ir izdzēsts."
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "Spēlēt"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "Palielinātu"
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "Pilnekrāna"
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "Parādīt info"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "Parādīt reitingu"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "Atvērt attēlu oriģinālajā izmērā. "
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "Lejupielādēt oriģinālo attēlu"
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "Hits: "
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "Novērtēja."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "Nav vērtējuma."
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "Balsis: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "Atcelt savu reitingu. "
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "Jūs jau novērtēja. "
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "Kļūda. Nepareizs verifikācijas kods. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "Slēpt komentārus"
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr "Nosaukt"
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "e-pasts "
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "Komentārs"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "verifikācijas kodu"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "Iesniegt"
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "Jūsu komentārs gaida mērenība "
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "Dzēst komentāru"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr "Rādīt komentārus"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
296
  msgid "Hide info"
297
+ msgstr "Slēpt info"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Slēpt vērtējums"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Atjaunot"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Izietu visu ekrānu"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pauze"
languages/bwg-mk_MK.mo CHANGED
Binary file
languages/bwg-mk_MK.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:02+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:03+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: mk_MK\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "поле е задолжително. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Ова не е валидна емаил адреса. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Нема слики во оваа галерија."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "ставка"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Во прв план"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Претходниот"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Следната"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Трае"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Оди на првата страница"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Оди на претходната страница"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "на"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Оди на следната страница"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Оди до последната страница"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Ресетирање"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Пребарување"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Нема избрани тема или тема е избришана."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Нема Одбраниот албум или албум е избришана."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Нема слики во оваа галерија."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Назад"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Албумот е празна"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Галеријата е празна"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Повеќе"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Скрие"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Нема избрани галерија или галеријата е избришана."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Покаже коментари"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Сподели на Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Сподели на Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Сподели на Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Сподели на Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Сподели на Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Сликата е избришан."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Играат"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Рашири"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Цел екран"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Show info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Покаже рејтинг"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Отворен сликата во оригинална големина."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Преземете оригиналната слика"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Преземања: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Сè уште нема оценка. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "гласови: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Откажи вашиот рејтинг. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Веќе сте оценет. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Грешка. Неточни Код за верификација. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Скрие коментари"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Име"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "e-mail "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Коментираат"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "код за верификација"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Прати"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Вашиот коментар чека модерирање "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Избришете коментар"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Покажи ги коментарите"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Скрие"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Сокриј рејтинг."
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Врати"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Излезете на цел екран"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Пауза"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:50+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:51+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: mk_MK\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "поле е задолжително."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Ова не е валидна емаил адреса."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Не са открити снимки, отговарящи на вашето търсене."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "ставка"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Во прв план"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Претходниот"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Следната"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Трае"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Оди на првата страница"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Оди на претходната страница"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "на"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Оди на следната страница"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Оди до последната страница"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Ресетирање"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Пребарување"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Нема избрани тема или тема е избришана."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Нема Одбраниот албум или албум е избришана."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Нема слики во оваа галерија."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Назад"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Албумот е празна"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Галеријата е празна"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Повеќе"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Скрие"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Нема избрани галерија или галеријата е избришана."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Покаже коментари"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Сподели на Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Сподели на Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Сподели на Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Сподели във Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Сподели на Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Сликата е избришан."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Играат"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Рашири"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Цел екран"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Show info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Покаже рејтинг"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Отворен сликата во оригинална големина."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Преземете оригиналната слика"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Преземања: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Номинално."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Сè уште нема оценка. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "гласови: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Откажи вашиот рејтинг. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Веќе сте оценет. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Грешка. Неточни Код за верификација. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Скрие коментари"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Име"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "e-mail "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Коментираат"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "код за верификација"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Прати"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Вашиот коментар чека модерирање "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Избришете коментар"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Покажи ги коментарите"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Скриване на информация"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Сокриј рејтинг."
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Врати"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Излезете на цел екран"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Пауза"
languages/bwg-ms_MY.mo CHANGED
Binary file
languages/bwg-ms_MY.po CHANGED
@@ -1,316 +1,316 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:04+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:05+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ms\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "bidang diperlukan. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Ini bukan alamat e-mel yang sah. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Tiada imej dalam galeri ini."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "item"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Pertama"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Sebelumnya"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Seterusnya"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Terakhir"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Pergi ke halaman yang pertama"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Pergi ke halaman sebelumnya"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "daripada"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Pergi ke halaman seterusnya"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Pergi ke halaman terakhir"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Tetap semula"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Cari"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Tiada tema yang dipilih atau tema telah dipadamkan."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Tiada album yang dipilih atau album telah dipadamkan."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Tiada imej dalam galeri ini."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Balik"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album kosong"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galeri kosong."
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "More"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Disembunyikan"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Tidak ada yang dipilih atau galeri galeri itu dihapuskan."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Tunjukkan komen."
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Kongsi di Facebook."
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Kongsi di Twitter."
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Berkongsi di Google +."
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Kongsi di Twitter."
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Kongsi di Twitter."
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Imej telah dipadam."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Bermain"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Memaksimumkan"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Skrin penuh"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Menunjukkan maklumat"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Tunjukkan penarafan"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Buka imej dalam saiz yang asal. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Muat turun imej asal"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Not rated yet. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Undian: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Batal rating anda. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Anda telah menilai. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Kesilapan. Kod Pengesahan tidak betul. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Sembunyi komen"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Nama"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-mel "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Ulasan"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Kod Pengesahan"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Hantar"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Komen anda menunggu penyederhanaan "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Padam Ulasan"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Tunjukkan Komen"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
- #, fuzzy
295
  msgid "Hide info"
296
- msgstr "Disembunyikan"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Sembunyikan penarafan."
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Simpan semula"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Keluar Fullscreen"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Berhenti seketika"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:51+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:52+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ms\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "bidang diperlukan."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Ini bukan alamat e-mel yang sah."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Tidak ada gambar yang sesuai dengan pencarian Anda."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "item"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Pertama"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Sebelumnya"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Seterusnya"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Terakhir"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Pergi ke halaman yang pertama"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Pergi ke halaman sebelumnya"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "daripada"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Pergi ke halaman seterusnya"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Pergi ke halaman terakhir"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Tetap semula"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Cari"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Tiada tema yang dipilih atau tema telah dipadamkan."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Tiada album yang dipilih atau album telah dipadamkan."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Tiada imej dalam galeri ini."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Balik"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album kosong"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galeri kosong."
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "More"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Disembunyikan"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Tidak ada yang dipilih atau galeri galeri itu dihapuskan."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Tunjukkan komen."
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Kongsi di Facebook."
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Kongsi di Twitter."
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Berkongsi di Google +."
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Berbagi di Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Berbagi di Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Imej telah dipadam."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Bermain"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Memaksimumkan"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Skrin penuh"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Menunjukkan maklumat"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Tunjukkan penarafan"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Buka imej dalam saiz yang asal. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Muat turun imej asal"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Dinilai."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Not rated yet. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Undian: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Batal rating anda. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Anda telah menilai. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Kesilapan. Kod Pengesahan tidak betul. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Sembunyi komen"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Nama"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-mel "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Ulasan"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Kod Pengesahan"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Hantar"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Komen anda menunggu penyederhanaan "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Padam Ulasan"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Tunjukkan Komen"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
295
  msgid "Hide info"
296
+ msgstr "Menyembunyikan"
297
 
298
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
299
  msgid "Hide rating"
300
  msgstr "Sembunyikan penarafan."
301
 
302
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
304
  msgid "Restore"
305
  msgstr "Simpan semula"
306
 
307
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
308
  msgid "Exit Fullscreen"
309
  msgstr "Keluar Fullscreen"
310
 
311
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
315
  msgid "Pause"
316
  msgstr "Berhenti seketika"
languages/bwg-mt_MT.mo CHANGED
Binary file
languages/bwg-mt_MT.po CHANGED
@@ -1,317 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:06+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:07+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: mt\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n"
15
  "%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
  msgstr "qasam hija meħtieġa. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
  msgstr "Din mhix l-indirizz email validu. "
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "M'hemm l-ebda immaġini fil din il-gallarija."
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "partita"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr "Ewwel"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "Preċedenti"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "Next"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "Aħħar"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "Mur għall-ewwel paġna"
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "Mur fil-paġna preċedenti"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "tal"
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr "Mur fil-paġna li jmiss"
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "Mur għall-aħħar paġna"
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "Irrisettja"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "Search"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr "M'hemm l-ebda tema magħżula jew it-tema ġiet imħassra"
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "M'hemm l-ebda album magħżula jew l-album ġie mħassar"
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "M'hemm l-ebda immaġini fil din il-gallarija."
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "Back"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "Album ikun vojt"
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "Gallerija ikun vojt"
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "Aktar"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "Aħbi"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "M'hemm l-ebda gallerija magħżula jew il-gallerija kienet imħassra."
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "Uri kummenti"
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr "Share fuq Facebook"
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr "Share fuq Twitter"
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "Share fuq Google +"
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr "Share fuq Twitter"
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr "Share fuq Twitter"
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "L-immaġni tħassret."
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "Play"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "Timmassimizza"
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "Fullscreen"
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "Uri info"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "Uri rating"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "Image miftuħa fid-daqs oriġinali. "
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "Tniżżel immaġini oriġinali"
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "Viżti: "
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "Mhux nominali għadha. "
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "Voti: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "Ikkanċella gradazzjoni tiegħek. "
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "Inti diġà ratata. "
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Error. Kodiċi Verifika żbaljata. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "Aħbi Kummenti"
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr "Isem"
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "email"
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "Jikkummentaw"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "Kodiċi verifika"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "Issottometti"
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Kumment tiegħek qed tistenna moderazzjoni "
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "Ħassar Kumment"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr "Uri Kummenti"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
- #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Aħbi"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "Klassifikazzjoni jinħbew"
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
305
  msgid "Restore"
306
  msgstr "Restore"
307
 
308
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
309
  msgid "Exit Fullscreen"
310
  msgstr "Ħruġ Fullscreen"
311
 
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
315
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
316
  msgid "Pause"
317
  msgstr "Pause"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:52+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:53+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: mt\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n"
15
  "%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
  msgstr "qasam hija meħtieġa. "
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
  msgstr "Din mhix l-indirizz email validu. "
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "M'hemm l-ebda immaġini tqabbil tfittxija tiegħek."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "partita"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Ewwel"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Preċedenti"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Next"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Aħħar"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Mur għall-ewwel paġna"
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Mur fil-paġna preċedenti"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "tal"
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Mur fil-paġna li jmiss"
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Mur għall-aħħar paġna"
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Irrisettja"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Search"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "M'hemm l-ebda tema magħżula jew it-tema ġiet imħassra"
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "M'hemm l-ebda album magħżula jew l-album ġie mħassar"
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "M'hemm l-ebda immaġini fil din il-gallarija."
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "Back"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "Album ikun vojt"
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "Gallerija ikun vojt"
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "Aktar"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "Aħbi"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "M'hemm l-ebda gallerija magħżula jew il-gallerija kienet imħassra."
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "Uri kummenti"
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr "Share fuq Facebook"
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr "Share fuq Twitter"
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "Share fuq Google +"
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "Share fuq Pinterest"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "Share fuq Tumblr"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "L-immaġni tħassret."
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "Play"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "Timmassimizza"
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "Fullscreen"
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "Uri info"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "Uri rating"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "Image miftuħa fid-daqs oriġinali. "
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "Tniżżel immaġini oriġinali"
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "Viżti: "
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "Rated."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "Mhux nominali għadha. "
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "Voti: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "Ikkanċella gradazzjoni tiegħek. "
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "Inti diġà ratata. "
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "Error. Kodiċi Verifika żbaljata. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "Aħbi Kummenti"
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr "Isem"
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "email"
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "Jikkummentaw"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "Kodiċi verifika"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "Issottometti"
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "Kumment tiegħek qed tistenna moderazzjoni "
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "Ħassar Kumment"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr "Uri Kummenti"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
296
  msgid "Hide info"
297
  msgstr "Aħbi"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Klassifikazzjoni jinħbew"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Restore"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Ħruġ Fullscreen"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pause"
languages/bwg-nb_NO.mo CHANGED
Binary file
languages/bwg-nb_NO.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:08+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:09+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nn_NO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
- msgstr "Feltet er nødvendig. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Dette er ikke en gyldig e-postadresse. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Det er ingen bilder i dette galleriet."
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "elementet(r)"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Først"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Forrige"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Neste"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Vare"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Gå til den første siden"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Gå til forrige side"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "av"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Gå til neste side"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Gå til siste side"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Søk"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Det er ingen tema valgt eller temaet ble slettet"
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Det er ingen album valgt eller albumet ble slettet"
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Det er ingen bilder i dette galleriet."
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Tilbake"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Albumet er tom"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Gallery er tom"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Mer"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Skjul"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Det er ingen galleri valgt eller galleriet ble slettet."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Vis kommentarer"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Del på Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Del på Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Del på Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Del på Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Del på Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Bildet er slettet."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Play"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maksimere"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Fullscreen"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Vis info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Vis vurdering"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Åpne bildet i original størrelse."
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Last ned originalbildet"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Treff: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Ikke vurdert ennå. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Stemmer: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Avbryt din vurdering. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Du har allerede vurdert. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Feil. Feil bekreftelseskode. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Skjul kommentarer"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Navn"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "E-post "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Kommentar"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "Kontrollkode"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Send"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Din kommentar avventer moderasjon "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Slett kommentar"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Vis kommentarer"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Skjul"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Skjul vurdering"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Gjenopprett"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Avslutt fullskjerm"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pause"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:53+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:54+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nn_NO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
+ msgstr "Feltet er nødvendig."
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Dette er ikke en gyldig e-postadresse."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Det er ingen bilder som matcher ditt søk."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "elementet(r)"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Først"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Forrige"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Neste"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Vare"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Gå til den første siden"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Gå til forrige side"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "av"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Gå til neste side"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Gå til siste side"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Søk"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Det er ingen tema valgt eller temaet ble slettet"
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Det er ingen album valgt eller albumet ble slettet"
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Det er ingen bilder i dette galleriet."
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Tilbake"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Albumet er tom"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Gallery er tom"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Mer"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Skjul"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Det er ingen galleri valgt eller galleriet ble slettet."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Vis kommentarer"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Del på Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Del på Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Del på Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Del på Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Del på Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Bildet er slettet."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Play"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maksimere"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Fullscreen"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Vis info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Vis vurdering"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Åpne bildet i original størrelse."
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Last ned originalbildet"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Treff: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Karakter."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Ikke vurdert ennå. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Stemmer: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Avbryt din vurdering. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Du har allerede vurdert. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Feil. Feil bekreftelseskode. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Skjul kommentarer"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Navn"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "E-post "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Kommentar"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "Kontrollkode"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Send"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Din kommentar avventer moderasjon "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Slett kommentar"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Vis kommentarer"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Skjul"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Skjul vurdering"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Gjenopprett"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Avslutt fullskjerm"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pause"
languages/bwg-nl_NL.mo CHANGED
Binary file
languages/bwg-nl_NL.po CHANGED
@@ -1,316 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:10+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:11+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
20
  msgid "field is required."
21
  msgstr "is verplicht. "
22
 
23
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
25
  msgid "This is not a valid email address."
26
- msgstr "Dit is geen geldig e-mailadres. "
27
 
28
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
31
- #, fuzzy
32
  msgid "There are no images matching your search."
33
- msgstr "Er zijn geen afbeeldingen in deze galerij"
34
 
35
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "item"
38
 
39
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Eerste"
42
 
43
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Vorige"
46
 
47
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Volgende"
50
 
51
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Duren"
54
 
55
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Ga naar de eerste pagina"
58
 
59
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Translation:"
62
 
63
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "van"
66
 
67
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr "Ga naar de volgende pagina"
70
 
71
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Ga naar de laatste pagina"
74
 
75
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Reset"
78
 
79
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Søg"
82
 
83
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Er is geen thema geselecteerd of het thema is verwijderd."
93
 
94
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Er is geen album geselecteerd of het album is verwijderd."
100
 
101
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Er zijn geen afbeeldingen in deze galerij"
110
 
111
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
113
  msgid "Back"
114
  msgstr "Terug"
115
 
116
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
118
  msgid "Album is empty."
119
  msgstr "Album is leeg"
120
 
121
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
123
  msgid "Gallery is empty."
124
  msgstr "Galerij is leeg"
125
 
126
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
128
  msgid "More"
129
  msgstr "Meer"
130
 
131
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
132
  msgid "Hide"
133
  msgstr "Verbergen"
134
 
135
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Er is geen galerij geselecteerd of de galerie is verwijderd."
142
 
143
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
145
  msgid "Show comments"
146
  msgstr "Toon reacties"
147
 
148
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
152
  msgid "Share on Facebook"
153
  msgstr "Delen op Facebook"
154
 
155
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
159
  msgid "Share on Twitter"
160
  msgstr "Delen op Twitter"
161
 
162
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
166
  msgid "Share on Google+"
167
  msgstr "Deel op Google+"
168
 
169
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
173
- #, fuzzy
174
  msgid "Share on Pinterest"
175
- msgstr "Delen op Twitter"
176
 
177
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
181
- #, fuzzy
182
  msgid "Share on Tumblr"
183
- msgstr "Delen op Twitter"
184
 
185
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
186
  msgid "The image has been deleted."
187
  msgstr "Billedet er blevet slettet."
188
 
189
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
192
  msgid "Play"
193
  msgstr "Spelen"
194
 
195
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
198
  msgid "Maximize"
199
  msgstr "Maximaliseren"
200
 
201
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
203
  msgid "Fullscreen"
204
  msgstr "Op groot formaat"
205
 
206
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
208
  msgid "Show info"
209
  msgstr "Vis info"
210
 
211
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
213
  msgid "Show rating"
214
  msgstr "Vis rating"
215
 
216
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
217
  msgid "Open image in original size."
218
  msgstr "Åbn billede i original størrelse. "
219
 
220
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
221
  msgid "Download original image"
222
  msgstr "Download originalbilledet"
223
 
224
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
225
  msgid "Hits: "
226
  msgstr "Hits: "
227
 
228
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
230
  msgid "Not rated yet."
231
  msgstr "Ikke bedømt endnu. "
232
 
233
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
235
  msgid "Votes: "
236
  msgstr "Stemmer: "
237
 
238
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
239
  msgid "Cancel your rating."
240
  msgstr "Annullere din bedømmelse. "
241
 
242
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
243
  msgid "You have already rated."
244
  msgstr "Du har allerede bedømt. "
245
 
246
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
247
  msgid "Error. Incorrect Verification Code."
248
  msgstr "Fout. Onjuist Verificatie Code. "
249
 
250
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
252
  msgid "Hide Comments"
253
  msgstr "Verberg commentaren"
254
 
255
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
258
  msgid "Name"
259
  msgstr "Noemen"
260
 
261
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
264
  msgid "Email"
265
  msgstr "e-mail "
266
 
267
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
270
  msgid "Comment"
271
  msgstr "Comment"
272
 
273
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
274
  msgid "Verification Code"
275
  msgstr "verificatie Code"
276
 
277
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
278
  msgid "Submit"
279
  msgstr "Indienen"
280
 
281
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
282
  msgid "Your comment is awaiting moderation"
283
  msgstr "Din kommentar afventer moderation "
284
 
285
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
286
  msgid "Delete Comment"
287
  msgstr "Opmerking verwijderen"
288
 
289
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
290
  msgid "Show Comments"
291
  msgstr "Toon commentaren"
292
 
293
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
294
  #, fuzzy
295
  msgid "Hide info"
296
  msgstr "Verbergen"
297
 
298
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
299
  msgid "Hide rating"
300
  msgstr "Skjul rating"
301
 
302
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
304
  msgid "Restore"
305
  msgstr "Herstellen"
306
 
307
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
308
  msgid "Exit Fullscreen"
309
  msgstr "Exit Fullscreen"
310
 
311
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2437
312
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2452
313
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1548
314
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1566
315
  msgid "Pause"
316
  msgstr "Pauze"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:55+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:55+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __\n"
16
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
17
  "\\photo-gallery\n"
18
 
19
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
20
  msgid "field is required."
21
  msgstr "is verplicht. "
22
 
23
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
25
  msgid "This is not a valid email address."
26
+ msgstr "Dit is geen geldig e-mailadres."
27
 
28
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
31
  msgid "There are no images matching your search."
32
+ msgstr "Er zijn geen beelden die voldoen aan uw zoekopdracht."
33
 
34
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
35
  msgid " item(s)"
36
  msgstr "item"
37
 
38
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
39
  msgid "First"
40
  msgstr "Eerste"
41
 
42
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
43
  msgid "Previous"
44
  msgstr "Vorige"
45
 
46
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
47
  msgid "Next"
48
  msgstr "Volgende"
49
 
50
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
51
  msgid "Last"
52
  msgstr "Duren"
53
 
54
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
55
  msgid "Go to the first page"
56
  msgstr "Ga naar de eerste pagina"
57
 
58
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
59
  msgid "Go to the previous page"
60
  msgstr "Translation:"
61
 
62
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
63
  msgid "of"
64
  msgstr "van"
65
 
66
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
67
  msgid "Go to the next page"
68
  msgstr "Ga naar de volgende pagina"
69
 
70
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
71
  msgid "Go to the last page"
72
  msgstr "Ga naar de laatste pagina"
73
 
74
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
75
  msgid "Reset"
76
  msgstr "Reset"
77
 
78
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
79
  msgid "Search"
80
  msgstr "Søg"
81
 
82
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
90
  msgid "There is no theme selected or the theme was deleted."
91
  msgstr "Er is geen thema geselecteerd of het thema is verwijderd."
92
 
93
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
97
  msgid "There is no album selected or the album was deleted."
98
  msgstr "Er is geen album geselecteerd of het album is verwijderd."
99
 
100
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
107
  msgid "There are no images in this gallery."
108
  msgstr "Er zijn geen afbeeldingen in deze galerij"
109
 
110
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
112
  msgid "Back"
113
  msgstr "Terug"
114
 
115
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
117
  msgid "Album is empty."
118
  msgstr "Album is leeg"
119
 
120
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
122
  msgid "Gallery is empty."
123
  msgstr "Galerij is leeg"
124
 
125
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
127
  msgid "More"
128
  msgstr "Meer"
129
 
130
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
131
  msgid "Hide"
132
  msgstr "Verbergen"
133
 
134
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
139
  msgid "There is no gallery selected or the gallery was deleted."
140
  msgstr "Er is geen galerij geselecteerd of de galerie is verwijderd."
141
 
142
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
144
  msgid "Show comments"
145
  msgstr "Toon reacties"
146
 
147
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
151
  msgid "Share on Facebook"
152
  msgstr "Delen op Facebook"
153
 
154
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
158
  msgid "Share on Twitter"
159
  msgstr "Delen op Twitter"
160
 
161
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
165
  msgid "Share on Google+"
166
  msgstr "Deel op Google+"
167
 
168
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
172
  msgid "Share on Pinterest"
173
+ msgstr "Share on Pinterest"
174
 
175
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
179
  msgid "Share on Tumblr"
180
+ msgstr "Share on Tumblr"
181
 
182
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
183
  msgid "The image has been deleted."
184
  msgstr "Billedet er blevet slettet."
185
 
186
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
189
  msgid "Play"
190
  msgstr "Spelen"
191
 
192
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
195
  msgid "Maximize"
196
  msgstr "Maximaliseren"
197
 
198
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
200
  msgid "Fullscreen"
201
  msgstr "Op groot formaat"
202
 
203
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
205
  msgid "Show info"
206
  msgstr "Vis info"
207
 
208
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
210
  msgid "Show rating"
211
  msgstr "Vis rating"
212
 
213
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
214
  msgid "Open image in original size."
215
  msgstr "Åbn billede i original størrelse. "
216
 
217
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
218
  msgid "Download original image"
219
  msgstr "Download originalbilledet"
220
 
221
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
222
  msgid "Hits: "
223
  msgstr "Hits: "
224
 
225
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
226
+ msgid "Rated."
227
+ msgstr "Gewaardeerd."
228
+
229
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
231
  msgid "Not rated yet."
232
  msgstr "Ikke bedømt endnu. "
233
 
234
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
236
  msgid "Votes: "
237
  msgstr "Stemmer: "
238
 
239
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
240
  msgid "Cancel your rating."
241
  msgstr "Annullere din bedømmelse. "
242
 
243
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
244
  msgid "You have already rated."
245
  msgstr "Du har allerede bedømt. "
246
 
247
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Fout. Onjuist Verificatie Code. "
250
 
251
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
253
  msgid "Hide Comments"
254
  msgstr "Verberg commentaren"
255
 
256
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
259
  msgid "Name"
260
  msgstr "Noemen"
261
 
262
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
265
  msgid "Email"
266
  msgstr "e-mail "
267
 
268
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
271
  msgid "Comment"
272
  msgstr "Comment"
273
 
274
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
275
  msgid "Verification Code"
276
  msgstr "verificatie Code"
277
 
278
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
279
  msgid "Submit"
280
  msgstr "Indienen"
281
 
282
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Din kommentar afventer moderation "
285
 
286
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
287
  msgid "Delete Comment"
288
  msgstr "Opmerking verwijderen"
289
 
290
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
291
  msgid "Show Comments"
292
  msgstr "Toon commentaren"
293
 
294
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
295
  #, fuzzy
296
  msgid "Hide info"
297
  msgstr "Verbergen"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Skjul rating"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2554
305
  msgid "Restore"
306
  msgstr "Herstellen"
307
 
308
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2470
309
  msgid "Exit Fullscreen"
310
  msgstr "Exit Fullscreen"
311
 
312
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2483
313
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2498
314
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1547
315
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1565
316
  msgid "Pause"
317
  msgstr "Pauze"
languages/bwg-pl_PL.mo CHANGED
Binary file
languages/bwg-pl_PL.po CHANGED
@@ -1,317 +1,317 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
- "POT-Creation-Date: 2014-05-29 16:11+0300\n"
5
- "PO-Revision-Date: 2014-05-29 16:12+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.3\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
15
  "|| n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpressraf\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2812
21
  msgid "field is required."
22
  msgstr "Pole to jest konieczne. "
23
 
24
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2813
25
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1123
26
  msgid "This is not a valid email address."
27
  msgstr "To nie jest prawidłowy adres e-mail. "
28
 
29
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/photo-gallery.php:2814
30
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:723
31
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:711
32
- #, fuzzy
33
  msgid "There are no images matching your search."
34
- msgstr "Nie ma zdjęć w tej galerii."
35
 
36
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
37
  msgid " item(s)"
38
  msgstr "pozycja"
39
 
40
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
41
  msgid "First"
42
  msgstr "Pierwszy"
43
 
44
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
45
  msgid "Previous"
46
  msgstr "Poprzedni"
47
 
48
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
49
  msgid "Next"
50
  msgstr "Następny"
51
 
52
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
53
  msgid "Last"
54
  msgstr "Trwać"
55
 
56
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
57
  msgid "Go to the first page"
58
  msgstr "Przejdź do pierwszej strony"
59
 
60
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
61
  msgid "Go to the previous page"
62
  msgstr "Przejdź do poprzedniej strony"
63
 
64
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
65
  msgid "of"
66
  msgstr "z"
67
 
68
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
69
  msgid "Go to the next page"
70
  msgstr " Przejdź do następnej strony"
71
 
72
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
73
  msgid "Go to the last page"
74
  msgstr "Idź do ostatniej strony"
75
 
76
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
77
  msgid "Reset"
78
  msgstr "Zresetować"
79
 
80
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
81
  msgid "Search"
82
  msgstr "Szukaj"
83
 
84
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:129
85
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:78
86
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
87
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
88
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
89
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
90
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:125
91
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
92
  msgid "There is no theme selected or the theme was deleted."
93
  msgstr "Nie wybrano motyw lub motyw została usunięta."
94
 
95
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:134
96
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:154
97
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:85
98
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:105
99
  msgid "There is no album selected or the album was deleted."
100
  msgstr "Nie wybrano albumu lub albumu została usunięta."
101
 
102
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:143
103
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:94
104
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
105
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
106
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
107
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:142
108
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
109
  msgid "There are no images in this gallery."
110
  msgstr "Nie ma zdjęć w tej galerii."
111
 
112
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:616
113
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:595
114
  msgid "Back"
115
  msgstr "Powrót"
116
 
117
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:627
118
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:606
119
  msgid "Album is empty."
120
  msgstr "Album jest pusty."
121
 
122
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:728
123
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:716
124
  msgid "Gallery is empty."
125
  msgstr "Galeria jest pusta."
126
 
127
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:686
128
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:794
129
  msgid "More"
130
  msgstr "Więcej"
131
 
132
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:789
133
  msgid "Hide"
134
  msgstr "Ukryć"
135
 
136
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
137
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
138
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
139
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:136
140
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
141
  msgid "There is no gallery selected or the gallery was deleted."
142
  msgstr "Nie wybrano galeria lub galeria została usunięta"
143
 
144
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
145
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:822
146
  msgid "Show comments"
147
  msgstr "Pokaż komentarze"
148
 
149
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
150
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
151
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:830
152
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
153
  msgid "Share on Facebook"
154
  msgstr "Podziel się na Facebooku."
155
 
156
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
157
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
158
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:837
159
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:838
160
  msgid "Share on Twitter"
161
  msgstr "Podziel się na Twitterze."
162
 
163
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
164
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
165
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:844
166
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:845
167
  msgid "Share on Google+"
168
  msgstr "Udostępnij na Google+."
169
 
170
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
171
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
172
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:851
173
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:852
174
- #, fuzzy
175
  msgid "Share on Pinterest"
176
- msgstr "Podziel się na Twitterze."
177
 
178
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
179
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
180
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:858
181
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:859
182
- #, fuzzy
183
  msgid "Share on Tumblr"
184
- msgstr "Podziel się na Twitterze."
185
 
186
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:800
187
  msgid "The image has been deleted."
188
  msgstr "Obraz został usunięty."
189
 
190
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:810
191
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2443
192
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1557
193
  msgid "Play"
194
  msgstr "Grać"
195
 
196
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:814
197
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2279
198
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2376
199
  msgid "Maximize"
200
  msgstr "Maksymalizacji"
201
 
202
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:818
203
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2378
204
  msgid "Fullscreen"
205
  msgstr "Pełny ekran"
206
 
207
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:820
208
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2119
209
  msgid "Show info"
210
  msgstr "Pokaż informacje"
211
 
212
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:824
213
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2130
214
  msgid "Show rating"
215
  msgstr "Pokaż ocenę"
216
 
217
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:866
218
  msgid "Open image in original size."
219
  msgstr "Otwórz obraz w oryginalnym rozmiarze. "
220
 
221
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:873
222
  msgid "Download original image"
223
  msgstr "Pobierz oryginalny obraz"
224
 
225
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:966
226
  msgid "Hits: "
227
  msgstr "Odsłon: "
228
 
229
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:980
230
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:993
 
 
 
 
231
  msgid "Not rated yet."
232
  msgstr "Jeszcze nie ocenione. "
233
 
234
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:982
235
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
236
  msgid "Votes: "
237
  msgstr "Głosów: "
238
 
239
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1011
240
  msgid "Cancel your rating."
241
  msgstr "Anuluj ocenę. "
242
 
243
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1013
244
  msgid "You have already rated."
245
  msgstr "Już oceniłeś. "
246
 
247
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
248
  msgid "Error. Incorrect Verification Code."
249
  msgstr "Błąd. Nieprawidłowy kod weryfikacyjny. "
250
 
251
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1131
252
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1974
253
  msgid "Hide Comments"
254
  msgstr "Ukryj komentarze"
255
 
256
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1135
257
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
258
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
259
  msgid "Name"
260
  msgstr "Imię"
261
 
262
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
263
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
264
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
265
  msgid "Email"
266
  msgstr "e-mail "
267
 
268
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1148
269
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
270
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
271
  msgid "Comment"
272
  msgstr "Komentarz"
273
 
274
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1153
275
  msgid "Verification Code"
276
  msgstr "Kod weryfikacyjny"
277
 
278
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1176
279
  msgid "Submit"
280
  msgstr "Zatwierdź"
281
 
282
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1177
283
  msgid "Your comment is awaiting moderation"
284
  msgstr "Twój komentarz oczekuje na moderację "
285
 
286
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1206
287
  msgid "Delete Comment"
288
  msgstr "Usuń komentarz"
289
 
290
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1931
291
  msgid "Show Comments"
292
  msgstr "Pokaż komentarze"
293
 
294
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2115
295
- #, fuzzy
296
  msgid "Hide info"
297
- msgstr "Ukryć"
298
 
299
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2126
300
  msgid "Hide rating"
301
  msgstr "Ukryj ocenił"
302
 
303
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2314
304
- #: C:\wamp\www\wordpressraf\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2503
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
+ "POT-Creation-Date: 2014-06-23 11:56+0400\n"
5
+ "PO-Revision-Date: 2014-06-23 11:57+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
15
  "|| n%100>=20) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __\n"
17
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress3.5\\wp-content\\plugins"
18
  "\\photo-gallery\n"
19
 
20
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2821
21
  msgid "field is required."
22
  msgstr "Pole to jest konieczne. "
23
 
24
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2822
25
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1116
26
  msgid "This is not a valid email address."
27
  msgstr "To nie jest prawidłowy adres e-mail. "
28
 
29
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/photo-gallery.php:2823
30
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:726
31
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:715
 
32
  msgid "There are no images matching your search."
33
+ msgstr "Nie ma żadnych zdjęć pasujących do wyszukiwania."
34
 
35
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:478
36
  msgid " item(s)"
37
  msgstr "pozycja"
38
 
39
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:483
40
  msgid "First"
41
  msgstr "Pierwszy"
42
 
43
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:484
44
  msgid "Previous"
45
  msgstr "Poprzedni"
46
 
47
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:485
48
  msgid "Next"
49
  msgstr "Następny"
50
 
51
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:486
52
  msgid "Last"
53
  msgstr "Trwać"
54
 
55
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:512
56
  msgid "Go to the first page"
57
  msgstr "Przejdź do pierwszej strony"
58
 
59
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:513
60
  msgid "Go to the previous page"
61
  msgstr "Przejdź do poprzedniej strony"
62
 
63
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:515
64
  msgid "of"
65
  msgstr "z"
66
 
67
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:519
68
  msgid "Go to the next page"
69
  msgstr " Przejdź do następnej strony"
70
 
71
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:520
72
  msgid "Go to the last page"
73
  msgstr "Idź do ostatniej strony"
74
 
75
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:604
76
  msgid "Reset"
77
  msgstr "Zresetować"
78
 
79
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/framework/WDWLibrary.php:607
80
  msgid "Search"
81
  msgstr "Szukaj"
82
 
83
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:132
84
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:82
85
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:32
86
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:68
87
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:42
88
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:101
89
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:127
90
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:77
91
  msgid "There is no theme selected or the theme was deleted."
92
  msgstr "Nie wybrano motyw lub motyw została usunięta."
93
 
94
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:137
95
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:157
96
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:89
97
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:109
98
  msgid "There is no album selected or the album was deleted."
99
  msgstr "Nie wybrano albumu lub albumu została usunięta."
100
 
101
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:146
102
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:98
103
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:79
104
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:79
105
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:163
106
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:144
107
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:88
108
  msgid "There are no images in this gallery."
109
  msgstr "Nie ma zdjęć w tej galerii."
110
 
111
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:619
112
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:599
113
  msgid "Back"
114
  msgstr "Powrót"
115
 
116
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:630
117
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:610
118
  msgid "Album is empty."
119
  msgstr "Album jest pusty."
120
 
121
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_compact_preview.php:731
122
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:720
123
  msgid "Gallery is empty."
124
  msgstr "Galeria jest pusta."
125
 
126
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:690
127
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:798
128
  msgid "More"
129
  msgstr "Więcej"
130
 
131
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewAlbum_extended_preview.php:793
132
  msgid "Hide"
133
  msgstr "Ukryć"
134
 
135
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:73
136
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewImage_browser.php:73
137
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:158
138
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails.php:138
139
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewThumbnails_masonry.php:82
140
  msgid "There is no gallery selected or the gallery was deleted."
141
  msgstr "Nie wybrano galeria lub galeria została usunięta"
142
 
143
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:493
144
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:831
145
  msgid "Show comments"
146
  msgstr "Pokaż komentarze"
147
 
148
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:499
149
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:500
150
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:839
151
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:840
152
  msgid "Share on Facebook"
153
  msgstr "Podziel się na Facebooku."
154
 
155
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:506
156
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:507
157
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:846
158
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:847
159
  msgid "Share on Twitter"
160
  msgstr "Podziel się na Twitterze."
161
 
162
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:513
163
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:514
164
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:853
165
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:854
166
  msgid "Share on Google+"
167
  msgstr "Udostępnij na Google+."
168
 
169
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:520
170
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:521
171
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:860
172
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:861
 
173
  msgid "Share on Pinterest"
174
+ msgstr "Udostępnij na Pinterest"
175
 
176
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:527
177
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewBlog_style.php:528
178
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:867
179
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:868
 
180
  msgid "Share on Tumblr"
181
+ msgstr "Podziel się na Tumblr"
182
 
183
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:809
184
  msgid "The image has been deleted."
185
  msgstr "Obraz został usunięty."
186
 
187
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:819
188
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2489
189
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewSlideshow.php:1556
190
  msgid "Play"
191
  msgstr "Grać"
192
 
193
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:823
194
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2325
195
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2422
196
  msgid "Maximize"
197
  msgstr "Maksymalizacji"
198
 
199
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:827
200
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2424
201
  msgid "Fullscreen"
202
  msgstr "Pełny ekran"
203
 
204
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:829
205
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2165
206
  msgid "Show info"
207
  msgstr "Pokaż informacje"
208
 
209
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:833
210
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2176
211
  msgid "Show rating"
212
  msgstr "Pokaż ocenę"
213
 
214
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:875
215
  msgid "Open image in original size."
216
  msgstr "Otwórz obraz w oryginalnym rozmiarze. "
217
 
218
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:882
219
  msgid "Download original image"
220
  msgstr "Pobierz oryginalny obraz"
221
 
222
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:975
223
  msgid "Hits: "
224
  msgstr "Odsłon: "
225
 
226
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:986
227
+ msgid "Rated."
228
+ msgstr "Ocenione."
229
+
230
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:990
231
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1003
232
  msgid "Not rated yet."
233
  msgstr "Jeszcze nie ocenione. "
234
 
235
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:992
236
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
237
  msgid "Votes: "
238
  msgstr "Głosów: "
239
 
240
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1023
241
  msgid "Cancel your rating."
242
  msgstr "Anuluj ocenę. "
243
 
244
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1025
245
  msgid "You have already rated."
246
  msgstr "Już oceniłeś. "
247
 
248
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1109
249
  msgid "Error. Incorrect Verification Code."
250
  msgstr "Błąd. Nieprawidłowy kod weryfikacyjny. "
251
 
252
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1124
253
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2012
254
  msgid "Hide Comments"
255
  msgstr "Ukryj komentarze"
256
 
257
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1128
258
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
259
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
260
  msgid "Name"
261
  msgstr "Imię"
262
 
263
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1134
264
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
265
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
266
  msgid "Email"
267
  msgstr "e-mail "
268
 
269
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1141
270
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1156
271
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1163
272
  msgid "Comment"
273
  msgstr "Komentarz"
274
 
275
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1146
276
  msgid "Verification Code"
277
  msgstr "Kod weryfikacyjny"
278
 
279
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1169
280
  msgid "Submit"
281
  msgstr "Zatwierdź"
282
 
283
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1170
284
  msgid "Your comment is awaiting moderation"
285
  msgstr "Twój komentarz oczekuje na moderację "
286
 
287
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1199
288
  msgid "Delete Comment"
289
  msgstr "Usuń komentarz"
290
 
291
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:1969
292
  msgid "Show Comments"
293
  msgstr "Pokaż komentarze"
294
 
295
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2161
 
296
  msgid "Hide info"
297
+ msgstr "Ukryj informacje"
298
 
299
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2172
300
  msgid "Hide rating"
301
  msgstr "Ukryj ocenił"
302
 
303
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGViewGalleryBox.php:2360
304
+ #: C:\wamp\www\wordpress3.5\wp-content\plugins\photo-gallery/frontend/views/BWGVi