Gallery by BestWebSoft - Version 3.7

Version Description

  • 23.10.2012 =
  • NEW : Added link url field - clicking on image open the link in new window.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Gallery by BestWebSoft
Version 3.7
Comparing to
See all releases

Code changes from version 3.6 to 3.7

css/stylesheet.css CHANGED
@@ -36,11 +36,15 @@ ul.gallery {
36
  height:0;
37
  }
38
 
39
- .gllr_image_text {
40
  margin-top:10px;
41
  width:150px;
42
  }
43
 
 
 
 
 
44
  .gllr_order_text {
45
  width:20px;
46
  }
@@ -68,6 +72,15 @@ ul.gallery {
68
  width: 170px;
69
  }
70
 
 
 
 
 
 
 
 
 
 
71
  .gallery .delete {
72
  padding-top:2px;
73
  text-align:center;
36
  height:0;
37
  }
38
 
39
+ .gllr_image_text, .gllr_link_text {
40
  margin-top:10px;
41
  width:150px;
42
  }
43
 
44
+ .gllr_link_text {
45
+ width:170px;
46
+ }
47
+
48
  .gllr_order_text {
49
  width:20px;
50
  }
72
  width: 170px;
73
  }
74
 
75
+ #Upload-File .gallery .gllr_border_image img{
76
+ padding:10px;
77
+ }
78
+
79
+ #Upload-File .gallery .small_text{
80
+ font-size:10px;
81
+ color:grey;
82
+ }
83
+
84
  .gallery .delete {
85
  padding-top:2px;
86
  text-align:center;
gallery-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
- Version: 3.6
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -200,6 +200,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
200
  $gllr_options = get_option( 'gllr_options' );
201
  $key = "gllr_image_text";
202
  $gllr_download_link = get_post_meta( $post->ID, 'gllr_download_link', true );
 
203
  $error = "";
204
  $uploader = true;
205
 
@@ -272,7 +273,8 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
272
  echo '<div class="gllr_border_image"><img src="'.$image_attributes[0].'" alt="'.$page->post_title.'" title="'.$page->post_title.'" height="'.get_option( 'thumbnail_size_h' ).'" width="'.get_option( 'thumbnail_size_w' ).'" /></div>';
273
  echo '<input type="text" name="gllr_image_text['.$page->ID.']" value="'.get_post_meta( $page->ID, $key, TRUE ).'" class="gllr_image_text" />';
274
  echo '<input type="text" name="gllr_order_text['.$page->ID.']" value="'.$page->menu_order.'" class="gllr_order_text '.( $page->menu_order == 0 ? "hidden" : '' ).'" />';
275
- echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">Delete</a><div/>';
 
276
  echo '</div></li>';
277
  endforeach; ?>
278
  </ul><div style="clear:both;"></div>
@@ -297,6 +299,7 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
297
  function gllr_save_postdata( $post_id, $post ) {
298
  global $post, $wpdb;
299
  $key = "gllr_image_text";
 
300
 
301
  if( isset( $_REQUEST['undefined'] ) && ! empty( $_REQUEST['undefined'] ) ) {
302
  $array_file_name = $_REQUEST['undefined'];
@@ -374,6 +377,30 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
374
  wp_update_post( array( 'ID'=>$key, 'menu_order'=>$val ) );
375
  }
376
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  if( isset( $_REQUEST['gllr_download_link'] ) ){
378
  if( get_post_meta( $post->ID, 'gllr_download_link', FALSE ) ) {
379
  // Custom field has a value and this custom field exists in database
@@ -979,6 +1006,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
979
  <div class="gallery clearfix">
980
  <?php foreach( $posts as $attachment ) {
981
  $key = "gllr_image_text";
 
982
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
983
  $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
984
  $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
@@ -987,9 +1015,15 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
987
  <?php } ?>
988
  <div class="gllr_image_block">
989
  <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+20; ?>px;">
 
 
 
 
 
990
  <a rel="gallery_fancybox" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>">
991
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
992
  </a>
 
993
  </p>
994
  <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
995
  </div>
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
+ Version: 3.7
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
200
  $gllr_options = get_option( 'gllr_options' );
201
  $key = "gllr_image_text";
202
  $gllr_download_link = get_post_meta( $post->ID, 'gllr_download_link', true );
203
+ $link_key = "gllr_link_url";
204
  $error = "";
205
  $uploader = true;
206
 
273
  echo '<div class="gllr_border_image"><img src="'.$image_attributes[0].'" alt="'.$page->post_title.'" title="'.$page->post_title.'" height="'.get_option( 'thumbnail_size_h' ).'" width="'.get_option( 'thumbnail_size_w' ).'" /></div>';
274
  echo '<input type="text" name="gllr_image_text['.$page->ID.']" value="'.get_post_meta( $page->ID, $key, TRUE ).'" class="gllr_image_text" />';
275
  echo '<input type="text" name="gllr_order_text['.$page->ID.']" value="'.$page->menu_order.'" class="gllr_order_text '.( $page->menu_order == 0 ? "hidden" : '' ).'" />';
276
+ echo '<br />'.__("Link URL", "gallery").'<br /><input type="text" name="gllr_link_url['.$page->ID.']" value="'.get_post_meta( $page->ID, $link_key, TRUE ).'" class="gllr_link_text" /><br /><span class="small_text">'.__("(clicking on image <br /> open the link in new window)", "gallery").'</span>';
277
+ echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">'.__("Delete", "gallery").'</a><div/>';
278
  echo '</div></li>';
279
  endforeach; ?>
280
  </ul><div style="clear:both;"></div>
299
  function gllr_save_postdata( $post_id, $post ) {
300
  global $post, $wpdb;
301
  $key = "gllr_image_text";
302
+ $link_key = "gllr_link_url";
303
 
304
  if( isset( $_REQUEST['undefined'] ) && ! empty( $_REQUEST['undefined'] ) ) {
305
  $array_file_name = $_REQUEST['undefined'];
377
  wp_update_post( array( 'ID'=>$key, 'menu_order'=>$val ) );
378
  }
379
  }
380
+ if( isset( $_REQUEST['gllr_link_url'] ) ) {
381
+ $posts = get_posts(array(
382
+ "showposts" => -1,
383
+ "what_to_show" => "posts",
384
+ "post_status" => "inherit",
385
+ "post_type" => "attachment",
386
+ "orderby" => "menu_order",
387
+ "order" => "ASC",
388
+ "post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
389
+ "post_parent" => $post->ID));
390
+ foreach ( $posts as $page ) {
391
+ if( isset( $_REQUEST['gllr_link_url'][$page->ID] ) ) {
392
+ $value = $_REQUEST['gllr_link_url'][$page->ID];
393
+ if( get_post_meta( $page->ID, $link_key, FALSE ) ) {
394
+ // Custom field has a value and this custom field exists in database
395
+ update_post_meta( $page->ID, $link_key, $value );
396
+ }
397
+ elseif($value) {
398
+ // Custom field has a value, but this custom field does not exist in database
399
+ add_post_meta( $page->ID, $link_key, $value );
400
+ }
401
+ }
402
+ }
403
+ }
404
  if( isset( $_REQUEST['gllr_download_link'] ) ){
405
  if( get_post_meta( $post->ID, 'gllr_download_link', FALSE ) ) {
406
  // Custom field has a value and this custom field exists in database
1006
  <div class="gallery clearfix">
1007
  <?php foreach( $posts as $attachment ) {
1008
  $key = "gllr_image_text";
1009
+ $link_key = "gllr_link_url";
1010
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
1011
  $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
1012
  $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
1015
  <?php } ?>
1016
  <div class="gllr_image_block">
1017
  <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+20; ?>px;">
1018
+ <?php if( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?>
1019
+ <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank">
1020
+ <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
1021
+ </a>
1022
+ <?php } else { ?>
1023
  <a rel="gallery_fancybox" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>">
1024
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
1025
  </a>
1026
+ <?php } ?>
1027
  </p>
1028
  <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
1029
  </div>
languages/gallery-cs_CZ.mo CHANGED
Binary file
languages/gallery-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "Language: cs_CZ\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "Galerie"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
@@ -67,113 +68,125 @@ msgstr "Nahrát soubor"
67
  msgid "Gallery Shortcode"
68
  msgstr "Nastavení galerie"
69
 
70
- #: gallery-plugin.php:208
71
  msgid ""
72
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
73
  "your webserver. Please use the standard WP functional to upload the images "
74
  "(media library)"
75
  msgstr ""
76
 
77
- #: gallery-plugin.php:212
78
  msgid "Choose an image to upload:"
79
  msgstr "Vyberte náhled pro nahrání:"
80
 
81
- #: gallery-plugin.php:217
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
84
 
85
- #: gallery-plugin.php:224
86
  msgid "Allow download link for images in this gallery"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:225
90
  msgid ""
91
  "Please use drag and drop function to change the order of the output of "
92
  "images and do not forget to save post."
93
  msgstr ""
94
 
95
- #: gallery-plugin.php:227
96
  msgid "Please do not forget to select "
97
  msgstr ""
98
 
99
- #: gallery-plugin.php:227 gallery-plugin.php:791
100
  msgid "Attachments order by"
101
  msgstr ""
102
 
103
- #: gallery-plugin.php:227
104
  msgid "attachments order"
105
  msgstr ""
106
 
107
- #: gallery-plugin.php:227
108
  msgid "in the settings of the plugin (page "
109
  msgstr ""
110
 
111
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid ""
113
  "You can add the Single Gallery on the page or in the post by inserting this "
114
  "shortcode in the content"
115
  msgstr ""
116
 
117
- #: gallery-plugin.php:291
118
  msgid ""
119
  "If you want to take a brief display of the gallery with a link to a Single "
120
  "Sallery Page"
121
  msgstr ""
122
 
123
- #: gallery-plugin.php:448
124
  msgid "Title"
125
  msgstr "Název"
126
 
127
- #: gallery-plugin.php:449
128
  msgid "Author"
129
  msgstr "Autor"
130
 
131
- #: gallery-plugin.php:450
132
  msgid "Photo's"
133
  msgstr "Fotky"
134
 
135
- #: gallery-plugin.php:451
136
  msgid "Public"
137
  msgstr "Veřejné"
138
 
139
- #: gallery-plugin.php:452
140
  msgid "Date"
141
  msgstr "Datum"
142
 
143
- #: gallery-plugin.php:599
144
  msgid "Activated plugins"
145
  msgstr "Aktivní pluginy"
146
 
147
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
148
  msgid "Read more"
149
  msgstr "Další informace"
150
 
151
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
152
  msgid "Settings"
153
  msgstr "Nastavení"
154
 
155
- #: gallery-plugin.php:607
156
  msgid "Installed plugins"
157
  msgstr "Nainstalované pluginy"
158
 
159
- #: gallery-plugin.php:615
160
  msgid "Recommended plugins"
161
  msgstr "Doporučené pluginy"
162
 
163
- #: gallery-plugin.php:617
164
  msgid "Download"
165
  msgstr "Stáhnout"
166
 
167
- #: gallery-plugin.php:617
168
  #, php-format
169
  msgid "Install %s"
170
  msgstr "Instaluj %s"
171
 
172
- #: gallery-plugin.php:617
173
  msgid "Install now from wordpress.org"
174
  msgstr "Instaluj ihned z wordpress.org"
175
 
176
- #: gallery-plugin.php:619
177
  msgid ""
178
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
179
  "fill in our contact form on our site"
@@ -181,45 +194,45 @@ msgstr ""
181
  "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft."
182
  "com a nebo vyplňte kontaktní formulář na našich stránkách."
183
 
184
- #: gallery-plugin.php:654
185
  msgid "See photo &raquo;"
186
  msgstr "Zobrazit obsah galerie &raquo;"
187
 
188
- #: gallery-plugin.php:733
189
  msgid "Options saved."
190
  msgstr "Nastavení uložena."
191
 
192
- #: gallery-plugin.php:747
193
  msgid "Gallery Options"
194
  msgstr "Nastavení galerie"
195
 
196
- #: gallery-plugin.php:750
197
  msgid ""
198
  "If you would like to add a Single Gallery to your page or post, just copy "
199
  "and put this shortcode onto your post or page content:"
200
  msgstr ""
201
 
202
- #: gallery-plugin.php:754
203
  msgid "The size of the cover album for gallery"
204
  msgstr "Rozměry náhledu alba v galerii"
205
 
206
- #: gallery-plugin.php:756 gallery-plugin.php:764
207
  msgid "Image size name"
208
  msgstr "Název rozměru"
209
 
210
- #: gallery-plugin.php:757 gallery-plugin.php:765
211
  msgid "Width (in px)"
212
  msgstr "Šířka (v px)"
213
 
214
- #: gallery-plugin.php:758 gallery-plugin.php:766
215
  msgid "Height (in px)"
216
  msgstr "Výška (v px)"
217
 
218
- #: gallery-plugin.php:762
219
  msgid "Size for gallery image"
220
  msgstr "Rozměry náhledu obrázku v albu"
221
 
222
- #: gallery-plugin.php:770
223
  msgid ""
224
  "WordPress will create a copy of the post thumbnail with the specified "
225
  "dimensions when you upload a new photo."
@@ -227,90 +240,90 @@ msgstr ""
227
  "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání "
228
  "nového obrázku."
229
 
230
- #: gallery-plugin.php:773
231
  msgid "Count images in row"
232
  msgstr "Počet náhledů zobrazených v jedné řádce"
233
 
234
- #: gallery-plugin.php:779
235
  msgid "Start slideshow"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:785
239
  msgid "Slideshow interval"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:793
243
  msgid "attachment id"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:794
247
  msgid "attachment title"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:795
251
  msgid "date"
252
  msgstr "Datum"
253
 
254
- #: gallery-plugin.php:796
255
  msgid ""
256
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
257
  "dialog )"
258
  msgstr ""
259
 
260
- #: gallery-plugin.php:797
261
  msgid "random"
262
  msgstr ""
263
 
264
- #: gallery-plugin.php:801
265
  msgid "Attachments order"
266
  msgstr ""
267
 
268
- #: gallery-plugin.php:803
269
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
270
  msgstr ""
271
 
272
- #: gallery-plugin.php:804
273
  msgid ""
274
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
275
  msgstr ""
276
 
277
- #: gallery-plugin.php:808
278
  msgid "Display Return link"
279
  msgstr ""
280
 
281
- #: gallery-plugin.php:814
282
  msgid "Display Return link in shortcode"
283
  msgstr ""
284
 
285
- #: gallery-plugin.php:820
286
  msgid "Label for Return link"
287
  msgstr ""
288
 
289
- #: gallery-plugin.php:826
290
  msgid "Label for Read More link"
291
  msgstr ""
292
 
293
- #: gallery-plugin.php:834
294
  msgid "Save Changes"
295
  msgstr "Uložit změny"
296
 
297
- #: gallery-plugin.php:847
298
  msgid "FAQ"
299
  msgstr "FAQ "
300
 
301
- #: gallery-plugin.php:848
302
  msgid "Support"
303
  msgstr "Podpora"
304
 
305
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
306
  msgid "Sorry - nothing to found."
307
  msgstr "Omlouvám se - nic nenalezeno."
308
 
309
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
310
  msgid "Download High resolution image"
311
  msgstr ""
312
 
313
- #: template/gallery-single-template.php:83
314
  msgid "Image "
315
  msgstr ""
316
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:10+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:10+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "Language: cs_CZ\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "Galerie"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
68
  msgid "Gallery Shortcode"
69
  msgstr "Nastavení galerie"
70
 
71
+ #: gallery-plugin.php:209
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
+ #: gallery-plugin.php:213
79
  msgid "Choose an image to upload:"
80
  msgstr "Vyberte náhled pro nahrání:"
81
 
82
+ #: gallery-plugin.php:218
83
  msgid "Please enable JavaScript to use the file uploader."
84
  msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
85
 
86
+ #: gallery-plugin.php:225
87
  msgid "Allow download link for images in this gallery"
88
  msgstr ""
89
 
90
+ #: gallery-plugin.php:226
91
  msgid ""
92
  "Please use drag and drop function to change the order of the output of "
93
  "images and do not forget to save post."
94
  msgstr ""
95
 
96
+ #: gallery-plugin.php:228
97
  msgid "Please do not forget to select "
98
  msgstr ""
99
 
100
+ #: gallery-plugin.php:228 gallery-plugin.php:818
101
  msgid "Attachments order by"
102
  msgstr ""
103
 
104
+ #: gallery-plugin.php:228
105
  msgid "attachments order"
106
  msgstr ""
107
 
108
+ #: gallery-plugin.php:228
109
  msgid "in the settings of the plugin (page "
110
  msgstr ""
111
 
112
+ #: gallery-plugin.php:276
113
+ msgid "Link URL"
114
+ msgstr ""
115
+
116
+ #: gallery-plugin.php:276
117
+ msgid "(clicking on image <br /> open the link in new window)"
118
+ msgstr ""
119
+
120
+ #: gallery-plugin.php:277
121
+ msgid "Delete"
122
+ msgstr ""
123
+
124
+ #: gallery-plugin.php:291
125
  msgid ""
126
  "You can add the Single Gallery on the page or in the post by inserting this "
127
  "shortcode in the content"
128
  msgstr ""
129
 
130
+ #: gallery-plugin.php:293
131
  msgid ""
132
  "If you want to take a brief display of the gallery with a link to a Single "
133
  "Sallery Page"
134
  msgstr ""
135
 
136
+ #: gallery-plugin.php:475
137
  msgid "Title"
138
  msgstr "Název"
139
 
140
+ #: gallery-plugin.php:476
141
  msgid "Author"
142
  msgstr "Autor"
143
 
144
+ #: gallery-plugin.php:477
145
  msgid "Photo's"
146
  msgstr "Fotky"
147
 
148
+ #: gallery-plugin.php:478
149
  msgid "Public"
150
  msgstr "Veřejné"
151
 
152
+ #: gallery-plugin.php:479
153
  msgid "Date"
154
  msgstr "Datum"
155
 
156
+ #: gallery-plugin.php:626
157
  msgid "Activated plugins"
158
  msgstr "Aktivní pluginy"
159
 
160
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
161
  msgid "Read more"
162
  msgstr "Další informace"
163
 
164
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
165
  msgid "Settings"
166
  msgstr "Nastavení"
167
 
168
+ #: gallery-plugin.php:634
169
  msgid "Installed plugins"
170
  msgstr "Nainstalované pluginy"
171
 
172
+ #: gallery-plugin.php:642
173
  msgid "Recommended plugins"
174
  msgstr "Doporučené pluginy"
175
 
176
+ #: gallery-plugin.php:644
177
  msgid "Download"
178
  msgstr "Stáhnout"
179
 
180
+ #: gallery-plugin.php:644
181
  #, php-format
182
  msgid "Install %s"
183
  msgstr "Instaluj %s"
184
 
185
+ #: gallery-plugin.php:644
186
  msgid "Install now from wordpress.org"
187
  msgstr "Instaluj ihned z wordpress.org"
188
 
189
+ #: gallery-plugin.php:646
190
  msgid ""
191
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
192
  "fill in our contact form on our site"
194
  "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft."
195
  "com a nebo vyplňte kontaktní formulář na našich stránkách."
196
 
197
+ #: gallery-plugin.php:681
198
  msgid "See photo &raquo;"
199
  msgstr "Zobrazit obsah galerie &raquo;"
200
 
201
+ #: gallery-plugin.php:760
202
  msgid "Options saved."
203
  msgstr "Nastavení uložena."
204
 
205
+ #: gallery-plugin.php:774
206
  msgid "Gallery Options"
207
  msgstr "Nastavení galerie"
208
 
209
+ #: gallery-plugin.php:777
210
  msgid ""
211
  "If you would like to add a Single Gallery to your page or post, just copy "
212
  "and put this shortcode onto your post or page content:"
213
  msgstr ""
214
 
215
+ #: gallery-plugin.php:781
216
  msgid "The size of the cover album for gallery"
217
  msgstr "Rozměry náhledu alba v galerii"
218
 
219
+ #: gallery-plugin.php:783 gallery-plugin.php:791
220
  msgid "Image size name"
221
  msgstr "Název rozměru"
222
 
223
+ #: gallery-plugin.php:784 gallery-plugin.php:792
224
  msgid "Width (in px)"
225
  msgstr "Šířka (v px)"
226
 
227
+ #: gallery-plugin.php:785 gallery-plugin.php:793
228
  msgid "Height (in px)"
229
  msgstr "Výška (v px)"
230
 
231
+ #: gallery-plugin.php:789
232
  msgid "Size for gallery image"
233
  msgstr "Rozměry náhledu obrázku v albu"
234
 
235
+ #: gallery-plugin.php:797
236
  msgid ""
237
  "WordPress will create a copy of the post thumbnail with the specified "
238
  "dimensions when you upload a new photo."
240
  "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání "
241
  "nového obrázku."
242
 
243
+ #: gallery-plugin.php:800
244
  msgid "Count images in row"
245
  msgstr "Počet náhledů zobrazených v jedné řádce"
246
 
247
+ #: gallery-plugin.php:806
248
  msgid "Start slideshow"
249
  msgstr ""
250
 
251
+ #: gallery-plugin.php:812
252
  msgid "Slideshow interval"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:820
256
  msgid "attachment id"
257
  msgstr ""
258
 
259
+ #: gallery-plugin.php:821
260
  msgid "attachment title"
261
  msgstr ""
262
 
263
+ #: gallery-plugin.php:822
264
  msgid "date"
265
  msgstr "Datum"
266
 
267
+ #: gallery-plugin.php:823
268
  msgid ""
269
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
270
  "dialog )"
271
  msgstr ""
272
 
273
+ #: gallery-plugin.php:824
274
  msgid "random"
275
  msgstr ""
276
 
277
+ #: gallery-plugin.php:828
278
  msgid "Attachments order"
279
  msgstr ""
280
 
281
+ #: gallery-plugin.php:830
282
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
283
  msgstr ""
284
 
285
+ #: gallery-plugin.php:831
286
  msgid ""
287
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:835
291
  msgid "Display Return link"
292
  msgstr ""
293
 
294
+ #: gallery-plugin.php:841
295
  msgid "Display Return link in shortcode"
296
  msgstr ""
297
 
298
+ #: gallery-plugin.php:847
299
  msgid "Label for Return link"
300
  msgstr ""
301
 
302
+ #: gallery-plugin.php:853
303
  msgid "Label for Read More link"
304
  msgstr ""
305
 
306
+ #: gallery-plugin.php:861
307
  msgid "Save Changes"
308
  msgstr "Uložit změny"
309
 
310
+ #: gallery-plugin.php:874
311
  msgid "FAQ"
312
  msgstr "FAQ "
313
 
314
+ #: gallery-plugin.php:875
315
  msgid "Support"
316
  msgstr "Podpora"
317
 
318
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
319
  msgid "Sorry - nothing to found."
320
  msgstr "Omlouvám se - nic nenalezeno."
321
 
322
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
323
  msgid "Download High resolution image"
324
  msgstr ""
325
 
326
+ #: template/gallery-single-template.php:90
327
  msgid "Image "
328
  msgstr ""
329
 
languages/gallery-de_DE.mo CHANGED
Binary file
languages/gallery-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: uk_UA\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "Galerien"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
@@ -67,113 +68,125 @@ msgstr "Datei hochladen"
67
  msgid "Gallery Shortcode"
68
  msgstr "Galerie Einstellungen"
69
 
70
- #: gallery-plugin.php:208
71
  msgid ""
72
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
73
  "your webserver. Please use the standard WP functional to upload the images "
74
  "(media library)"
75
  msgstr ""
76
 
77
- #: gallery-plugin.php:212
78
  msgid "Choose an image to upload:"
79
  msgstr "Screenshot zum hochladen auswählen:"
80
 
81
- #: gallery-plugin.php:217
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
84
 
85
- #: gallery-plugin.php:224
86
  msgid "Allow download link for images in this gallery"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:225
90
  msgid ""
91
  "Please use drag and drop function to change the order of the output of "
92
  "images and do not forget to save post."
93
  msgstr ""
94
 
95
- #: gallery-plugin.php:227
96
  msgid "Please do not forget to select "
97
  msgstr ""
98
 
99
- #: gallery-plugin.php:227 gallery-plugin.php:791
100
  msgid "Attachments order by"
101
  msgstr ""
102
 
103
- #: gallery-plugin.php:227
104
  msgid "attachments order"
105
  msgstr ""
106
 
107
- #: gallery-plugin.php:227
108
  msgid "in the settings of the plugin (page "
109
  msgstr ""
110
 
111
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid ""
113
  "You can add the Single Gallery on the page or in the post by inserting this "
114
  "shortcode in the content"
115
  msgstr ""
116
 
117
- #: gallery-plugin.php:291
118
  msgid ""
119
  "If you want to take a brief display of the gallery with a link to a Single "
120
  "Sallery Page"
121
  msgstr ""
122
 
123
- #: gallery-plugin.php:448
124
  msgid "Title"
125
  msgstr "Titel"
126
 
127
- #: gallery-plugin.php:449
128
  msgid "Author"
129
  msgstr "Author"
130
 
131
- #: gallery-plugin.php:450
132
  msgid "Photo's"
133
  msgstr "Fotos"
134
 
135
- #: gallery-plugin.php:451
136
  msgid "Public"
137
  msgstr "Öffentlich"
138
 
139
- #: gallery-plugin.php:452
140
  msgid "Date"
141
  msgstr "Datum"
142
 
143
- #: gallery-plugin.php:599
144
  msgid "Activated plugins"
145
  msgstr "Aktivierte Plugins"
146
 
147
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
148
  msgid "Read more"
149
  msgstr "Mehr erfahren"
150
 
151
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
152
  msgid "Settings"
153
  msgstr "Einstellungen"
154
 
155
- #: gallery-plugin.php:607
156
  msgid "Installed plugins"
157
  msgstr "Installierte Plugins"
158
 
159
- #: gallery-plugin.php:615
160
  msgid "Recommended plugins"
161
  msgstr "Benötigte Plugins"
162
 
163
- #: gallery-plugin.php:617
164
  msgid "Download"
165
  msgstr "Download"
166
 
167
- #: gallery-plugin.php:617
168
  #, php-format
169
  msgid "Install %s"
170
  msgstr "Installiere %s"
171
 
172
- #: gallery-plugin.php:617
173
  msgid "Install now from wordpress.org"
174
  msgstr "Direkt von wordpress.org installieren"
175
 
176
- #: gallery-plugin.php:619
177
  msgid ""
178
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
179
  "fill in our contact form on our site"
@@ -181,45 +194,45 @@ msgstr ""
181
  "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, "
182
  "oder füllen Sie das Kontakt Formular auf unserer Website aus."
183
 
184
- #: gallery-plugin.php:654
185
  msgid "See photo &raquo;"
186
  msgstr "Fotos anzeigen &raquo;"
187
 
188
- #: gallery-plugin.php:733
189
  msgid "Options saved."
190
  msgstr "Einstellungen gespeichert."
191
 
192
- #: gallery-plugin.php:747
193
  msgid "Gallery Options"
194
  msgstr "Galerie Einstellungen"
195
 
196
- #: gallery-plugin.php:750
197
  msgid ""
198
  "If you would like to add a Single Gallery to your page or post, just copy "
199
  "and put this shortcode onto your post or page content:"
200
  msgstr ""
201
 
202
- #: gallery-plugin.php:754
203
  msgid "The size of the cover album for gallery"
204
  msgstr "Die Größe der Bilder in der Albumansicht"
205
 
206
- #: gallery-plugin.php:756 gallery-plugin.php:764
207
  msgid "Image size name"
208
  msgstr "Name der Bilder"
209
 
210
- #: gallery-plugin.php:757 gallery-plugin.php:765
211
  msgid "Width (in px)"
212
  msgstr "Breite (in px)"
213
 
214
- #: gallery-plugin.php:758 gallery-plugin.php:766
215
  msgid "Height (in px)"
216
  msgstr "Höhe (in px)"
217
 
218
- #: gallery-plugin.php:762
219
  msgid "Size for gallery image"
220
  msgstr "Die Größe der Bilder in der Galerie"
221
 
222
- #: gallery-plugin.php:770
223
  msgid ""
224
  "WordPress will create a copy of the post thumbnail with the specified "
225
  "dimensions when you upload a new photo."
@@ -227,90 +240,90 @@ msgstr ""
227
  "WordPress will create a copy of the post thumbnail with the specified "
228
  "dimensions when you upload a new photo."
229
 
230
- #: gallery-plugin.php:773
231
  msgid "Count images in row"
232
  msgstr "Anzahl Bilder in der Reihe"
233
 
234
- #: gallery-plugin.php:779
235
  msgid "Start slideshow"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:785
239
  msgid "Slideshow interval"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:793
243
  msgid "attachment id"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:794
247
  msgid "attachment title"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:795
251
  msgid "date"
252
  msgstr "Datum"
253
 
254
- #: gallery-plugin.php:796
255
  msgid ""
256
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
257
  "dialog )"
258
  msgstr ""
259
 
260
- #: gallery-plugin.php:797
261
  msgid "random"
262
  msgstr ""
263
 
264
- #: gallery-plugin.php:801
265
  msgid "Attachments order"
266
  msgstr ""
267
 
268
- #: gallery-plugin.php:803
269
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
270
  msgstr ""
271
 
272
- #: gallery-plugin.php:804
273
  msgid ""
274
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
275
  msgstr ""
276
 
277
- #: gallery-plugin.php:808
278
  msgid "Display Return link"
279
  msgstr ""
280
 
281
- #: gallery-plugin.php:814
282
  msgid "Display Return link in shortcode"
283
  msgstr ""
284
 
285
- #: gallery-plugin.php:820
286
  msgid "Label for Return link"
287
  msgstr ""
288
 
289
- #: gallery-plugin.php:826
290
  msgid "Label for Read More link"
291
  msgstr ""
292
 
293
- #: gallery-plugin.php:834
294
  msgid "Save Changes"
295
  msgstr "Einstellungen speichern"
296
 
297
- #: gallery-plugin.php:847
298
  msgid "FAQ"
299
  msgstr "FAQ"
300
 
301
- #: gallery-plugin.php:848
302
  msgid "Support"
303
  msgstr "Support"
304
 
305
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
306
  msgid "Sorry - nothing to found."
307
  msgstr "Leider nichts gefunden."
308
 
309
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
310
  msgid "Download High resolution image"
311
  msgstr ""
312
 
313
- #: template/gallery-single-template.php:83
314
  msgid "Image "
315
  msgstr ""
316
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: uk_UA\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "Galerien"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
68
  msgid "Gallery Shortcode"
69
  msgstr "Galerie Einstellungen"
70
 
71
+ #: gallery-plugin.php:209
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
+ #: gallery-plugin.php:213
79
  msgid "Choose an image to upload:"
80
  msgstr "Screenshot zum hochladen auswählen:"
81
 
82
+ #: gallery-plugin.php:218
83
  msgid "Please enable JavaScript to use the file uploader."
84
  msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
85
 
86
+ #: gallery-plugin.php:225
87
  msgid "Allow download link for images in this gallery"
88
  msgstr ""
89
 
90
+ #: gallery-plugin.php:226
91
  msgid ""
92
  "Please use drag and drop function to change the order of the output of "
93
  "images and do not forget to save post."
94
  msgstr ""
95
 
96
+ #: gallery-plugin.php:228
97
  msgid "Please do not forget to select "
98
  msgstr ""
99
 
100
+ #: gallery-plugin.php:228 gallery-plugin.php:818
101
  msgid "Attachments order by"
102
  msgstr ""
103
 
104
+ #: gallery-plugin.php:228
105
  msgid "attachments order"
106
  msgstr ""
107
 
108
+ #: gallery-plugin.php:228
109
  msgid "in the settings of the plugin (page "
110
  msgstr ""
111
 
112
+ #: gallery-plugin.php:276
113
+ msgid "Link URL"
114
+ msgstr ""
115
+
116
+ #: gallery-plugin.php:276
117
+ msgid "(clicking on image <br /> open the link in new window)"
118
+ msgstr ""
119
+
120
+ #: gallery-plugin.php:277
121
+ msgid "Delete"
122
+ msgstr ""
123
+
124
+ #: gallery-plugin.php:291
125
  msgid ""
126
  "You can add the Single Gallery on the page or in the post by inserting this "
127
  "shortcode in the content"
128
  msgstr ""
129
 
130
+ #: gallery-plugin.php:293
131
  msgid ""
132
  "If you want to take a brief display of the gallery with a link to a Single "
133
  "Sallery Page"
134
  msgstr ""
135
 
136
+ #: gallery-plugin.php:475
137
  msgid "Title"
138
  msgstr "Titel"
139
 
140
+ #: gallery-plugin.php:476
141
  msgid "Author"
142
  msgstr "Author"
143
 
144
+ #: gallery-plugin.php:477
145
  msgid "Photo's"
146
  msgstr "Fotos"
147
 
148
+ #: gallery-plugin.php:478
149
  msgid "Public"
150
  msgstr "Öffentlich"
151
 
152
+ #: gallery-plugin.php:479
153
  msgid "Date"
154
  msgstr "Datum"
155
 
156
+ #: gallery-plugin.php:626
157
  msgid "Activated plugins"
158
  msgstr "Aktivierte Plugins"
159
 
160
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
161
  msgid "Read more"
162
  msgstr "Mehr erfahren"
163
 
164
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
165
  msgid "Settings"
166
  msgstr "Einstellungen"
167
 
168
+ #: gallery-plugin.php:634
169
  msgid "Installed plugins"
170
  msgstr "Installierte Plugins"
171
 
172
+ #: gallery-plugin.php:642
173
  msgid "Recommended plugins"
174
  msgstr "Benötigte Plugins"
175
 
176
+ #: gallery-plugin.php:644
177
  msgid "Download"
178
  msgstr "Download"
179
 
180
+ #: gallery-plugin.php:644
181
  #, php-format
182
  msgid "Install %s"
183
  msgstr "Installiere %s"
184
 
185
+ #: gallery-plugin.php:644
186
  msgid "Install now from wordpress.org"
187
  msgstr "Direkt von wordpress.org installieren"
188
 
189
+ #: gallery-plugin.php:646
190
  msgid ""
191
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
192
  "fill in our contact form on our site"
194
  "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, "
195
  "oder füllen Sie das Kontakt Formular auf unserer Website aus."
196
 
197
+ #: gallery-plugin.php:681
198
  msgid "See photo &raquo;"
199
  msgstr "Fotos anzeigen &raquo;"
200
 
201
+ #: gallery-plugin.php:760
202
  msgid "Options saved."
203
  msgstr "Einstellungen gespeichert."
204
 
205
+ #: gallery-plugin.php:774
206
  msgid "Gallery Options"
207
  msgstr "Galerie Einstellungen"
208
 
209
+ #: gallery-plugin.php:777
210
  msgid ""
211
  "If you would like to add a Single Gallery to your page or post, just copy "
212
  "and put this shortcode onto your post or page content:"
213
  msgstr ""
214
 
215
+ #: gallery-plugin.php:781
216
  msgid "The size of the cover album for gallery"
217
  msgstr "Die Größe der Bilder in der Albumansicht"
218
 
219
+ #: gallery-plugin.php:783 gallery-plugin.php:791
220
  msgid "Image size name"
221
  msgstr "Name der Bilder"
222
 
223
+ #: gallery-plugin.php:784 gallery-plugin.php:792
224
  msgid "Width (in px)"
225
  msgstr "Breite (in px)"
226
 
227
+ #: gallery-plugin.php:785 gallery-plugin.php:793
228
  msgid "Height (in px)"
229
  msgstr "Höhe (in px)"
230
 
231
+ #: gallery-plugin.php:789
232
  msgid "Size for gallery image"
233
  msgstr "Die Größe der Bilder in der Galerie"
234
 
235
+ #: gallery-plugin.php:797
236
  msgid ""
237
  "WordPress will create a copy of the post thumbnail with the specified "
238
  "dimensions when you upload a new photo."
240
  "WordPress will create a copy of the post thumbnail with the specified "
241
  "dimensions when you upload a new photo."
242
 
243
+ #: gallery-plugin.php:800
244
  msgid "Count images in row"
245
  msgstr "Anzahl Bilder in der Reihe"
246
 
247
+ #: gallery-plugin.php:806
248
  msgid "Start slideshow"
249
  msgstr ""
250
 
251
+ #: gallery-plugin.php:812
252
  msgid "Slideshow interval"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:820
256
  msgid "attachment id"
257
  msgstr ""
258
 
259
+ #: gallery-plugin.php:821
260
  msgid "attachment title"
261
  msgstr ""
262
 
263
+ #: gallery-plugin.php:822
264
  msgid "date"
265
  msgstr "Datum"
266
 
267
+ #: gallery-plugin.php:823
268
  msgid ""
269
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
270
  "dialog )"
271
  msgstr ""
272
 
273
+ #: gallery-plugin.php:824
274
  msgid "random"
275
  msgstr ""
276
 
277
+ #: gallery-plugin.php:828
278
  msgid "Attachments order"
279
  msgstr ""
280
 
281
+ #: gallery-plugin.php:830
282
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
283
  msgstr ""
284
 
285
+ #: gallery-plugin.php:831
286
  msgid ""
287
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:835
291
  msgid "Display Return link"
292
  msgstr ""
293
 
294
+ #: gallery-plugin.php:841
295
  msgid "Display Return link in shortcode"
296
  msgstr ""
297
 
298
+ #: gallery-plugin.php:847
299
  msgid "Label for Return link"
300
  msgstr ""
301
 
302
+ #: gallery-plugin.php:853
303
  msgid "Label for Read More link"
304
  msgstr ""
305
 
306
+ #: gallery-plugin.php:861
307
  msgid "Save Changes"
308
  msgstr "Einstellungen speichern"
309
 
310
+ #: gallery-plugin.php:874
311
  msgid "FAQ"
312
  msgstr "FAQ"
313
 
314
+ #: gallery-plugin.php:875
315
  msgid "Support"
316
  msgstr "Support"
317
 
318
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
319
  msgid "Sorry - nothing to found."
320
  msgstr "Leider nichts gefunden."
321
 
322
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
323
  msgid "Download High resolution image"
324
  msgstr ""
325
 
326
+ #: template/gallery-single-template.php:90
327
  msgid "Image "
328
  msgstr ""
329
 
languages/gallery-es_ES.mo CHANGED
Binary file
languages/gallery-es_ES.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
- "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -31,7 +32,7 @@ msgstr ""
31
  msgid "Galleries"
32
  msgstr "Galerías"
33
 
34
- #: gallery-plugin.php:128 gallery-plugin.php:630
35
  msgid "Gallery"
36
  msgstr "Galería"
37
 
@@ -72,7 +73,7 @@ msgstr "Subir Archivo"
72
  msgid "Gallery Shortcode"
73
  msgstr "Opciones de Galería"
74
 
75
- #: gallery-plugin.php:208
76
  msgid ""
77
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
78
  "your webserver. Please use the standard WP functional to upload the images "
@@ -82,107 +83,125 @@ msgstr ""
82
  "escrito por su servidor web. Por favor, use la forma estandár de WP para "
83
  "subir las imágenes (librería multimedia)"
84
 
85
- #: gallery-plugin.php:212
86
  #, fuzzy
87
  msgid "Choose an image to upload:"
88
  msgstr "Escoger una imagen para subir:"
89
 
90
- #: gallery-plugin.php:217
91
  msgid "Please enable JavaScript to use the file uploader."
92
  msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
93
 
94
- #: gallery-plugin.php:224
95
  msgid "Allow download link for images in this gallery"
96
- msgstr ""
97
 
98
- #: gallery-plugin.php:225
99
  msgid ""
100
  "Please use drag and drop function to change the order of the output of "
101
  "images and do not forget to save post."
102
  msgstr ""
 
 
103
 
104
- #: gallery-plugin.php:227
105
  msgid "Please do not forget to select "
106
- msgstr ""
107
 
108
- #: gallery-plugin.php:227 gallery-plugin.php:791
109
  msgid "Attachments order by"
110
- msgstr ""
111
 
112
- #: gallery-plugin.php:227
113
  msgid "attachments order"
114
- msgstr ""
115
 
116
- #: gallery-plugin.php:227
117
  msgid "in the settings of the plugin (page "
 
 
 
 
118
  msgstr ""
119
 
120
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
121
  msgid ""
122
  "You can add the Single Gallery on the page or in the post by inserting this "
123
  "shortcode in the content"
124
  msgstr ""
 
 
125
 
126
- #: gallery-plugin.php:291
127
  msgid ""
128
  "If you want to take a brief display of the gallery with a link to a Single "
129
  "Sallery Page"
130
  msgstr ""
 
 
131
 
132
- #: gallery-plugin.php:448
133
  msgid "Title"
134
  msgstr "Título"
135
 
136
- #: gallery-plugin.php:449
137
  msgid "Author"
138
  msgstr "Autor"
139
 
140
- #: gallery-plugin.php:450
141
  msgid "Photo's"
142
  msgstr "Foto de"
143
 
144
- #: gallery-plugin.php:451
145
  msgid "Public"
146
  msgstr "Pública"
147
 
148
- #: gallery-plugin.php:452
149
  msgid "Date"
150
  msgstr "Fecha"
151
 
152
- #: gallery-plugin.php:599
153
  msgid "Activated plugins"
154
  msgstr "Plugins Activados"
155
 
156
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
157
  msgid "Read more"
158
  msgstr "Leer más"
159
 
160
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
161
  msgid "Settings"
162
  msgstr "Configuración"
163
 
164
- #: gallery-plugin.php:607
165
  msgid "Installed plugins"
166
  msgstr "Plugins instalados"
167
 
168
- #: gallery-plugin.php:615
169
  msgid "Recommended plugins"
170
  msgstr "Plugins recomendados"
171
 
172
- #: gallery-plugin.php:617
173
  msgid "Download"
174
  msgstr "Descargar"
175
 
176
- #: gallery-plugin.php:617
177
  #, php-format
178
  msgid "Install %s"
179
  msgstr "Instalar %s"
180
 
181
- #: gallery-plugin.php:617
182
  msgid "Install now from wordpress.org"
183
  msgstr "Instalar ahora desde wordpress.org"
184
 
185
- #: gallery-plugin.php:619
186
  msgid ""
187
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
188
  "fill in our contact form on our site"
@@ -191,45 +210,47 @@ msgstr ""
191
  "plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro "
192
  "sitio"
193
 
194
- #: gallery-plugin.php:654
195
  msgid "See photo &raquo;"
196
  msgstr "Ver foto &raquo;"
197
 
198
- #: gallery-plugin.php:733
199
  msgid "Options saved."
200
  msgstr "Opciones guardadas."
201
 
202
- #: gallery-plugin.php:747
203
  msgid "Gallery Options"
204
  msgstr "Opciones de Galería"
205
 
206
- #: gallery-plugin.php:750
207
  msgid ""
208
  "If you would like to add a Single Gallery to your page or post, just copy "
209
  "and put this shortcode onto your post or page content:"
210
  msgstr ""
 
 
211
 
212
- #: gallery-plugin.php:754
213
  msgid "The size of the cover album for gallery"
214
  msgstr "El tamaño de la cubierta del álbum de la galería"
215
 
216
- #: gallery-plugin.php:756 gallery-plugin.php:764
217
  msgid "Image size name"
218
  msgstr "Nombre del tamaño de la imagen"
219
 
220
- #: gallery-plugin.php:757 gallery-plugin.php:765
221
  msgid "Width (in px)"
222
  msgstr "Ancho (en px)"
223
 
224
- #: gallery-plugin.php:758 gallery-plugin.php:766
225
  msgid "Height (in px)"
226
  msgstr "Alto (en px)"
227
 
228
- #: gallery-plugin.php:762
229
  msgid "Size for gallery image"
230
  msgstr "Tamaño de la galería de imágenes"
231
 
232
- #: gallery-plugin.php:770
233
  msgid ""
234
  "WordPress will create a copy of the post thumbnail with the specified "
235
  "dimensions when you upload a new photo."
@@ -237,92 +258,96 @@ msgstr ""
237
  "WordPress creará una copia de la miniatura de la entrada con las dimensiones "
238
  "especificadas, cuando se suba una foto nueva."
239
 
240
- #: gallery-plugin.php:773
241
  msgid "Count images in row"
242
  msgstr "Contar las imágenes en la fila"
243
 
244
- #: gallery-plugin.php:779
245
  msgid "Start slideshow"
246
  msgstr "Comenzar presentación diapositivas"
247
 
248
- #: gallery-plugin.php:785
249
  msgid "Slideshow interval"
250
  msgstr "Intervalo de presentación diapositivas"
251
 
252
- #: gallery-plugin.php:793
253
  msgid "attachment id"
254
- msgstr ""
255
 
256
- #: gallery-plugin.php:794
257
  msgid "attachment title"
258
- msgstr ""
259
 
260
- #: gallery-plugin.php:795
261
  msgid "date"
262
- msgstr ""
263
 
264
- #: gallery-plugin.php:796
265
  msgid ""
266
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
267
  "dialog )"
268
  msgstr ""
 
 
269
 
270
- #: gallery-plugin.php:797
271
  msgid "random"
272
- msgstr ""
273
 
274
- #: gallery-plugin.php:801
275
  msgid "Attachments order"
276
- msgstr ""
277
 
278
- #: gallery-plugin.php:803
279
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
280
  msgstr ""
 
281
 
282
- #: gallery-plugin.php:804
283
  msgid ""
284
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
285
  msgstr ""
 
286
 
287
- #: gallery-plugin.php:808
288
  msgid "Display Return link"
289
- msgstr ""
290
 
291
- #: gallery-plugin.php:814
292
  msgid "Display Return link in shortcode"
293
- msgstr ""
294
 
295
- #: gallery-plugin.php:820
296
  msgid "Label for Return link"
297
- msgstr ""
298
 
299
- #: gallery-plugin.php:826
300
  msgid "Label for Read More link"
301
- msgstr ""
302
 
303
- #: gallery-plugin.php:834
304
  msgid "Save Changes"
305
  msgstr "Guardar Cambios"
306
 
307
- #: gallery-plugin.php:847
308
  msgid "FAQ"
309
  msgstr "FAQ "
310
 
311
- #: gallery-plugin.php:848
312
  msgid "Support"
313
  msgstr "Soporte"
314
 
315
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
316
  msgid "Sorry - nothing to found."
317
  msgstr "Lo sentimos - nada que encontrar."
318
 
319
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
320
  msgid "Download High resolution image"
321
- msgstr ""
322
 
323
- #: template/gallery-single-template.php:83
324
  msgid "Image "
325
- msgstr ""
326
 
327
  #~ msgid "Size for gallery album cover"
328
  #~ msgstr "Размер для "
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
+ "Last-Translator: Mr. Brazzi <leatiendo@brazzisoft.com>\n"
8
  "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
32
  msgid "Galleries"
33
  msgstr "Galerías"
34
 
35
+ #: gallery-plugin.php:128 gallery-plugin.php:657
36
  msgid "Gallery"
37
  msgstr "Galería"
38
 
73
  msgid "Gallery Shortcode"
74
  msgstr "Opciones de Galería"
75
 
76
+ #: gallery-plugin.php:209
77
  msgid ""
78
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
79
  "your webserver. Please use the standard WP functional to upload the images "
83
  "escrito por su servidor web. Por favor, use la forma estandár de WP para "
84
  "subir las imágenes (librería multimedia)"
85
 
86
+ #: gallery-plugin.php:213
87
  #, fuzzy
88
  msgid "Choose an image to upload:"
89
  msgstr "Escoger una imagen para subir:"
90
 
91
+ #: gallery-plugin.php:218
92
  msgid "Please enable JavaScript to use the file uploader."
93
  msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
94
 
95
+ #: gallery-plugin.php:225
96
  msgid "Allow download link for images in this gallery"
97
+ msgstr "Permitir enlace para descargar imágenes en esta galería"
98
 
99
+ #: gallery-plugin.php:226
100
  msgid ""
101
  "Please use drag and drop function to change the order of the output of "
102
  "images and do not forget to save post."
103
  msgstr ""
104
+ "Por favor, utilice la función de arrastrar y soltar para cambiar el orden de "
105
+ "la salida de las imágenes y no se olvide de guardar el post."
106
 
107
+ #: gallery-plugin.php:228
108
  msgid "Please do not forget to select "
109
+ msgstr "Por favor no olvide seleccionar"
110
 
111
+ #: gallery-plugin.php:228 gallery-plugin.php:818
112
  msgid "Attachments order by"
113
+ msgstr "Orden de los adjuntos por"
114
 
115
+ #: gallery-plugin.php:228
116
  msgid "attachments order"
117
+ msgstr "orden de los adjuntos"
118
 
119
+ #: gallery-plugin.php:228
120
  msgid "in the settings of the plugin (page "
121
+ msgstr "en la configuración del plugin (página"
122
+
123
+ #: gallery-plugin.php:276
124
+ msgid "Link URL"
125
  msgstr ""
126
 
127
+ #: gallery-plugin.php:276
128
+ msgid "(clicking on image <br /> open the link in new window)"
129
+ msgstr ""
130
+
131
+ #: gallery-plugin.php:277
132
+ msgid "Delete"
133
+ msgstr ""
134
+
135
+ #: gallery-plugin.php:291
136
  msgid ""
137
  "You can add the Single Gallery on the page or in the post by inserting this "
138
  "shortcode in the content"
139
  msgstr ""
140
+ "Puedes añadir la Galería Simple en una página o en un post insertando su "
141
+ "shortcode en el contenido"
142
 
143
+ #: gallery-plugin.php:293
144
  msgid ""
145
  "If you want to take a brief display of the gallery with a link to a Single "
146
  "Sallery Page"
147
  msgstr ""
148
+ "Si deseas mostrar un resumen de la galería con un enlace a la página "
149
+ "específica de la Gallería "
150
 
151
+ #: gallery-plugin.php:475
152
  msgid "Title"
153
  msgstr "Título"
154
 
155
+ #: gallery-plugin.php:476
156
  msgid "Author"
157
  msgstr "Autor"
158
 
159
+ #: gallery-plugin.php:477
160
  msgid "Photo's"
161
  msgstr "Foto de"
162
 
163
+ #: gallery-plugin.php:478
164
  msgid "Public"
165
  msgstr "Pública"
166
 
167
+ #: gallery-plugin.php:479
168
  msgid "Date"
169
  msgstr "Fecha"
170
 
171
+ #: gallery-plugin.php:626
172
  msgid "Activated plugins"
173
  msgstr "Plugins Activados"
174
 
175
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
176
  msgid "Read more"
177
  msgstr "Leer más"
178
 
179
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
180
  msgid "Settings"
181
  msgstr "Configuración"
182
 
183
+ #: gallery-plugin.php:634
184
  msgid "Installed plugins"
185
  msgstr "Plugins instalados"
186
 
187
+ #: gallery-plugin.php:642
188
  msgid "Recommended plugins"
189
  msgstr "Plugins recomendados"
190
 
191
+ #: gallery-plugin.php:644
192
  msgid "Download"
193
  msgstr "Descargar"
194
 
195
+ #: gallery-plugin.php:644
196
  #, php-format
197
  msgid "Install %s"
198
  msgstr "Instalar %s"
199
 
200
+ #: gallery-plugin.php:644
201
  msgid "Install now from wordpress.org"
202
  msgstr "Instalar ahora desde wordpress.org"
203
 
204
+ #: gallery-plugin.php:646
205
  msgid ""
206
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
207
  "fill in our contact form on our site"
210
  "plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro "
211
  "sitio"
212
 
213
+ #: gallery-plugin.php:681
214
  msgid "See photo &raquo;"
215
  msgstr "Ver foto &raquo;"
216
 
217
+ #: gallery-plugin.php:760
218
  msgid "Options saved."
219
  msgstr "Opciones guardadas."
220
 
221
+ #: gallery-plugin.php:774
222
  msgid "Gallery Options"
223
  msgstr "Opciones de Galería"
224
 
225
+ #: gallery-plugin.php:777
226
  msgid ""
227
  "If you would like to add a Single Gallery to your page or post, just copy "
228
  "and put this shortcode onto your post or page content:"
229
  msgstr ""
230
+ "Si deseas añadir la Galería solamente en tu página o post, solo copia y pega "
231
+ "el shortcode en la página o post correspondiente:"
232
 
233
+ #: gallery-plugin.php:781
234
  msgid "The size of the cover album for gallery"
235
  msgstr "El tamaño de la cubierta del álbum de la galería"
236
 
237
+ #: gallery-plugin.php:783 gallery-plugin.php:791
238
  msgid "Image size name"
239
  msgstr "Nombre del tamaño de la imagen"
240
 
241
+ #: gallery-plugin.php:784 gallery-plugin.php:792
242
  msgid "Width (in px)"
243
  msgstr "Ancho (en px)"
244
 
245
+ #: gallery-plugin.php:785 gallery-plugin.php:793
246
  msgid "Height (in px)"
247
  msgstr "Alto (en px)"
248
 
249
+ #: gallery-plugin.php:789
250
  msgid "Size for gallery image"
251
  msgstr "Tamaño de la galería de imágenes"
252
 
253
+ #: gallery-plugin.php:797
254
  msgid ""
255
  "WordPress will create a copy of the post thumbnail with the specified "
256
  "dimensions when you upload a new photo."
258
  "WordPress creará una copia de la miniatura de la entrada con las dimensiones "
259
  "especificadas, cuando se suba una foto nueva."
260
 
261
+ #: gallery-plugin.php:800
262
  msgid "Count images in row"
263
  msgstr "Contar las imágenes en la fila"
264
 
265
+ #: gallery-plugin.php:806
266
  msgid "Start slideshow"
267
  msgstr "Comenzar presentación diapositivas"
268
 
269
+ #: gallery-plugin.php:812
270
  msgid "Slideshow interval"
271
  msgstr "Intervalo de presentación diapositivas"
272
 
273
+ #: gallery-plugin.php:820
274
  msgid "attachment id"
275
+ msgstr "id del adjunto"
276
 
277
+ #: gallery-plugin.php:821
278
  msgid "attachment title"
279
+ msgstr "título del adjunto"
280
 
281
+ #: gallery-plugin.php:822
282
  msgid "date"
283
+ msgstr "fecha"
284
 
285
+ #: gallery-plugin.php:823
286
  msgid ""
287
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
288
  "dialog )"
289
  msgstr ""
290
+ "orden de los adjuntos (el valor entero mostrado en el campo del dialog "
291
+ "Insertar / Subir Galeria de Medias)"
292
 
293
+ #: gallery-plugin.php:824
294
  msgid "random"
295
+ msgstr "aleatorio"
296
 
297
+ #: gallery-plugin.php:828
298
  msgid "Attachments order"
299
+ msgstr "Orden de los Adjuntos"
300
 
301
+ #: gallery-plugin.php:830
302
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
303
  msgstr ""
304
+ "ASC (orden ascendente desde el valor menor al mayor - 1, 2, 3; a, b, c)"
305
 
306
+ #: gallery-plugin.php:831
307
  msgid ""
308
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
309
  msgstr ""
310
+ "DESC (orden descendente desde el valor mayor al menor - 3, 2, 1; c, b, a)"
311
 
312
+ #: gallery-plugin.php:835
313
  msgid "Display Return link"
314
+ msgstr "Mostrar el enlace de Regresar"
315
 
316
+ #: gallery-plugin.php:841
317
  msgid "Display Return link in shortcode"
318
+ msgstr "Mostrar el enlace de Regresar en shortcode"
319
 
320
+ #: gallery-plugin.php:847
321
  msgid "Label for Return link"
322
+ msgstr "Etiqueta para el enlace Regresar"
323
 
324
+ #: gallery-plugin.php:853
325
  msgid "Label for Read More link"
326
+ msgstr "Etiqueta para el enlace Leer Mas"
327
 
328
+ #: gallery-plugin.php:861
329
  msgid "Save Changes"
330
  msgstr "Guardar Cambios"
331
 
332
+ #: gallery-plugin.php:874
333
  msgid "FAQ"
334
  msgstr "FAQ "
335
 
336
+ #: gallery-plugin.php:875
337
  msgid "Support"
338
  msgstr "Soporte"
339
 
340
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
341
  msgid "Sorry - nothing to found."
342
  msgstr "Lo sentimos - nada que encontrar."
343
 
344
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
345
  msgid "Download High resolution image"
346
+ msgstr "Descargar la imagen en alta resolución"
347
 
348
+ #: template/gallery-single-template.php:90
349
  msgid "Image "
350
+ msgstr "Imagen"
351
 
352
  #~ msgid "Size for gallery album cover"
353
  #~ msgstr "Размер для "
languages/gallery-fr_FR.mo CHANGED
Binary file
languages/gallery-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
- "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
@@ -14,9 +14,10 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>1;\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: gallery-plugin.php:103 gallery-plugin.php:740
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -33,7 +34,7 @@ msgstr ""
33
  msgid "Galleries"
34
  msgstr "Galeries"
35
 
36
- #: gallery-plugin.php:128 gallery-plugin.php:630
37
  msgid "Gallery"
38
  msgstr "Galerie"
39
 
@@ -73,7 +74,7 @@ msgstr "Envoi de fichier"
73
  msgid "Gallery Shortcode"
74
  msgstr "Gallery Shortcode"
75
 
76
- #: gallery-plugin.php:208
77
  msgid ""
78
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
79
  "your webserver. Please use the standard WP functional to upload the images "
@@ -83,41 +84,55 @@ msgstr ""
83
  "pas autorisé en écriture par votre serveur Web. Merci d'utliser les "
84
  "fonctions standards de WP pour charger les images (Média)"
85
 
86
- #: gallery-plugin.php:212
87
  msgid "Choose an image to upload:"
88
  msgstr "Choisir l'image à envoyer :"
89
 
90
- #: gallery-plugin.php:217
91
  msgid "Please enable JavaScript to use the file uploader."
92
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
93
 
94
- #: gallery-plugin.php:224
95
  msgid "Allow download link for images in this gallery"
96
- msgstr ""
97
 
98
- #: gallery-plugin.php:225
99
  msgid ""
100
  "Please use drag and drop function to change the order of the output of "
101
  "images and do not forget to save post."
102
  msgstr ""
 
 
103
 
104
- #: gallery-plugin.php:227
105
  msgid "Please do not forget to select "
106
- msgstr ""
107
 
108
- #: gallery-plugin.php:227 gallery-plugin.php:791
109
  msgid "Attachments order by"
110
  msgstr "Fichiers trier par"
111
 
112
- #: gallery-plugin.php:227
113
  msgid "attachments order"
114
- msgstr ""
115
 
116
- #: gallery-plugin.php:227
117
  msgid "in the settings of the plugin (page "
 
 
 
 
 
 
 
 
 
 
 
 
118
  msgstr ""
119
 
120
- #: gallery-plugin.php:289
121
  msgid ""
122
  "You can add the Single Gallery on the page or in the post by inserting this "
123
  "shortcode in the content"
@@ -125,66 +140,68 @@ msgstr ""
125
  "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le code "
126
  "court dans le contenu"
127
 
128
- #: gallery-plugin.php:291
129
  msgid ""
130
  "If you want to take a brief display of the gallery with a link to a Single "
131
  "Sallery Page"
132
  msgstr ""
 
 
133
 
134
- #: gallery-plugin.php:448
135
  msgid "Title"
136
  msgstr "Titre"
137
 
138
- #: gallery-plugin.php:449
139
  msgid "Author"
140
  msgstr "Auteur"
141
 
142
- #: gallery-plugin.php:450
143
  msgid "Photo's"
144
  msgstr "Photo's"
145
 
146
- #: gallery-plugin.php:451
147
  msgid "Public"
148
  msgstr "Public"
149
 
150
- #: gallery-plugin.php:452
151
  msgid "Date"
152
  msgstr "Date"
153
 
154
- #: gallery-plugin.php:599
155
  msgid "Activated plugins"
156
  msgstr "Extensions activées"
157
 
158
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
159
  msgid "Read more"
160
  msgstr "Lire plus..."
161
 
162
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
163
  msgid "Settings"
164
  msgstr "Paramètres"
165
 
166
- #: gallery-plugin.php:607
167
  msgid "Installed plugins"
168
  msgstr "Extensions installées"
169
 
170
- #: gallery-plugin.php:615
171
  msgid "Recommended plugins"
172
  msgstr "Extensions recommandées"
173
 
174
- #: gallery-plugin.php:617
175
  msgid "Download"
176
  msgstr "Télécharger"
177
 
178
- #: gallery-plugin.php:617
179
  #, php-format
180
  msgid "Install %s"
181
  msgstr "Installation %s"
182
 
183
- #: gallery-plugin.php:617
184
  msgid "Install now from wordpress.org"
185
  msgstr "Installation à partir de wordpress.org"
186
 
187
- #: gallery-plugin.php:619
188
  msgid ""
189
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
190
  "fill in our contact form on our site"
@@ -192,19 +209,19 @@ msgstr ""
192
  "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft."
193
  "com ou remplissez le formulaire de contact sur notre site"
194
 
195
- #: gallery-plugin.php:654
196
  msgid "See photo &raquo;"
197
  msgstr "Voir la photo &raquo;"
198
 
199
- #: gallery-plugin.php:733
200
  msgid "Options saved."
201
  msgstr "Options sauvegardées."
202
 
203
- #: gallery-plugin.php:747
204
  msgid "Gallery Options"
205
  msgstr "Options de galerie"
206
 
207
- #: gallery-plugin.php:750
208
  msgid ""
209
  "If you would like to add a Single Gallery to your page or post, just copy "
210
  "and put this shortcode onto your post or page content:"
@@ -212,27 +229,27 @@ msgstr ""
212
  "Si vous voulez ajouter la galerie dans une page ou un article, copier le "
213
  "code court suivant dans le contenu de votre page ou de votre article:"
214
 
215
- #: gallery-plugin.php:754
216
  msgid "The size of the cover album for gallery"
217
  msgstr "Taille de la vignette de l'album"
218
 
219
- #: gallery-plugin.php:756 gallery-plugin.php:764
220
  msgid "Image size name"
221
  msgstr "Nom de la vignette"
222
 
223
- #: gallery-plugin.php:757 gallery-plugin.php:765
224
  msgid "Width (in px)"
225
  msgstr "Largeur (en pixels)"
226
 
227
- #: gallery-plugin.php:758 gallery-plugin.php:766
228
  msgid "Height (in px)"
229
  msgstr "Hauteur (en pixels)"
230
 
231
- #: gallery-plugin.php:762
232
  msgid "Size for gallery image"
233
  msgstr "Taille de la vignette de la galerie"
234
 
235
- #: gallery-plugin.php:770
236
  msgid ""
237
  "WordPress will create a copy of the post thumbnail with the specified "
238
  "dimensions when you upload a new photo."
@@ -240,31 +257,31 @@ msgstr ""
240
  "WordPress créera une copie de la miniature d'article avec les dimensions "
241
  "spécifiées quand vous envoyez une nouvelle photo."
242
 
243
- #: gallery-plugin.php:773
244
  msgid "Count images in row"
245
  msgstr "Nombre d'images par ligne"
246
 
247
- #: gallery-plugin.php:779
248
  msgid "Start slideshow"
249
  msgstr "Démarer le diaporama"
250
 
251
- #: gallery-plugin.php:785
252
  msgid "Slideshow interval"
253
  msgstr "Interval de transition pour le diaporama"
254
 
255
- #: gallery-plugin.php:793
256
  msgid "attachment id"
257
  msgstr "id du fichier"
258
 
259
- #: gallery-plugin.php:794
260
  msgid "attachment title"
261
  msgstr "titre du fichier"
262
 
263
- #: gallery-plugin.php:795
264
  msgid "date"
265
  msgstr "date"
266
 
267
- #: gallery-plugin.php:796
268
  msgid ""
269
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
270
  "dialog )"
@@ -272,62 +289,62 @@ msgstr ""
272
  "ordre des fichiers (le nombre dans la fenêtre d'insertion / téléchargement "
273
  "de la galerie)"
274
 
275
- #: gallery-plugin.php:797
276
  msgid "random"
277
  msgstr "aléatoire"
278
 
279
- #: gallery-plugin.php:801
280
  msgid "Attachments order"
281
  msgstr "Ordre des fichiers"
282
 
283
- #: gallery-plugin.php:803
284
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
285
  msgstr ""
286
  "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, "
287
  "b, c)"
288
 
289
- #: gallery-plugin.php:804
290
  msgid ""
291
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
292
  msgstr ""
293
  "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
294
 
295
- #: gallery-plugin.php:808
296
  msgid "Display Return link"
297
  msgstr "Afficher le lien de retour"
298
 
299
- #: gallery-plugin.php:814
300
  msgid "Display Return link in shortcode"
301
  msgstr "Afficher le lien de retour dans le code court"
302
 
303
- #: gallery-plugin.php:820
304
  msgid "Label for Return link"
305
  msgstr "Texte du lien de retour"
306
 
307
- #: gallery-plugin.php:826
308
  msgid "Label for Read More link"
309
- msgstr ""
310
 
311
- #: gallery-plugin.php:834
312
  msgid "Save Changes"
313
  msgstr "Sauvegarder"
314
 
315
- #: gallery-plugin.php:847
316
  msgid "FAQ"
317
  msgstr "FAQ"
318
 
319
- #: gallery-plugin.php:848
320
  msgid "Support"
321
  msgstr "Soutien"
322
 
323
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
324
  msgid "Sorry - nothing to found."
325
  msgstr "Désolé, rien de trouvé"
326
 
327
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
328
  msgid "Download High resolution image"
329
- msgstr ""
330
 
331
- #: template/gallery-single-template.php:83
332
  msgid "Image "
333
  msgstr "Image "
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
+ "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>1;\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: gallery-plugin.php:103 gallery-plugin.php:767
21
  msgid ""
22
  "The following files \"gallery-template.php\" and \"gallery-single-template."
23
  "php\" were not found in the directory of your theme. Please copy them from "
34
  msgid "Galleries"
35
  msgstr "Galeries"
36
 
37
+ #: gallery-plugin.php:128 gallery-plugin.php:657
38
  msgid "Gallery"
39
  msgstr "Galerie"
40
 
74
  msgid "Gallery Shortcode"
75
  msgstr "Gallery Shortcode"
76
 
77
+ #: gallery-plugin.php:209
78
  msgid ""
79
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
80
  "your webserver. Please use the standard WP functional to upload the images "
84
  "pas autorisé en écriture par votre serveur Web. Merci d'utliser les "
85
  "fonctions standards de WP pour charger les images (Média)"
86
 
87
+ #: gallery-plugin.php:213
88
  msgid "Choose an image to upload:"
89
  msgstr "Choisir l'image à envoyer :"
90
 
91
+ #: gallery-plugin.php:218
92
  msgid "Please enable JavaScript to use the file uploader."
93
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
94
 
95
+ #: gallery-plugin.php:225
96
  msgid "Allow download link for images in this gallery"
97
+ msgstr "Autoriser les liens de téléchargement des images dans cette galerie"
98
 
99
+ #: gallery-plugin.php:226
100
  msgid ""
101
  "Please use drag and drop function to change the order of the output of "
102
  "images and do not forget to save post."
103
  msgstr ""
104
+ "Merci d'utiliser les fonctions de glisser/déposer pour modifier l'ordre "
105
+ "d'affichage des images. Ne pas oublier d'enregistrer l'article."
106
 
107
+ #: gallery-plugin.php:228
108
  msgid "Please do not forget to select "
109
+ msgstr "Merci de ne pas oublier de sélectionner"
110
 
111
+ #: gallery-plugin.php:228 gallery-plugin.php:818
112
  msgid "Attachments order by"
113
  msgstr "Fichiers trier par"
114
 
115
+ #: gallery-plugin.php:228
116
  msgid "attachments order"
117
+ msgstr "ordre des fichiers"
118
 
119
+ #: gallery-plugin.php:228
120
  msgid "in the settings of the plugin (page "
121
+ msgstr "dans les paramètres du plugin (page"
122
+
123
+ #: gallery-plugin.php:276
124
+ msgid "Link URL"
125
+ msgstr ""
126
+
127
+ #: gallery-plugin.php:276
128
+ msgid "(clicking on image <br /> open the link in new window)"
129
+ msgstr ""
130
+
131
+ #: gallery-plugin.php:277
132
+ msgid "Delete"
133
  msgstr ""
134
 
135
+ #: gallery-plugin.php:291
136
  msgid ""
137
  "You can add the Single Gallery on the page or in the post by inserting this "
138
  "shortcode in the content"
140
  "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le code "
141
  "court dans le contenu"
142
 
143
+ #: gallery-plugin.php:293
144
  msgid ""
145
  "If you want to take a brief display of the gallery with a link to a Single "
146
  "Sallery Page"
147
  msgstr ""
148
+ "Si vous voulez avoir un bref appreçu de la gallerie avec un lien vers une "
149
+ "page unique de la gallerie"
150
 
151
+ #: gallery-plugin.php:475
152
  msgid "Title"
153
  msgstr "Titre"
154
 
155
+ #: gallery-plugin.php:476
156
  msgid "Author"
157
  msgstr "Auteur"
158
 
159
+ #: gallery-plugin.php:477
160
  msgid "Photo's"
161
  msgstr "Photo's"
162
 
163
+ #: gallery-plugin.php:478
164
  msgid "Public"
165
  msgstr "Public"
166
 
167
+ #: gallery-plugin.php:479
168
  msgid "Date"
169
  msgstr "Date"
170
 
171
+ #: gallery-plugin.php:626
172
  msgid "Activated plugins"
173
  msgstr "Extensions activées"
174
 
175
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
176
  msgid "Read more"
177
  msgstr "Lire plus..."
178
 
179
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
180
  msgid "Settings"
181
  msgstr "Paramètres"
182
 
183
+ #: gallery-plugin.php:634
184
  msgid "Installed plugins"
185
  msgstr "Extensions installées"
186
 
187
+ #: gallery-plugin.php:642
188
  msgid "Recommended plugins"
189
  msgstr "Extensions recommandées"
190
 
191
+ #: gallery-plugin.php:644
192
  msgid "Download"
193
  msgstr "Télécharger"
194
 
195
+ #: gallery-plugin.php:644
196
  #, php-format
197
  msgid "Install %s"
198
  msgstr "Installation %s"
199
 
200
+ #: gallery-plugin.php:644
201
  msgid "Install now from wordpress.org"
202
  msgstr "Installation à partir de wordpress.org"
203
 
204
+ #: gallery-plugin.php:646
205
  msgid ""
206
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
207
  "fill in our contact form on our site"
209
  "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft."
210
  "com ou remplissez le formulaire de contact sur notre site"
211
 
212
+ #: gallery-plugin.php:681
213
  msgid "See photo &raquo;"
214
  msgstr "Voir la photo &raquo;"
215
 
216
+ #: gallery-plugin.php:760
217
  msgid "Options saved."
218
  msgstr "Options sauvegardées."
219
 
220
+ #: gallery-plugin.php:774
221
  msgid "Gallery Options"
222
  msgstr "Options de galerie"
223
 
224
+ #: gallery-plugin.php:777
225
  msgid ""
226
  "If you would like to add a Single Gallery to your page or post, just copy "
227
  "and put this shortcode onto your post or page content:"
229
  "Si vous voulez ajouter la galerie dans une page ou un article, copier le "
230
  "code court suivant dans le contenu de votre page ou de votre article:"
231
 
232
+ #: gallery-plugin.php:781
233
  msgid "The size of the cover album for gallery"
234
  msgstr "Taille de la vignette de l'album"
235
 
236
+ #: gallery-plugin.php:783 gallery-plugin.php:791
237
  msgid "Image size name"
238
  msgstr "Nom de la vignette"
239
 
240
+ #: gallery-plugin.php:784 gallery-plugin.php:792
241
  msgid "Width (in px)"
242
  msgstr "Largeur (en pixels)"
243
 
244
+ #: gallery-plugin.php:785 gallery-plugin.php:793
245
  msgid "Height (in px)"
246
  msgstr "Hauteur (en pixels)"
247
 
248
+ #: gallery-plugin.php:789
249
  msgid "Size for gallery image"
250
  msgstr "Taille de la vignette de la galerie"
251
 
252
+ #: gallery-plugin.php:797
253
  msgid ""
254
  "WordPress will create a copy of the post thumbnail with the specified "
255
  "dimensions when you upload a new photo."
257
  "WordPress créera une copie de la miniature d'article avec les dimensions "
258
  "spécifiées quand vous envoyez une nouvelle photo."
259
 
260
+ #: gallery-plugin.php:800
261
  msgid "Count images in row"
262
  msgstr "Nombre d'images par ligne"
263
 
264
+ #: gallery-plugin.php:806
265
  msgid "Start slideshow"
266
  msgstr "Démarer le diaporama"
267
 
268
+ #: gallery-plugin.php:812
269
  msgid "Slideshow interval"
270
  msgstr "Interval de transition pour le diaporama"
271
 
272
+ #: gallery-plugin.php:820
273
  msgid "attachment id"
274
  msgstr "id du fichier"
275
 
276
+ #: gallery-plugin.php:821
277
  msgid "attachment title"
278
  msgstr "titre du fichier"
279
 
280
+ #: gallery-plugin.php:822
281
  msgid "date"
282
  msgstr "date"
283
 
284
+ #: gallery-plugin.php:823
285
  msgid ""
286
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
287
  "dialog )"
289
  "ordre des fichiers (le nombre dans la fenêtre d'insertion / téléchargement "
290
  "de la galerie)"
291
 
292
+ #: gallery-plugin.php:824
293
  msgid "random"
294
  msgstr "aléatoire"
295
 
296
+ #: gallery-plugin.php:828
297
  msgid "Attachments order"
298
  msgstr "Ordre des fichiers"
299
 
300
+ #: gallery-plugin.php:830
301
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
302
  msgstr ""
303
  "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, "
304
  "b, c)"
305
 
306
+ #: gallery-plugin.php:831
307
  msgid ""
308
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
309
  msgstr ""
310
  "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
311
 
312
+ #: gallery-plugin.php:835
313
  msgid "Display Return link"
314
  msgstr "Afficher le lien de retour"
315
 
316
+ #: gallery-plugin.php:841
317
  msgid "Display Return link in shortcode"
318
  msgstr "Afficher le lien de retour dans le code court"
319
 
320
+ #: gallery-plugin.php:847
321
  msgid "Label for Return link"
322
  msgstr "Texte du lien de retour"
323
 
324
+ #: gallery-plugin.php:853
325
  msgid "Label for Read More link"
326
+ msgstr "Texte pour le lien \"Read More\""
327
 
328
+ #: gallery-plugin.php:861
329
  msgid "Save Changes"
330
  msgstr "Sauvegarder"
331
 
332
+ #: gallery-plugin.php:874
333
  msgid "FAQ"
334
  msgstr "FAQ"
335
 
336
+ #: gallery-plugin.php:875
337
  msgid "Support"
338
  msgstr "Soutien"
339
 
340
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
341
  msgid "Sorry - nothing to found."
342
  msgstr "Désolé, rien de trouvé"
343
 
344
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
345
  msgid "Download High resolution image"
346
+ msgstr "Télécharger l'image en haute résolution"
347
 
348
+ #: template/gallery-single-template.php:90
349
  msgid "Image "
350
  msgstr "Image "
languages/gallery-he_IL.mo CHANGED
Binary file
languages/gallery-he_IL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery Plugin v3.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: he_IL\n"
@@ -16,10 +16,11 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ gallery
22
- #: gallery-plugin.php:103 gallery-plugin.php:740
23
  msgid ""
24
  "The following files \"gallery-template.php\" and \"gallery-single-template."
25
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -36,7 +37,7 @@ msgid "Galleries"
36
  msgstr "גלריות"
37
 
38
  # @ gallery
39
- #: gallery-plugin.php:128 gallery-plugin.php:630
40
  msgid "Gallery"
41
  msgstr "גלריה"
42
 
@@ -86,7 +87,7 @@ msgid "Gallery Shortcode"
86
  msgstr "קיצור קוד גלריה"
87
 
88
  # @ gallery
89
- #: gallery-plugin.php:208
90
  msgid ""
91
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
92
  "your webserver. Please use the standard WP functional to upload the images "
@@ -96,45 +97,57 @@ msgstr ""
96
  "שלך. אנא השתמש בהעלאת התמונות של וורדפרס כדי להעלות תמונות (מדיה > ספריה)"
97
 
98
  # @ gallery
99
- #: gallery-plugin.php:212
100
  msgid "Choose an image to upload:"
101
  msgstr "בחר תמונה להעלאה:"
102
 
103
  # @ gallery
104
- #: gallery-plugin.php:217
105
  msgid "Please enable JavaScript to use the file uploader."
106
  msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
107
 
108
- #: gallery-plugin.php:224
109
  msgid "Allow download link for images in this gallery"
110
  msgstr ""
111
 
112
- #: gallery-plugin.php:225
113
  msgid ""
114
  "Please use drag and drop function to change the order of the output of "
115
  "images and do not forget to save post."
116
  msgstr ""
117
 
118
- #: gallery-plugin.php:227
119
  msgid "Please do not forget to select "
120
  msgstr ""
121
 
122
  # @ gallery
123
- #: gallery-plugin.php:227 gallery-plugin.php:791
124
  msgid "Attachments order by"
125
  msgstr "סדר הקבצים המצורפים"
126
 
127
  # @ gallery
128
- #: gallery-plugin.php:227
129
  msgid "attachments order"
130
  msgstr ""
131
 
132
- #: gallery-plugin.php:227
133
  msgid "in the settings of the plugin (page "
134
  msgstr ""
135
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  # @ gallery
137
- #: gallery-plugin.php:289
138
  msgid ""
139
  "You can add the Single Gallery on the page or in the post by inserting this "
140
  "shortcode in the content"
@@ -142,80 +155,80 @@ msgstr ""
142
  "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד "
143
  "בתוכן"
144
 
145
- #: gallery-plugin.php:291
146
  msgid ""
147
  "If you want to take a brief display of the gallery with a link to a Single "
148
  "Sallery Page"
149
  msgstr ""
150
 
151
  # @ gallery
152
- #: gallery-plugin.php:448
153
  msgid "Title"
154
  msgstr "כותרת"
155
 
156
  # @ gallery
157
- #: gallery-plugin.php:449
158
  msgid "Author"
159
  msgstr "מחבר"
160
 
161
  # @ gallery
162
- #: gallery-plugin.php:450
163
  msgid "Photo's"
164
  msgstr "של התמונה"
165
 
166
  # @ gallery
167
- #: gallery-plugin.php:451
168
  msgid "Public"
169
  msgstr "ציבורי"
170
 
171
  # @ gallery
172
- #: gallery-plugin.php:452
173
  msgid "Date"
174
  msgstr "תאריך"
175
 
176
  # @ gallery
177
- #: gallery-plugin.php:599
178
  msgid "Activated plugins"
179
  msgstr "תוספים פעילים"
180
 
181
  # @ gallery
182
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
183
  msgid "Read more"
184
  msgstr "קרא עוד"
185
 
186
  # @ gallery
187
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
188
  msgid "Settings"
189
  msgstr "הגדרות"
190
 
191
  # @ gallery
192
- #: gallery-plugin.php:607
193
  msgid "Installed plugins"
194
  msgstr "תוספים מותקנים"
195
 
196
  # @ gallery
197
- #: gallery-plugin.php:615
198
  msgid "Recommended plugins"
199
  msgstr "תוספים מומלצים"
200
 
201
  # @ gallery
202
- #: gallery-plugin.php:617
203
  msgid "Download"
204
  msgstr "הורד"
205
 
206
  # @ default
207
- #: gallery-plugin.php:617
208
  #, php-format
209
  msgid "Install %s"
210
  msgstr "התקן %s"
211
 
212
  # @ gallery
213
- #: gallery-plugin.php:617
214
  msgid "Install now from wordpress.org"
215
  msgstr "הורד כעת מ wordpress.org"
216
 
217
  # @ gallery
218
- #: gallery-plugin.php:619
219
  msgid ""
220
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
221
  "fill in our contact form on our site"
@@ -224,22 +237,22 @@ msgstr ""
224
  "את טופס יצירת הקשר באתר שלנו"
225
 
226
  # @ gallery
227
- #: gallery-plugin.php:654
228
  msgid "See photo &raquo;"
229
  msgstr "ראו תמונה »"
230
 
231
  # @ gallery
232
- #: gallery-plugin.php:733
233
  msgid "Options saved."
234
  msgstr "האפשרויות נשמרו."
235
 
236
  # @ gallery
237
- #: gallery-plugin.php:747
238
  msgid "Gallery Options"
239
  msgstr "אפשרויות גלריה"
240
 
241
  # @ gallery
242
- #: gallery-plugin.php:750
243
  msgid ""
244
  "If you would like to add a Single Gallery to your page or post, just copy "
245
  "and put this shortcode onto your post or page content:"
@@ -248,32 +261,32 @@ msgstr ""
248
  "הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
249
 
250
  # @ gallery
251
- #: gallery-plugin.php:754
252
  msgid "The size of the cover album for gallery"
253
  msgstr "גודל הכריכה של האלבום של הגלריה"
254
 
255
  # @ gallery
256
- #: gallery-plugin.php:756 gallery-plugin.php:764
257
  msgid "Image size name"
258
  msgstr "שם גודל תמונה"
259
 
260
  # @ gallery
261
- #: gallery-plugin.php:757 gallery-plugin.php:765
262
  msgid "Width (in px)"
263
  msgstr "רוחב (בפיקסלים)"
264
 
265
  # @ gallery
266
- #: gallery-plugin.php:758 gallery-plugin.php:766
267
  msgid "Height (in px)"
268
  msgstr "גובה (בפיקסלים)"
269
 
270
  # @ gallery
271
- #: gallery-plugin.php:762
272
  msgid "Size for gallery image"
273
  msgstr "גודל תמונת גלריה"
274
 
275
  # @ gallery
276
- #: gallery-plugin.php:770
277
  msgid ""
278
  "WordPress will create a copy of the post thumbnail with the specified "
279
  "dimensions when you upload a new photo."
@@ -282,37 +295,37 @@ msgstr ""
282
  "תמונה חדשה."
283
 
284
  # @ gallery
285
- #: gallery-plugin.php:773
286
  msgid "Count images in row"
287
  msgstr "מספר תמונות בשורה"
288
 
289
  # @ gallery
290
- #: gallery-plugin.php:779
291
  msgid "Start slideshow"
292
  msgstr "התחל מצגת"
293
 
294
  # @ gallery
295
- #: gallery-plugin.php:785
296
  msgid "Slideshow interval"
297
  msgstr "מרווח מצגת"
298
 
299
  # @ gallery
300
- #: gallery-plugin.php:793
301
  msgid "attachment id"
302
  msgstr "מזהה קובץ מצורף"
303
 
304
  # @ gallery
305
- #: gallery-plugin.php:794
306
  msgid "attachment title"
307
  msgstr "כותרת קובץ מצורף"
308
 
309
  # @ gallery
310
- #: gallery-plugin.php:795
311
  msgid "date"
312
  msgstr "תאריך"
313
 
314
  # @ gallery
315
- #: gallery-plugin.php:796
316
  msgid ""
317
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
318
  "dialog )"
@@ -320,71 +333,71 @@ msgstr ""
320
  "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
321
 
322
  # @ gallery
323
- #: gallery-plugin.php:797
324
  msgid "random"
325
  msgstr "אקראי"
326
 
327
  # @ gallery
328
- #: gallery-plugin.php:801
329
  msgid "Attachments order"
330
  msgstr "סדר קבצים מצורפים"
331
 
332
  # @ gallery
333
- #: gallery-plugin.php:803
334
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
335
  msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
336
 
337
  # @ gallery
338
- #: gallery-plugin.php:804
339
  msgid ""
340
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
341
  msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
342
 
343
  # @ gallery
344
- #: gallery-plugin.php:808
345
  msgid "Display Return link"
346
  msgstr "הצג קישור חזרה"
347
 
348
  # @ gallery
349
- #: gallery-plugin.php:814
350
  msgid "Display Return link in shortcode"
351
  msgstr "הצג קישור חזרה בקיצור הקוד"
352
 
353
  # @ gallery
354
- #: gallery-plugin.php:820
355
  msgid "Label for Return link"
356
  msgstr "תוית לקישור חזרה"
357
 
358
  # @ gallery
359
- #: gallery-plugin.php:826
360
  msgid "Label for Read More link"
361
  msgstr ""
362
 
363
  # @ default
364
- #: gallery-plugin.php:834
365
  msgid "Save Changes"
366
  msgstr "שמור שינויים"
367
 
368
  # @ gallery
369
- #: gallery-plugin.php:847
370
  msgid "FAQ"
371
  msgstr "שאלות ותשובות"
372
 
373
  # @ gallery
374
- #: gallery-plugin.php:848
375
  msgid "Support"
376
  msgstr "תמיכה"
377
 
378
  # @ gallery
379
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
380
  msgid "Sorry - nothing to found."
381
  msgstr "מצטערים, אין מה למצוא."
382
 
383
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
384
  msgid "Download High resolution image"
385
  msgstr ""
386
 
387
  # @ gallery
388
- #: template/gallery-single-template.php:83
389
  msgid "Image "
390
  msgstr "תמונה "
2
  msgstr ""
3
  "Project-Id-Version: Gallery Plugin v3.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: he_IL\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ gallery
23
+ #: gallery-plugin.php:103 gallery-plugin.php:767
24
  msgid ""
25
  "The following files \"gallery-template.php\" and \"gallery-single-template."
26
  "php\" were not found in the directory of your theme. Please copy them from "
37
  msgstr "גלריות"
38
 
39
  # @ gallery
40
+ #: gallery-plugin.php:128 gallery-plugin.php:657
41
  msgid "Gallery"
42
  msgstr "גלריה"
43
 
87
  msgstr "קיצור קוד גלריה"
88
 
89
  # @ gallery
90
+ #: gallery-plugin.php:209
91
  msgid ""
92
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
93
  "your webserver. Please use the standard WP functional to upload the images "
97
  "שלך. אנא השתמש בהעלאת התמונות של וורדפרס כדי להעלות תמונות (מדיה > ספריה)"
98
 
99
  # @ gallery
100
+ #: gallery-plugin.php:213
101
  msgid "Choose an image to upload:"
102
  msgstr "בחר תמונה להעלאה:"
103
 
104
  # @ gallery
105
+ #: gallery-plugin.php:218
106
  msgid "Please enable JavaScript to use the file uploader."
107
  msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
108
 
109
+ #: gallery-plugin.php:225
110
  msgid "Allow download link for images in this gallery"
111
  msgstr ""
112
 
113
+ #: gallery-plugin.php:226
114
  msgid ""
115
  "Please use drag and drop function to change the order of the output of "
116
  "images and do not forget to save post."
117
  msgstr ""
118
 
119
+ #: gallery-plugin.php:228
120
  msgid "Please do not forget to select "
121
  msgstr ""
122
 
123
  # @ gallery
124
+ #: gallery-plugin.php:228 gallery-plugin.php:818
125
  msgid "Attachments order by"
126
  msgstr "סדר הקבצים המצורפים"
127
 
128
  # @ gallery
129
+ #: gallery-plugin.php:228
130
  msgid "attachments order"
131
  msgstr ""
132
 
133
+ #: gallery-plugin.php:228
134
  msgid "in the settings of the plugin (page "
135
  msgstr ""
136
 
137
+ #: gallery-plugin.php:276
138
+ msgid "Link URL"
139
+ msgstr ""
140
+
141
+ #: gallery-plugin.php:276
142
+ msgid "(clicking on image <br /> open the link in new window)"
143
+ msgstr ""
144
+
145
+ #: gallery-plugin.php:277
146
+ msgid "Delete"
147
+ msgstr ""
148
+
149
  # @ gallery
150
+ #: gallery-plugin.php:291
151
  msgid ""
152
  "You can add the Single Gallery on the page or in the post by inserting this "
153
  "shortcode in the content"
155
  "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד "
156
  "בתוכן"
157
 
158
+ #: gallery-plugin.php:293
159
  msgid ""
160
  "If you want to take a brief display of the gallery with a link to a Single "
161
  "Sallery Page"
162
  msgstr ""
163
 
164
  # @ gallery
165
+ #: gallery-plugin.php:475
166
  msgid "Title"
167
  msgstr "כותרת"
168
 
169
  # @ gallery
170
+ #: gallery-plugin.php:476
171
  msgid "Author"
172
  msgstr "מחבר"
173
 
174
  # @ gallery
175
+ #: gallery-plugin.php:477
176
  msgid "Photo's"
177
  msgstr "של התמונה"
178
 
179
  # @ gallery
180
+ #: gallery-plugin.php:478
181
  msgid "Public"
182
  msgstr "ציבורי"
183
 
184
  # @ gallery
185
+ #: gallery-plugin.php:479
186
  msgid "Date"
187
  msgstr "תאריך"
188
 
189
  # @ gallery
190
+ #: gallery-plugin.php:626
191
  msgid "Activated plugins"
192
  msgstr "תוספים פעילים"
193
 
194
  # @ gallery
195
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
196
  msgid "Read more"
197
  msgstr "קרא עוד"
198
 
199
  # @ gallery
200
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
201
  msgid "Settings"
202
  msgstr "הגדרות"
203
 
204
  # @ gallery
205
+ #: gallery-plugin.php:634
206
  msgid "Installed plugins"
207
  msgstr "תוספים מותקנים"
208
 
209
  # @ gallery
210
+ #: gallery-plugin.php:642
211
  msgid "Recommended plugins"
212
  msgstr "תוספים מומלצים"
213
 
214
  # @ gallery
215
+ #: gallery-plugin.php:644
216
  msgid "Download"
217
  msgstr "הורד"
218
 
219
  # @ default
220
+ #: gallery-plugin.php:644
221
  #, php-format
222
  msgid "Install %s"
223
  msgstr "התקן %s"
224
 
225
  # @ gallery
226
+ #: gallery-plugin.php:644
227
  msgid "Install now from wordpress.org"
228
  msgstr "הורד כעת מ wordpress.org"
229
 
230
  # @ gallery
231
+ #: gallery-plugin.php:646
232
  msgid ""
233
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
234
  "fill in our contact form on our site"
237
  "את טופס יצירת הקשר באתר שלנו"
238
 
239
  # @ gallery
240
+ #: gallery-plugin.php:681
241
  msgid "See photo &raquo;"
242
  msgstr "ראו תמונה »"
243
 
244
  # @ gallery
245
+ #: gallery-plugin.php:760
246
  msgid "Options saved."
247
  msgstr "האפשרויות נשמרו."
248
 
249
  # @ gallery
250
+ #: gallery-plugin.php:774
251
  msgid "Gallery Options"
252
  msgstr "אפשרויות גלריה"
253
 
254
  # @ gallery
255
+ #: gallery-plugin.php:777
256
  msgid ""
257
  "If you would like to add a Single Gallery to your page or post, just copy "
258
  "and put this shortcode onto your post or page content:"
261
  "הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
262
 
263
  # @ gallery
264
+ #: gallery-plugin.php:781
265
  msgid "The size of the cover album for gallery"
266
  msgstr "גודל הכריכה של האלבום של הגלריה"
267
 
268
  # @ gallery
269
+ #: gallery-plugin.php:783 gallery-plugin.php:791
270
  msgid "Image size name"
271
  msgstr "שם גודל תמונה"
272
 
273
  # @ gallery
274
+ #: gallery-plugin.php:784 gallery-plugin.php:792
275
  msgid "Width (in px)"
276
  msgstr "רוחב (בפיקסלים)"
277
 
278
  # @ gallery
279
+ #: gallery-plugin.php:785 gallery-plugin.php:793
280
  msgid "Height (in px)"
281
  msgstr "גובה (בפיקסלים)"
282
 
283
  # @ gallery
284
+ #: gallery-plugin.php:789
285
  msgid "Size for gallery image"
286
  msgstr "גודל תמונת גלריה"
287
 
288
  # @ gallery
289
+ #: gallery-plugin.php:797
290
  msgid ""
291
  "WordPress will create a copy of the post thumbnail with the specified "
292
  "dimensions when you upload a new photo."
295
  "תמונה חדשה."
296
 
297
  # @ gallery
298
+ #: gallery-plugin.php:800
299
  msgid "Count images in row"
300
  msgstr "מספר תמונות בשורה"
301
 
302
  # @ gallery
303
+ #: gallery-plugin.php:806
304
  msgid "Start slideshow"
305
  msgstr "התחל מצגת"
306
 
307
  # @ gallery
308
+ #: gallery-plugin.php:812
309
  msgid "Slideshow interval"
310
  msgstr "מרווח מצגת"
311
 
312
  # @ gallery
313
+ #: gallery-plugin.php:820
314
  msgid "attachment id"
315
  msgstr "מזהה קובץ מצורף"
316
 
317
  # @ gallery
318
+ #: gallery-plugin.php:821
319
  msgid "attachment title"
320
  msgstr "כותרת קובץ מצורף"
321
 
322
  # @ gallery
323
+ #: gallery-plugin.php:822
324
  msgid "date"
325
  msgstr "תאריך"
326
 
327
  # @ gallery
328
+ #: gallery-plugin.php:823
329
  msgid ""
330
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
331
  "dialog )"
333
  "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
334
 
335
  # @ gallery
336
+ #: gallery-plugin.php:824
337
  msgid "random"
338
  msgstr "אקראי"
339
 
340
  # @ gallery
341
+ #: gallery-plugin.php:828
342
  msgid "Attachments order"
343
  msgstr "סדר קבצים מצורפים"
344
 
345
  # @ gallery
346
+ #: gallery-plugin.php:830
347
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
348
  msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
349
 
350
  # @ gallery
351
+ #: gallery-plugin.php:831
352
  msgid ""
353
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
354
  msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
355
 
356
  # @ gallery
357
+ #: gallery-plugin.php:835
358
  msgid "Display Return link"
359
  msgstr "הצג קישור חזרה"
360
 
361
  # @ gallery
362
+ #: gallery-plugin.php:841
363
  msgid "Display Return link in shortcode"
364
  msgstr "הצג קישור חזרה בקיצור הקוד"
365
 
366
  # @ gallery
367
+ #: gallery-plugin.php:847
368
  msgid "Label for Return link"
369
  msgstr "תוית לקישור חזרה"
370
 
371
  # @ gallery
372
+ #: gallery-plugin.php:853
373
  msgid "Label for Read More link"
374
  msgstr ""
375
 
376
  # @ default
377
+ #: gallery-plugin.php:861
378
  msgid "Save Changes"
379
  msgstr "שמור שינויים"
380
 
381
  # @ gallery
382
+ #: gallery-plugin.php:874
383
  msgid "FAQ"
384
  msgstr "שאלות ותשובות"
385
 
386
  # @ gallery
387
+ #: gallery-plugin.php:875
388
  msgid "Support"
389
  msgstr "תמיכה"
390
 
391
  # @ gallery
392
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
393
  msgid "Sorry - nothing to found."
394
  msgstr "מצטערים, אין מה למצוא."
395
 
396
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
397
  msgid "Download High resolution image"
398
  msgstr ""
399
 
400
  # @ gallery
401
+ #: template/gallery-single-template.php:90
402
  msgid "Image "
403
  msgstr "תמונה "
languages/gallery-hu_HU.mo CHANGED
Binary file
languages/gallery-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: uk_UA\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "Galériák"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "Galéria"
33
 
@@ -68,114 +69,126 @@ msgstr "Fájl feltöltése"
68
  msgid "Gallery Shortcode"
69
  msgstr "Galéria beállítások"
70
 
71
- #: gallery-plugin.php:208
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
- #: gallery-plugin.php:212
79
  #, fuzzy
80
  msgid "Choose an image to upload:"
81
  msgstr "Nézőkép kiválasztása a feltöltéshez"
82
 
83
- #: gallery-plugin.php:217
84
  msgid "Please enable JavaScript to use the file uploader."
85
  msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
86
 
87
- #: gallery-plugin.php:224
88
  msgid "Allow download link for images in this gallery"
89
  msgstr ""
90
 
91
- #: gallery-plugin.php:225
92
  msgid ""
93
  "Please use drag and drop function to change the order of the output of "
94
  "images and do not forget to save post."
95
  msgstr ""
96
 
97
- #: gallery-plugin.php:227
98
  msgid "Please do not forget to select "
99
  msgstr ""
100
 
101
- #: gallery-plugin.php:227 gallery-plugin.php:791
102
  msgid "Attachments order by"
103
  msgstr ""
104
 
105
- #: gallery-plugin.php:227
106
  msgid "attachments order"
107
  msgstr ""
108
 
109
- #: gallery-plugin.php:227
110
  msgid "in the settings of the plugin (page "
111
  msgstr ""
112
 
113
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
114
  msgid ""
115
  "You can add the Single Gallery on the page or in the post by inserting this "
116
  "shortcode in the content"
117
  msgstr ""
118
 
119
- #: gallery-plugin.php:291
120
  msgid ""
121
  "If you want to take a brief display of the gallery with a link to a Single "
122
  "Sallery Page"
123
  msgstr ""
124
 
125
- #: gallery-plugin.php:448
126
  msgid "Title"
127
  msgstr "Cím"
128
 
129
- #: gallery-plugin.php:449
130
  msgid "Author"
131
  msgstr "Szerző"
132
 
133
- #: gallery-plugin.php:450
134
  msgid "Photo's"
135
  msgstr "Fotók"
136
 
137
- #: gallery-plugin.php:451
138
  msgid "Public"
139
  msgstr "Publikus"
140
 
141
- #: gallery-plugin.php:452
142
  msgid "Date"
143
  msgstr "Dátum"
144
 
145
- #: gallery-plugin.php:599
146
  msgid "Activated plugins"
147
  msgstr "Aktivált bővítmények"
148
 
149
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
150
  msgid "Read more"
151
  msgstr "Bővebben"
152
 
153
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
154
  msgid "Settings"
155
  msgstr "Beállítások"
156
 
157
- #: gallery-plugin.php:607
158
  msgid "Installed plugins"
159
  msgstr "Telepített bővítmények"
160
 
161
- #: gallery-plugin.php:615
162
  msgid "Recommended plugins"
163
  msgstr "Javasolt bővítmények"
164
 
165
- #: gallery-plugin.php:617
166
  msgid "Download"
167
  msgstr "Letöltés"
168
 
169
- #: gallery-plugin.php:617
170
  #, php-format
171
  msgid "Install %s"
172
  msgstr "Telepítés %s"
173
 
174
- #: gallery-plugin.php:617
175
  msgid "Install now from wordpress.org"
176
  msgstr "Telepítés a wordpress.org -ról"
177
 
178
- #: gallery-plugin.php:619
179
  msgid ""
180
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
181
  "fill in our contact form on our site"
@@ -183,45 +196,45 @@ msgstr ""
183
  "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-"
184
  "mail címen, vagy töltse ki űrlapunkat"
185
 
186
- #: gallery-plugin.php:654
187
  msgid "See photo &raquo;"
188
  msgstr "Fotó megtekintése &raquo;"
189
 
190
- #: gallery-plugin.php:733
191
  msgid "Options saved."
192
  msgstr "Beállítások elmentve."
193
 
194
- #: gallery-plugin.php:747
195
  msgid "Gallery Options"
196
  msgstr "Galéria beállítások"
197
 
198
- #: gallery-plugin.php:750
199
  msgid ""
200
  "If you would like to add a Single Gallery to your page or post, just copy "
201
  "and put this shortcode onto your post or page content:"
202
  msgstr ""
203
 
204
- #: gallery-plugin.php:754
205
  msgid "The size of the cover album for gallery"
206
  msgstr "Az Album borítójának mérete a Galériában"
207
 
208
- #: gallery-plugin.php:756 gallery-plugin.php:764
209
  msgid "Image size name"
210
  msgstr "Kép méret neve"
211
 
212
- #: gallery-plugin.php:757 gallery-plugin.php:765
213
  msgid "Width (in px)"
214
  msgstr "Szélesség (px-ben)"
215
 
216
- #: gallery-plugin.php:758 gallery-plugin.php:766
217
  msgid "Height (in px)"
218
  msgstr "Magasság (px-ben)"
219
 
220
- #: gallery-plugin.php:762
221
  msgid "Size for gallery image"
222
  msgstr "A Galéria képeinek mérete"
223
 
224
- #: gallery-plugin.php:770
225
  msgid ""
226
  "WordPress will create a copy of the post thumbnail with the specified "
227
  "dimensions when you upload a new photo."
@@ -229,91 +242,91 @@ msgstr ""
229
  "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek "
230
  "feltöltésekor."
231
 
232
- #: gallery-plugin.php:773
233
  msgid "Count images in row"
234
  msgstr "Képek száma egy sorban"
235
 
236
- #: gallery-plugin.php:779
237
  msgid "Start slideshow"
238
  msgstr ""
239
 
240
- #: gallery-plugin.php:785
241
  msgid "Slideshow interval"
242
  msgstr ""
243
 
244
- #: gallery-plugin.php:793
245
  msgid "attachment id"
246
  msgstr ""
247
 
248
- #: gallery-plugin.php:794
249
  msgid "attachment title"
250
  msgstr ""
251
 
252
- #: gallery-plugin.php:795
253
  #, fuzzy
254
  msgid "date"
255
  msgstr "Dátum"
256
 
257
- #: gallery-plugin.php:796
258
  msgid ""
259
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
260
  "dialog )"
261
  msgstr ""
262
 
263
- #: gallery-plugin.php:797
264
  msgid "random"
265
  msgstr ""
266
 
267
- #: gallery-plugin.php:801
268
  msgid "Attachments order"
269
  msgstr ""
270
 
271
- #: gallery-plugin.php:803
272
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
273
  msgstr ""
274
 
275
- #: gallery-plugin.php:804
276
  msgid ""
277
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
278
  msgstr ""
279
 
280
- #: gallery-plugin.php:808
281
  msgid "Display Return link"
282
  msgstr ""
283
 
284
- #: gallery-plugin.php:814
285
  msgid "Display Return link in shortcode"
286
  msgstr ""
287
 
288
- #: gallery-plugin.php:820
289
  msgid "Label for Return link"
290
  msgstr ""
291
 
292
- #: gallery-plugin.php:826
293
  msgid "Label for Read More link"
294
  msgstr ""
295
 
296
- #: gallery-plugin.php:834
297
  msgid "Save Changes"
298
  msgstr "Változások mentése"
299
 
300
- #: gallery-plugin.php:847
301
  msgid "FAQ"
302
  msgstr "Gy.I.K."
303
 
304
- #: gallery-plugin.php:848
305
  msgid "Support"
306
  msgstr "Támogatás"
307
 
308
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
309
  msgid "Sorry - nothing to found."
310
  msgstr "Sajnáljuk - nincs megjelenítendő elem."
311
 
312
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
313
  msgid "Download High resolution image"
314
  msgstr ""
315
 
316
- #: template/gallery-single-template.php:83
317
  msgid "Image "
318
  msgstr ""
319
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: uk_UA\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "Galériák"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "Galéria"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Galéria beállítások"
71
 
72
+ #: gallery-plugin.php:209
73
  msgid ""
74
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
75
  "your webserver. Please use the standard WP functional to upload the images "
76
  "(media library)"
77
  msgstr ""
78
 
79
+ #: gallery-plugin.php:213
80
  #, fuzzy
81
  msgid "Choose an image to upload:"
82
  msgstr "Nézőkép kiválasztása a feltöltéshez"
83
 
84
+ #: gallery-plugin.php:218
85
  msgid "Please enable JavaScript to use the file uploader."
86
  msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
87
 
88
+ #: gallery-plugin.php:225
89
  msgid "Allow download link for images in this gallery"
90
  msgstr ""
91
 
92
+ #: gallery-plugin.php:226
93
  msgid ""
94
  "Please use drag and drop function to change the order of the output of "
95
  "images and do not forget to save post."
96
  msgstr ""
97
 
98
+ #: gallery-plugin.php:228
99
  msgid "Please do not forget to select "
100
  msgstr ""
101
 
102
+ #: gallery-plugin.php:228 gallery-plugin.php:818
103
  msgid "Attachments order by"
104
  msgstr ""
105
 
106
+ #: gallery-plugin.php:228
107
  msgid "attachments order"
108
  msgstr ""
109
 
110
+ #: gallery-plugin.php:228
111
  msgid "in the settings of the plugin (page "
112
  msgstr ""
113
 
114
+ #: gallery-plugin.php:276
115
+ msgid "Link URL"
116
+ msgstr ""
117
+
118
+ #: gallery-plugin.php:276
119
+ msgid "(clicking on image <br /> open the link in new window)"
120
+ msgstr ""
121
+
122
+ #: gallery-plugin.php:277
123
+ msgid "Delete"
124
+ msgstr ""
125
+
126
+ #: gallery-plugin.php:291
127
  msgid ""
128
  "You can add the Single Gallery on the page or in the post by inserting this "
129
  "shortcode in the content"
130
  msgstr ""
131
 
132
+ #: gallery-plugin.php:293
133
  msgid ""
134
  "If you want to take a brief display of the gallery with a link to a Single "
135
  "Sallery Page"
136
  msgstr ""
137
 
138
+ #: gallery-plugin.php:475
139
  msgid "Title"
140
  msgstr "Cím"
141
 
142
+ #: gallery-plugin.php:476
143
  msgid "Author"
144
  msgstr "Szerző"
145
 
146
+ #: gallery-plugin.php:477
147
  msgid "Photo's"
148
  msgstr "Fotók"
149
 
150
+ #: gallery-plugin.php:478
151
  msgid "Public"
152
  msgstr "Publikus"
153
 
154
+ #: gallery-plugin.php:479
155
  msgid "Date"
156
  msgstr "Dátum"
157
 
158
+ #: gallery-plugin.php:626
159
  msgid "Activated plugins"
160
  msgstr "Aktivált bővítmények"
161
 
162
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
163
  msgid "Read more"
164
  msgstr "Bővebben"
165
 
166
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
167
  msgid "Settings"
168
  msgstr "Beállítások"
169
 
170
+ #: gallery-plugin.php:634
171
  msgid "Installed plugins"
172
  msgstr "Telepített bővítmények"
173
 
174
+ #: gallery-plugin.php:642
175
  msgid "Recommended plugins"
176
  msgstr "Javasolt bővítmények"
177
 
178
+ #: gallery-plugin.php:644
179
  msgid "Download"
180
  msgstr "Letöltés"
181
 
182
+ #: gallery-plugin.php:644
183
  #, php-format
184
  msgid "Install %s"
185
  msgstr "Telepítés %s"
186
 
187
+ #: gallery-plugin.php:644
188
  msgid "Install now from wordpress.org"
189
  msgstr "Telepítés a wordpress.org -ról"
190
 
191
+ #: gallery-plugin.php:646
192
  msgid ""
193
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
194
  "fill in our contact form on our site"
196
  "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-"
197
  "mail címen, vagy töltse ki űrlapunkat"
198
 
199
+ #: gallery-plugin.php:681
200
  msgid "See photo &raquo;"
201
  msgstr "Fotó megtekintése &raquo;"
202
 
203
+ #: gallery-plugin.php:760
204
  msgid "Options saved."
205
  msgstr "Beállítások elmentve."
206
 
207
+ #: gallery-plugin.php:774
208
  msgid "Gallery Options"
209
  msgstr "Galéria beállítások"
210
 
211
+ #: gallery-plugin.php:777
212
  msgid ""
213
  "If you would like to add a Single Gallery to your page or post, just copy "
214
  "and put this shortcode onto your post or page content:"
215
  msgstr ""
216
 
217
+ #: gallery-plugin.php:781
218
  msgid "The size of the cover album for gallery"
219
  msgstr "Az Album borítójának mérete a Galériában"
220
 
221
+ #: gallery-plugin.php:783 gallery-plugin.php:791
222
  msgid "Image size name"
223
  msgstr "Kép méret neve"
224
 
225
+ #: gallery-plugin.php:784 gallery-plugin.php:792
226
  msgid "Width (in px)"
227
  msgstr "Szélesség (px-ben)"
228
 
229
+ #: gallery-plugin.php:785 gallery-plugin.php:793
230
  msgid "Height (in px)"
231
  msgstr "Magasság (px-ben)"
232
 
233
+ #: gallery-plugin.php:789
234
  msgid "Size for gallery image"
235
  msgstr "A Galéria képeinek mérete"
236
 
237
+ #: gallery-plugin.php:797
238
  msgid ""
239
  "WordPress will create a copy of the post thumbnail with the specified "
240
  "dimensions when you upload a new photo."
242
  "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek "
243
  "feltöltésekor."
244
 
245
+ #: gallery-plugin.php:800
246
  msgid "Count images in row"
247
  msgstr "Képek száma egy sorban"
248
 
249
+ #: gallery-plugin.php:806
250
  msgid "Start slideshow"
251
  msgstr ""
252
 
253
+ #: gallery-plugin.php:812
254
  msgid "Slideshow interval"
255
  msgstr ""
256
 
257
+ #: gallery-plugin.php:820
258
  msgid "attachment id"
259
  msgstr ""
260
 
261
+ #: gallery-plugin.php:821
262
  msgid "attachment title"
263
  msgstr ""
264
 
265
+ #: gallery-plugin.php:822
266
  #, fuzzy
267
  msgid "date"
268
  msgstr "Dátum"
269
 
270
+ #: gallery-plugin.php:823
271
  msgid ""
272
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
273
  "dialog )"
274
  msgstr ""
275
 
276
+ #: gallery-plugin.php:824
277
  msgid "random"
278
  msgstr ""
279
 
280
+ #: gallery-plugin.php:828
281
  msgid "Attachments order"
282
  msgstr ""
283
 
284
+ #: gallery-plugin.php:830
285
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
286
  msgstr ""
287
 
288
+ #: gallery-plugin.php:831
289
  msgid ""
290
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
291
  msgstr ""
292
 
293
+ #: gallery-plugin.php:835
294
  msgid "Display Return link"
295
  msgstr ""
296
 
297
+ #: gallery-plugin.php:841
298
  msgid "Display Return link in shortcode"
299
  msgstr ""
300
 
301
+ #: gallery-plugin.php:847
302
  msgid "Label for Return link"
303
  msgstr ""
304
 
305
+ #: gallery-plugin.php:853
306
  msgid "Label for Read More link"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:861
310
  msgid "Save Changes"
311
  msgstr "Változások mentése"
312
 
313
+ #: gallery-plugin.php:874
314
  msgid "FAQ"
315
  msgstr "Gy.I.K."
316
 
317
+ #: gallery-plugin.php:875
318
  msgid "Support"
319
  msgstr "Támogatás"
320
 
321
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
322
  msgid "Sorry - nothing to found."
323
  msgstr "Sajnáljuk - nincs megjelenítendő elem."
324
 
325
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
326
  msgid "Download High resolution image"
327
  msgstr ""
328
 
329
+ #: template/gallery-single-template.php:90
330
  msgid "Image "
331
  msgstr ""
332
 
languages/gallery-it_IT.mo CHANGED
Binary file
languages/gallery-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, "
9
  "alfio@amgraphics.it>\n"
@@ -14,9 +14,10 @@ msgstr ""
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: gallery-plugin.php:103 gallery-plugin.php:740
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -32,7 +33,7 @@ msgstr ""
32
  msgid "Galleries"
33
  msgstr "Gallerie"
34
 
35
- #: gallery-plugin.php:128 gallery-plugin.php:630
36
  msgid "Gallery"
37
  msgstr "Galleria"
38
 
@@ -72,7 +73,7 @@ msgstr "Carica file"
72
  msgid "Gallery Shortcode"
73
  msgstr "Opzioni gallerie"
74
 
75
- #: gallery-plugin.php:208
76
  msgid ""
77
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
78
  "your webserver. Please use the standard WP functional to upload the images "
@@ -82,41 +83,53 @@ msgstr ""
82
  "&egrave; scrivibile sul tuo webserver. Usa la funzione standard di WP per "
83
  "caricare le immagini (media library)"
84
 
85
- #: gallery-plugin.php:212
86
  msgid "Choose an image to upload:"
87
  msgstr "Sceli una immagine da caricare:"
88
 
89
- #: gallery-plugin.php:217
90
  msgid "Please enable JavaScript to use the file uploader."
91
  msgstr "Per favore abilita JavaScript per usare il file uploader."
92
 
93
- #: gallery-plugin.php:224
94
  msgid "Allow download link for images in this gallery"
95
  msgstr ""
96
 
97
- #: gallery-plugin.php:225
98
  msgid ""
99
  "Please use drag and drop function to change the order of the output of "
100
  "images and do not forget to save post."
101
  msgstr ""
102
 
103
- #: gallery-plugin.php:227
104
  msgid "Please do not forget to select "
105
  msgstr ""
106
 
107
- #: gallery-plugin.php:227 gallery-plugin.php:791
108
  msgid "Attachments order by"
109
  msgstr "Ordine di visualizzazione per"
110
 
111
- #: gallery-plugin.php:227
112
  msgid "attachments order"
113
  msgstr ""
114
 
115
- #: gallery-plugin.php:227
116
  msgid "in the settings of the plugin (page "
117
  msgstr ""
118
 
119
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "You can add the Single Gallery on the page or in the post by inserting this "
122
  "shortcode in the content"
@@ -124,66 +137,66 @@ msgstr ""
124
  "Puoi aggiungere una singola Galleria in una pagina o un post inserendo "
125
  "questo codice nel contenuto"
126
 
127
- #: gallery-plugin.php:291
128
  msgid ""
129
  "If you want to take a brief display of the gallery with a link to a Single "
130
  "Sallery Page"
131
  msgstr ""
132
 
133
- #: gallery-plugin.php:448
134
  msgid "Title"
135
  msgstr "Titolo"
136
 
137
- #: gallery-plugin.php:449
138
  msgid "Author"
139
  msgstr "Autore"
140
 
141
- #: gallery-plugin.php:450
142
  msgid "Photo's"
143
  msgstr "Foto"
144
 
145
- #: gallery-plugin.php:451
146
  msgid "Public"
147
  msgstr "Pubblico"
148
 
149
- #: gallery-plugin.php:452
150
  msgid "Date"
151
  msgstr "Data"
152
 
153
- #: gallery-plugin.php:599
154
  msgid "Activated plugins"
155
  msgstr "Attivare plugin"
156
 
157
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
158
  msgid "Read more"
159
  msgstr "Leggi altro"
160
 
161
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
162
  msgid "Settings"
163
  msgstr "Impostazioni"
164
 
165
- #: gallery-plugin.php:607
166
  msgid "Installed plugins"
167
  msgstr "Plugin installati"
168
 
169
- #: gallery-plugin.php:615
170
  msgid "Recommended plugins"
171
  msgstr "Plugin consigliati"
172
 
173
- #: gallery-plugin.php:617
174
  msgid "Download"
175
  msgstr "Download"
176
 
177
- #: gallery-plugin.php:617
178
  #, php-format
179
  msgid "Install %s"
180
  msgstr "Installа %s"
181
 
182
- #: gallery-plugin.php:617
183
  msgid "Install now from wordpress.org"
184
  msgstr "Installa ora da wordpress.org"
185
 
186
- #: gallery-plugin.php:619
187
  msgid ""
188
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
189
  "fill in our contact form on our site"
@@ -191,19 +204,19 @@ msgstr ""
191
  "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il "
192
  "Form sul nostro sito."
193
 
194
- #: gallery-plugin.php:654
195
  msgid "See photo &raquo;"
196
  msgstr "Guarda foto &raquo;"
197
 
198
- #: gallery-plugin.php:733
199
  msgid "Options saved."
200
  msgstr "Opzioni salvate."
201
 
202
- #: gallery-plugin.php:747
203
  msgid "Gallery Options"
204
  msgstr "Opzioni gallerie"
205
 
206
- #: gallery-plugin.php:750
207
  msgid ""
208
  "If you would like to add a Single Gallery to your page or post, just copy "
209
  "and put this shortcode onto your post or page content:"
@@ -211,27 +224,27 @@ msgstr ""
211
  "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia "
212
  "questo codice e inseriscilo nel contenuto della pagina o del post"
213
 
214
- #: gallery-plugin.php:754
215
  msgid "The size of the cover album for gallery"
216
  msgstr "La grandezza della copertina dall'album per la galleria"
217
 
218
- #: gallery-plugin.php:756 gallery-plugin.php:764
219
  msgid "Image size name"
220
  msgstr "Image size name"
221
 
222
- #: gallery-plugin.php:757 gallery-plugin.php:765
223
  msgid "Width (in px)"
224
  msgstr "Larghezza in px"
225
 
226
- #: gallery-plugin.php:758 gallery-plugin.php:766
227
  msgid "Height (in px)"
228
  msgstr "Altezza in px"
229
 
230
- #: gallery-plugin.php:762
231
  msgid "Size for gallery image"
232
  msgstr "Grandezza per le immagini della galleria"
233
 
234
- #: gallery-plugin.php:770
235
  msgid ""
236
  "WordPress will create a copy of the post thumbnail with the specified "
237
  "dimensions when you upload a new photo."
@@ -239,31 +252,31 @@ msgstr ""
239
  "WP creerà una copia delle icone immagine con una specifica dimensione quando "
240
  "carichi una nuova foto."
241
 
242
- #: gallery-plugin.php:773
243
  msgid "Count images in row"
244
  msgstr "Conta immagini"
245
 
246
- #: gallery-plugin.php:779
247
  msgid "Start slideshow"
248
  msgstr "Avvia presentazione"
249
 
250
- #: gallery-plugin.php:785
251
  msgid "Slideshow interval"
252
  msgstr "Intervallo presentazione"
253
 
254
- #: gallery-plugin.php:793
255
  msgid "attachment id"
256
  msgstr "Id di visualizzazione"
257
 
258
- #: gallery-plugin.php:794
259
  msgid "attachment title"
260
  msgstr "Titolo immagine"
261
 
262
- #: gallery-plugin.php:795
263
  msgid "date"
264
  msgstr "Data"
265
 
266
- #: gallery-plugin.php:796
267
  msgid ""
268
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
269
  "dialog )"
@@ -271,64 +284,64 @@ msgstr ""
271
  "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di "
272
  "caricamento)"
273
 
274
- #: gallery-plugin.php:797
275
  msgid "random"
276
  msgstr "Casuale"
277
 
278
- #: gallery-plugin.php:801
279
  msgid "Attachments order"
280
  msgstr "Ordine di visualizzazione"
281
 
282
- #: gallery-plugin.php:803
283
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
284
  msgstr ""
285
  "ASC(ordine ascendente dal pi&ugrave; basso al pi&ugrave; alto - 1, 2, 3; a, "
286
  "b, c,)"
287
 
288
- #: gallery-plugin.php:804
289
  msgid ""
290
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
291
  msgstr ""
292
  "DESC(ordine discendente dal pi&ugrave; alto al pi&ugrave; basso - 3, 2, 1; "
293
  "c, b, a,)"
294
 
295
- #: gallery-plugin.php:808
296
  msgid "Display Return link"
297
  msgstr "Mostra lin di ritorno"
298
 
299
- #: gallery-plugin.php:814
300
  msgid "Display Return link in shortcode"
301
  msgstr "Mostra il link di ritorno col codice"
302
 
303
- #: gallery-plugin.php:820
304
  msgid "Label for Return link"
305
  msgstr "Etichetta per il link di ritorno"
306
 
307
- #: gallery-plugin.php:826
308
  msgid "Label for Read More link"
309
  msgstr ""
310
 
311
- #: gallery-plugin.php:834
312
  msgid "Save Changes"
313
  msgstr "Salva cambiamenti"
314
 
315
- #: gallery-plugin.php:847
316
  msgid "FAQ"
317
  msgstr "FAQ "
318
 
319
- #: gallery-plugin.php:848
320
  msgid "Support"
321
  msgstr "Supporto"
322
 
323
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
324
  msgid "Sorry - nothing to found."
325
  msgstr "Spiacente - non è stato trovato nulla."
326
 
327
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
328
  msgid "Download High resolution image"
329
  msgstr ""
330
 
331
- #: template/gallery-single-template.php:83
332
  msgid "Image "
333
  msgstr "Immagine"
334
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, "
9
  "alfio@amgraphics.it>\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: gallery-plugin.php:103 gallery-plugin.php:767
21
  msgid ""
22
  "The following files \"gallery-template.php\" and \"gallery-single-template."
23
  "php\" were not found in the directory of your theme. Please copy them from "
33
  msgid "Galleries"
34
  msgstr "Gallerie"
35
 
36
+ #: gallery-plugin.php:128 gallery-plugin.php:657
37
  msgid "Gallery"
38
  msgstr "Galleria"
39
 
73
  msgid "Gallery Shortcode"
74
  msgstr "Opzioni gallerie"
75
 
76
+ #: gallery-plugin.php:209
77
  msgid ""
78
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
79
  "your webserver. Please use the standard WP functional to upload the images "
83
  "&egrave; scrivibile sul tuo webserver. Usa la funzione standard di WP per "
84
  "caricare le immagini (media library)"
85
 
86
+ #: gallery-plugin.php:213
87
  msgid "Choose an image to upload:"
88
  msgstr "Sceli una immagine da caricare:"
89
 
90
+ #: gallery-plugin.php:218
91
  msgid "Please enable JavaScript to use the file uploader."
92
  msgstr "Per favore abilita JavaScript per usare il file uploader."
93
 
94
+ #: gallery-plugin.php:225
95
  msgid "Allow download link for images in this gallery"
96
  msgstr ""
97
 
98
+ #: gallery-plugin.php:226
99
  msgid ""
100
  "Please use drag and drop function to change the order of the output of "
101
  "images and do not forget to save post."
102
  msgstr ""
103
 
104
+ #: gallery-plugin.php:228
105
  msgid "Please do not forget to select "
106
  msgstr ""
107
 
108
+ #: gallery-plugin.php:228 gallery-plugin.php:818
109
  msgid "Attachments order by"
110
  msgstr "Ordine di visualizzazione per"
111
 
112
+ #: gallery-plugin.php:228
113
  msgid "attachments order"
114
  msgstr ""
115
 
116
+ #: gallery-plugin.php:228
117
  msgid "in the settings of the plugin (page "
118
  msgstr ""
119
 
120
+ #: gallery-plugin.php:276
121
+ msgid "Link URL"
122
+ msgstr ""
123
+
124
+ #: gallery-plugin.php:276
125
+ msgid "(clicking on image <br /> open the link in new window)"
126
+ msgstr ""
127
+
128
+ #: gallery-plugin.php:277
129
+ msgid "Delete"
130
+ msgstr ""
131
+
132
+ #: gallery-plugin.php:291
133
  msgid ""
134
  "You can add the Single Gallery on the page or in the post by inserting this "
135
  "shortcode in the content"
137
  "Puoi aggiungere una singola Galleria in una pagina o un post inserendo "
138
  "questo codice nel contenuto"
139
 
140
+ #: gallery-plugin.php:293
141
  msgid ""
142
  "If you want to take a brief display of the gallery with a link to a Single "
143
  "Sallery Page"
144
  msgstr ""
145
 
146
+ #: gallery-plugin.php:475
147
  msgid "Title"
148
  msgstr "Titolo"
149
 
150
+ #: gallery-plugin.php:476
151
  msgid "Author"
152
  msgstr "Autore"
153
 
154
+ #: gallery-plugin.php:477
155
  msgid "Photo's"
156
  msgstr "Foto"
157
 
158
+ #: gallery-plugin.php:478
159
  msgid "Public"
160
  msgstr "Pubblico"
161
 
162
+ #: gallery-plugin.php:479
163
  msgid "Date"
164
  msgstr "Data"
165
 
166
+ #: gallery-plugin.php:626
167
  msgid "Activated plugins"
168
  msgstr "Attivare plugin"
169
 
170
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
171
  msgid "Read more"
172
  msgstr "Leggi altro"
173
 
174
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
175
  msgid "Settings"
176
  msgstr "Impostazioni"
177
 
178
+ #: gallery-plugin.php:634
179
  msgid "Installed plugins"
180
  msgstr "Plugin installati"
181
 
182
+ #: gallery-plugin.php:642
183
  msgid "Recommended plugins"
184
  msgstr "Plugin consigliati"
185
 
186
+ #: gallery-plugin.php:644
187
  msgid "Download"
188
  msgstr "Download"
189
 
190
+ #: gallery-plugin.php:644
191
  #, php-format
192
  msgid "Install %s"
193
  msgstr "Installа %s"
194
 
195
+ #: gallery-plugin.php:644
196
  msgid "Install now from wordpress.org"
197
  msgstr "Installa ora da wordpress.org"
198
 
199
+ #: gallery-plugin.php:646
200
  msgid ""
201
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
202
  "fill in our contact form on our site"
204
  "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il "
205
  "Form sul nostro sito."
206
 
207
+ #: gallery-plugin.php:681
208
  msgid "See photo &raquo;"
209
  msgstr "Guarda foto &raquo;"
210
 
211
+ #: gallery-plugin.php:760
212
  msgid "Options saved."
213
  msgstr "Opzioni salvate."
214
 
215
+ #: gallery-plugin.php:774
216
  msgid "Gallery Options"
217
  msgstr "Opzioni gallerie"
218
 
219
+ #: gallery-plugin.php:777
220
  msgid ""
221
  "If you would like to add a Single Gallery to your page or post, just copy "
222
  "and put this shortcode onto your post or page content:"
224
  "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia "
225
  "questo codice e inseriscilo nel contenuto della pagina o del post"
226
 
227
+ #: gallery-plugin.php:781
228
  msgid "The size of the cover album for gallery"
229
  msgstr "La grandezza della copertina dall'album per la galleria"
230
 
231
+ #: gallery-plugin.php:783 gallery-plugin.php:791
232
  msgid "Image size name"
233
  msgstr "Image size name"
234
 
235
+ #: gallery-plugin.php:784 gallery-plugin.php:792
236
  msgid "Width (in px)"
237
  msgstr "Larghezza in px"
238
 
239
+ #: gallery-plugin.php:785 gallery-plugin.php:793
240
  msgid "Height (in px)"
241
  msgstr "Altezza in px"
242
 
243
+ #: gallery-plugin.php:789
244
  msgid "Size for gallery image"
245
  msgstr "Grandezza per le immagini della galleria"
246
 
247
+ #: gallery-plugin.php:797
248
  msgid ""
249
  "WordPress will create a copy of the post thumbnail with the specified "
250
  "dimensions when you upload a new photo."
252
  "WP creerà una copia delle icone immagine con una specifica dimensione quando "
253
  "carichi una nuova foto."
254
 
255
+ #: gallery-plugin.php:800
256
  msgid "Count images in row"
257
  msgstr "Conta immagini"
258
 
259
+ #: gallery-plugin.php:806
260
  msgid "Start slideshow"
261
  msgstr "Avvia presentazione"
262
 
263
+ #: gallery-plugin.php:812
264
  msgid "Slideshow interval"
265
  msgstr "Intervallo presentazione"
266
 
267
+ #: gallery-plugin.php:820
268
  msgid "attachment id"
269
  msgstr "Id di visualizzazione"
270
 
271
+ #: gallery-plugin.php:821
272
  msgid "attachment title"
273
  msgstr "Titolo immagine"
274
 
275
+ #: gallery-plugin.php:822
276
  msgid "date"
277
  msgstr "Data"
278
 
279
+ #: gallery-plugin.php:823
280
  msgid ""
281
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
282
  "dialog )"
284
  "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di "
285
  "caricamento)"
286
 
287
+ #: gallery-plugin.php:824
288
  msgid "random"
289
  msgstr "Casuale"
290
 
291
+ #: gallery-plugin.php:828
292
  msgid "Attachments order"
293
  msgstr "Ordine di visualizzazione"
294
 
295
+ #: gallery-plugin.php:830
296
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
297
  msgstr ""
298
  "ASC(ordine ascendente dal pi&ugrave; basso al pi&ugrave; alto - 1, 2, 3; a, "
299
  "b, c,)"
300
 
301
+ #: gallery-plugin.php:831
302
  msgid ""
303
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
304
  msgstr ""
305
  "DESC(ordine discendente dal pi&ugrave; alto al pi&ugrave; basso - 3, 2, 1; "
306
  "c, b, a,)"
307
 
308
+ #: gallery-plugin.php:835
309
  msgid "Display Return link"
310
  msgstr "Mostra lin di ritorno"
311
 
312
+ #: gallery-plugin.php:841
313
  msgid "Display Return link in shortcode"
314
  msgstr "Mostra il link di ritorno col codice"
315
 
316
+ #: gallery-plugin.php:847
317
  msgid "Label for Return link"
318
  msgstr "Etichetta per il link di ritorno"
319
 
320
+ #: gallery-plugin.php:853
321
  msgid "Label for Read More link"
322
  msgstr ""
323
 
324
+ #: gallery-plugin.php:861
325
  msgid "Save Changes"
326
  msgstr "Salva cambiamenti"
327
 
328
+ #: gallery-plugin.php:874
329
  msgid "FAQ"
330
  msgstr "FAQ "
331
 
332
+ #: gallery-plugin.php:875
333
  msgid "Support"
334
  msgstr "Supporto"
335
 
336
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
337
  msgid "Sorry - nothing to found."
338
  msgstr "Spiacente - non è stato trovato nulla."
339
 
340
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
341
  msgid "Download High resolution image"
342
  msgstr ""
343
 
344
+ #: template/gallery-single-template.php:90
345
  msgid "Image "
346
  msgstr "Immagine"
347
 
languages/gallery-ka_GE.mo CHANGED
Binary file
languages/gallery-ka_GE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:39+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:39+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "Language: ka_GE\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_x;esc_html__\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "გალერეა"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "გალერეა"
33
 
@@ -68,114 +69,126 @@ msgstr "ფაილის ატვირთვა"
68
  msgid "Gallery Shortcode"
69
  msgstr "გალერეის პარამეტრები"
70
 
71
- #: gallery-plugin.php:208
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
- #: gallery-plugin.php:212
79
  #, fuzzy
80
  msgid "Choose an image to upload:"
81
  msgstr "აირჩიეთ სურათი ასატვირთად:"
82
 
83
- #: gallery-plugin.php:217
84
  msgid "Please enable JavaScript to use the file uploader."
85
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
86
 
87
- #: gallery-plugin.php:224
88
  msgid "Allow download link for images in this gallery"
89
  msgstr ""
90
 
91
- #: gallery-plugin.php:225
92
  msgid ""
93
  "Please use drag and drop function to change the order of the output of "
94
  "images and do not forget to save post."
95
  msgstr ""
96
 
97
- #: gallery-plugin.php:227
98
  msgid "Please do not forget to select "
99
  msgstr ""
100
 
101
- #: gallery-plugin.php:227 gallery-plugin.php:791
102
  msgid "Attachments order by"
103
  msgstr ""
104
 
105
- #: gallery-plugin.php:227
106
  msgid "attachments order"
107
  msgstr ""
108
 
109
- #: gallery-plugin.php:227
110
  msgid "in the settings of the plugin (page "
111
  msgstr ""
112
 
113
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
114
  msgid ""
115
  "You can add the Single Gallery on the page or in the post by inserting this "
116
  "shortcode in the content"
117
  msgstr ""
118
 
119
- #: gallery-plugin.php:291
120
  msgid ""
121
  "If you want to take a brief display of the gallery with a link to a Single "
122
  "Sallery Page"
123
  msgstr ""
124
 
125
- #: gallery-plugin.php:448
126
  msgid "Title"
127
  msgstr "სათაური"
128
 
129
- #: gallery-plugin.php:449
130
  msgid "Author"
131
  msgstr "ავტორი"
132
 
133
- #: gallery-plugin.php:450
134
  msgid "Photo's"
135
  msgstr "ფოტო"
136
 
137
- #: gallery-plugin.php:451
138
  msgid "Public"
139
  msgstr "საჯარო"
140
 
141
- #: gallery-plugin.php:452
142
  msgid "Date"
143
  msgstr "თარიღი"
144
 
145
- #: gallery-plugin.php:599
146
  msgid "Activated plugins"
147
  msgstr "გააქტიურებული დანამატები:"
148
 
149
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
150
  msgid "Read more"
151
  msgstr "სრულად ნახვა"
152
 
153
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
154
  msgid "Settings"
155
  msgstr "პარამეტრები"
156
 
157
- #: gallery-plugin.php:607
158
  msgid "Installed plugins"
159
  msgstr "დაყენებული დანამატები"
160
 
161
- #: gallery-plugin.php:615
162
  msgid "Recommended plugins"
163
  msgstr "რეკომენდირებული დანამატები"
164
 
165
- #: gallery-plugin.php:617
166
  msgid "Download"
167
  msgstr "გადმოტვირთვა"
168
 
169
- #: gallery-plugin.php:617
170
  #, php-format
171
  msgid "Install %s"
172
  msgstr "დაყენებულია %s"
173
 
174
- #: gallery-plugin.php:617
175
  msgid "Install now from wordpress.org"
176
  msgstr "დააყენეთ wordpress.org-იდან"
177
 
178
- #: gallery-plugin.php:619
179
  msgid ""
180
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
181
  "fill in our contact form on our site"
@@ -183,45 +196,45 @@ msgstr ""
183
  "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft."
184
  "com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
185
 
186
- #: gallery-plugin.php:654
187
  msgid "See photo &raquo;"
188
  msgstr ""
189
 
190
- #: gallery-plugin.php:733
191
  msgid "Options saved."
192
  msgstr "პარამეტრები შენახულია"
193
 
194
- #: gallery-plugin.php:747
195
  msgid "Gallery Options"
196
  msgstr "გალერეის პარამეტრები"
197
 
198
- #: gallery-plugin.php:750
199
  msgid ""
200
  "If you would like to add a Single Gallery to your page or post, just copy "
201
  "and put this shortcode onto your post or page content:"
202
  msgstr ""
203
 
204
- #: gallery-plugin.php:754
205
  msgid "The size of the cover album for gallery"
206
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
207
 
208
- #: gallery-plugin.php:756 gallery-plugin.php:764
209
  msgid "Image size name"
210
  msgstr "ზომის სახელი"
211
 
212
- #: gallery-plugin.php:757 gallery-plugin.php:765
213
  msgid "Width (in px)"
214
  msgstr "სიგანე(პიქსელებში)"
215
 
216
- #: gallery-plugin.php:758 gallery-plugin.php:766
217
  msgid "Height (in px)"
218
  msgstr "სიმაღლე(პიქსელებში)"
219
 
220
- #: gallery-plugin.php:762
221
  msgid "Size for gallery image"
222
  msgstr "ზომა გალერეის სურათისთვის"
223
 
224
- #: gallery-plugin.php:770
225
  msgid ""
226
  "WordPress will create a copy of the post thumbnail with the specified "
227
  "dimensions when you upload a new photo."
@@ -229,91 +242,91 @@ msgstr ""
229
  "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც "
230
  "ატვირთავთ სურათს."
231
 
232
- #: gallery-plugin.php:773
233
  msgid "Count images in row"
234
  msgstr "სურათების რაოდენობა მწკრივში"
235
 
236
- #: gallery-plugin.php:779
237
  msgid "Start slideshow"
238
  msgstr ""
239
 
240
- #: gallery-plugin.php:785
241
  msgid "Slideshow interval"
242
  msgstr ""
243
 
244
- #: gallery-plugin.php:793
245
  msgid "attachment id"
246
  msgstr ""
247
 
248
- #: gallery-plugin.php:794
249
  msgid "attachment title"
250
  msgstr ""
251
 
252
- #: gallery-plugin.php:795
253
  #, fuzzy
254
  msgid "date"
255
  msgstr "თარიღი"
256
 
257
- #: gallery-plugin.php:796
258
  msgid ""
259
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
260
  "dialog )"
261
  msgstr ""
262
 
263
- #: gallery-plugin.php:797
264
  msgid "random"
265
  msgstr ""
266
 
267
- #: gallery-plugin.php:801
268
  msgid "Attachments order"
269
  msgstr ""
270
 
271
- #: gallery-plugin.php:803
272
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
273
  msgstr ""
274
 
275
- #: gallery-plugin.php:804
276
  msgid ""
277
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
278
  msgstr ""
279
 
280
- #: gallery-plugin.php:808
281
  msgid "Display Return link"
282
  msgstr ""
283
 
284
- #: gallery-plugin.php:814
285
  msgid "Display Return link in shortcode"
286
  msgstr ""
287
 
288
- #: gallery-plugin.php:820
289
  msgid "Label for Return link"
290
  msgstr ""
291
 
292
- #: gallery-plugin.php:826
293
  msgid "Label for Read More link"
294
  msgstr ""
295
 
296
- #: gallery-plugin.php:834
297
  msgid "Save Changes"
298
  msgstr "ცვლილებების შენახვა"
299
 
300
- #: gallery-plugin.php:847
301
  msgid "FAQ"
302
  msgstr "FAQ"
303
 
304
- #: gallery-plugin.php:848
305
  msgid "Support"
306
  msgstr "Support"
307
 
308
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
309
  msgid "Sorry - nothing to found."
310
  msgstr "მაპატიეთ - არაფერია ნაპოვნი."
311
 
312
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
313
  msgid "Download High resolution image"
314
  msgstr ""
315
 
316
- #: template/gallery-single-template.php:83
317
  msgid "Image "
318
  msgstr ""
319
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "Language: ka_GE\n"
13
  "X-Poedit-KeywordsList: __;_e;_x;esc_html__\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "გალერეა"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "გალერეა"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "გალერეის პარამეტრები"
71
 
72
+ #: gallery-plugin.php:209
73
  msgid ""
74
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
75
  "your webserver. Please use the standard WP functional to upload the images "
76
  "(media library)"
77
  msgstr ""
78
 
79
+ #: gallery-plugin.php:213
80
  #, fuzzy
81
  msgid "Choose an image to upload:"
82
  msgstr "აირჩიეთ სურათი ასატვირთად:"
83
 
84
+ #: gallery-plugin.php:218
85
  msgid "Please enable JavaScript to use the file uploader."
86
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
87
 
88
+ #: gallery-plugin.php:225
89
  msgid "Allow download link for images in this gallery"
90
  msgstr ""
91
 
92
+ #: gallery-plugin.php:226
93
  msgid ""
94
  "Please use drag and drop function to change the order of the output of "
95
  "images and do not forget to save post."
96
  msgstr ""
97
 
98
+ #: gallery-plugin.php:228
99
  msgid "Please do not forget to select "
100
  msgstr ""
101
 
102
+ #: gallery-plugin.php:228 gallery-plugin.php:818
103
  msgid "Attachments order by"
104
  msgstr ""
105
 
106
+ #: gallery-plugin.php:228
107
  msgid "attachments order"
108
  msgstr ""
109
 
110
+ #: gallery-plugin.php:228
111
  msgid "in the settings of the plugin (page "
112
  msgstr ""
113
 
114
+ #: gallery-plugin.php:276
115
+ msgid "Link URL"
116
+ msgstr ""
117
+
118
+ #: gallery-plugin.php:276
119
+ msgid "(clicking on image <br /> open the link in new window)"
120
+ msgstr ""
121
+
122
+ #: gallery-plugin.php:277
123
+ msgid "Delete"
124
+ msgstr ""
125
+
126
+ #: gallery-plugin.php:291
127
  msgid ""
128
  "You can add the Single Gallery on the page or in the post by inserting this "
129
  "shortcode in the content"
130
  msgstr ""
131
 
132
+ #: gallery-plugin.php:293
133
  msgid ""
134
  "If you want to take a brief display of the gallery with a link to a Single "
135
  "Sallery Page"
136
  msgstr ""
137
 
138
+ #: gallery-plugin.php:475
139
  msgid "Title"
140
  msgstr "სათაური"
141
 
142
+ #: gallery-plugin.php:476
143
  msgid "Author"
144
  msgstr "ავტორი"
145
 
146
+ #: gallery-plugin.php:477
147
  msgid "Photo's"
148
  msgstr "ფოტო"
149
 
150
+ #: gallery-plugin.php:478
151
  msgid "Public"
152
  msgstr "საჯარო"
153
 
154
+ #: gallery-plugin.php:479
155
  msgid "Date"
156
  msgstr "თარიღი"
157
 
158
+ #: gallery-plugin.php:626
159
  msgid "Activated plugins"
160
  msgstr "გააქტიურებული დანამატები:"
161
 
162
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
163
  msgid "Read more"
164
  msgstr "სრულად ნახვა"
165
 
166
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
167
  msgid "Settings"
168
  msgstr "პარამეტრები"
169
 
170
+ #: gallery-plugin.php:634
171
  msgid "Installed plugins"
172
  msgstr "დაყენებული დანამატები"
173
 
174
+ #: gallery-plugin.php:642
175
  msgid "Recommended plugins"
176
  msgstr "რეკომენდირებული დანამატები"
177
 
178
+ #: gallery-plugin.php:644
179
  msgid "Download"
180
  msgstr "გადმოტვირთვა"
181
 
182
+ #: gallery-plugin.php:644
183
  #, php-format
184
  msgid "Install %s"
185
  msgstr "დაყენებულია %s"
186
 
187
+ #: gallery-plugin.php:644
188
  msgid "Install now from wordpress.org"
189
  msgstr "დააყენეთ wordpress.org-იდან"
190
 
191
+ #: gallery-plugin.php:646
192
  msgid ""
193
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
194
  "fill in our contact form on our site"
196
  "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft."
197
  "com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
198
 
199
+ #: gallery-plugin.php:681
200
  msgid "See photo &raquo;"
201
  msgstr ""
202
 
203
+ #: gallery-plugin.php:760
204
  msgid "Options saved."
205
  msgstr "პარამეტრები შენახულია"
206
 
207
+ #: gallery-plugin.php:774
208
  msgid "Gallery Options"
209
  msgstr "გალერეის პარამეტრები"
210
 
211
+ #: gallery-plugin.php:777
212
  msgid ""
213
  "If you would like to add a Single Gallery to your page or post, just copy "
214
  "and put this shortcode onto your post or page content:"
215
  msgstr ""
216
 
217
+ #: gallery-plugin.php:781
218
  msgid "The size of the cover album for gallery"
219
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
220
 
221
+ #: gallery-plugin.php:783 gallery-plugin.php:791
222
  msgid "Image size name"
223
  msgstr "ზომის სახელი"
224
 
225
+ #: gallery-plugin.php:784 gallery-plugin.php:792
226
  msgid "Width (in px)"
227
  msgstr "სიგანე(პიქსელებში)"
228
 
229
+ #: gallery-plugin.php:785 gallery-plugin.php:793
230
  msgid "Height (in px)"
231
  msgstr "სიმაღლე(პიქსელებში)"
232
 
233
+ #: gallery-plugin.php:789
234
  msgid "Size for gallery image"
235
  msgstr "ზომა გალერეის სურათისთვის"
236
 
237
+ #: gallery-plugin.php:797
238
  msgid ""
239
  "WordPress will create a copy of the post thumbnail with the specified "
240
  "dimensions when you upload a new photo."
242
  "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც "
243
  "ატვირთავთ სურათს."
244
 
245
+ #: gallery-plugin.php:800
246
  msgid "Count images in row"
247
  msgstr "სურათების რაოდენობა მწკრივში"
248
 
249
+ #: gallery-plugin.php:806
250
  msgid "Start slideshow"
251
  msgstr ""
252
 
253
+ #: gallery-plugin.php:812
254
  msgid "Slideshow interval"
255
  msgstr ""
256
 
257
+ #: gallery-plugin.php:820
258
  msgid "attachment id"
259
  msgstr ""
260
 
261
+ #: gallery-plugin.php:821
262
  msgid "attachment title"
263
  msgstr ""
264
 
265
+ #: gallery-plugin.php:822
266
  #, fuzzy
267
  msgid "date"
268
  msgstr "თარიღი"
269
 
270
+ #: gallery-plugin.php:823
271
  msgid ""
272
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
273
  "dialog )"
274
  msgstr ""
275
 
276
+ #: gallery-plugin.php:824
277
  msgid "random"
278
  msgstr ""
279
 
280
+ #: gallery-plugin.php:828
281
  msgid "Attachments order"
282
  msgstr ""
283
 
284
+ #: gallery-plugin.php:830
285
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
286
  msgstr ""
287
 
288
+ #: gallery-plugin.php:831
289
  msgid ""
290
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
291
  msgstr ""
292
 
293
+ #: gallery-plugin.php:835
294
  msgid "Display Return link"
295
  msgstr ""
296
 
297
+ #: gallery-plugin.php:841
298
  msgid "Display Return link in shortcode"
299
  msgstr ""
300
 
301
+ #: gallery-plugin.php:847
302
  msgid "Label for Return link"
303
  msgstr ""
304
 
305
+ #: gallery-plugin.php:853
306
  msgid "Label for Read More link"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:861
310
  msgid "Save Changes"
311
  msgstr "ცვლილებების შენახვა"
312
 
313
+ #: gallery-plugin.php:874
314
  msgid "FAQ"
315
  msgstr "FAQ"
316
 
317
+ #: gallery-plugin.php:875
318
  msgid "Support"
319
  msgstr "Support"
320
 
321
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
322
  msgid "Sorry - nothing to found."
323
  msgstr "მაპატიეთ - არაფერია ნაპოვნი."
324
 
325
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
326
  msgid "Download High resolution image"
327
  msgstr ""
328
 
329
+ #: template/gallery-single-template.php:90
330
  msgid "Image "
331
  msgstr ""
332
 
languages/gallery-lt_LT.mo CHANGED
Binary file
languages/gallery-lt_LT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:40+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
9
  "Language: lt_LT\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -31,7 +32,7 @@ msgstr ""
31
  msgid "Galleries"
32
  msgstr "Galerijos"
33
 
34
- #: gallery-plugin.php:128 gallery-plugin.php:630
35
  msgid "Gallery"
36
  msgstr "Galerija"
37
 
@@ -71,7 +72,7 @@ msgstr "Įkelti failą"
71
  msgid "Gallery Shortcode"
72
  msgstr "Galerijos trumpasis kodas"
73
 
74
- #: gallery-plugin.php:208
75
  msgid ""
76
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
77
  "your webserver. Please use the standard WP functional to upload the images "
@@ -81,41 +82,53 @@ msgstr ""
81
  "plugin/upload/files). Prašome naudoti numatytąsias WordPress funkcijas "
82
  "paveikslėliams įkelti (failų galerija)"
83
 
84
- #: gallery-plugin.php:212
85
  msgid "Choose an image to upload:"
86
  msgstr "Pasirinkite paveikslėlį įkėlimui:"
87
 
88
- #: gallery-plugin.php:217
89
  msgid "Please enable JavaScript to use the file uploader."
90
  msgstr "Prašome įjungti JavaScript jei norite naudotis failų įkėlikliu."
91
 
92
- #: gallery-plugin.php:224
93
  msgid "Allow download link for images in this gallery"
94
  msgstr ""
95
 
96
- #: gallery-plugin.php:225
97
  msgid ""
98
  "Please use drag and drop function to change the order of the output of "
99
  "images and do not forget to save post."
100
  msgstr ""
101
 
102
- #: gallery-plugin.php:227
103
  msgid "Please do not forget to select "
104
  msgstr ""
105
 
106
- #: gallery-plugin.php:227 gallery-plugin.php:791
107
  msgid "Attachments order by"
108
  msgstr "Prisegtukus rikiuoti pagal"
109
 
110
- #: gallery-plugin.php:227
111
  msgid "attachments order"
112
  msgstr ""
113
 
114
- #: gallery-plugin.php:227
115
  msgid "in the settings of the plugin (page "
116
  msgstr ""
117
 
118
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
119
  msgid ""
120
  "You can add the Single Gallery on the page or in the post by inserting this "
121
  "shortcode in the content"
@@ -123,66 +136,66 @@ msgstr ""
123
  "Galite įterpti galeriją puslapyje ar įraše įterpdami šį trumpąjį kodą į "
124
  "turinį"
125
 
126
- #: gallery-plugin.php:291
127
  msgid ""
128
  "If you want to take a brief display of the gallery with a link to a Single "
129
  "Sallery Page"
130
  msgstr ""
131
 
132
- #: gallery-plugin.php:448
133
  msgid "Title"
134
  msgstr "Pavadinimas"
135
 
136
- #: gallery-plugin.php:449
137
  msgid "Author"
138
  msgstr "Autorius"
139
 
140
- #: gallery-plugin.php:450
141
  msgid "Photo's"
142
  msgstr "Nuotraukos"
143
 
144
- #: gallery-plugin.php:451
145
  msgid "Public"
146
  msgstr "Vieša"
147
 
148
- #: gallery-plugin.php:452
149
  msgid "Date"
150
  msgstr "Data"
151
 
152
- #: gallery-plugin.php:599
153
  msgid "Activated plugins"
154
  msgstr "Įjungti įskiepiai"
155
 
156
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
157
  msgid "Read more"
158
  msgstr "Skaityti daugiau"
159
 
160
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
161
  msgid "Settings"
162
  msgstr "Nustatymai"
163
 
164
- #: gallery-plugin.php:607
165
  msgid "Installed plugins"
166
  msgstr "Įdiegti įskiepiai"
167
 
168
- #: gallery-plugin.php:615
169
  msgid "Recommended plugins"
170
  msgstr "Rekomenduojami įskiepiai"
171
 
172
- #: gallery-plugin.php:617
173
  msgid "Download"
174
  msgstr "Atsisiųsti"
175
 
176
- #: gallery-plugin.php:617
177
  #, php-format
178
  msgid "Install %s"
179
  msgstr "Įdiegti %s"
180
 
181
- #: gallery-plugin.php:617
182
  msgid "Install now from wordpress.org"
183
  msgstr "Įdiegti tiesiai iš wordpress.org"
184
 
185
- #: gallery-plugin.php:619
186
  msgid ""
187
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
188
  "fill in our contact form on our site"
@@ -190,19 +203,19 @@ msgstr ""
190
  "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, "
191
  "arba užpildykite susisiekimo formą mūsų tinklalapyje"
192
 
193
- #: gallery-plugin.php:654
194
  msgid "See photo &raquo;"
195
  msgstr "Peržiūrėti nuotrauką &raquo;"
196
 
197
- #: gallery-plugin.php:733
198
  msgid "Options saved."
199
  msgstr "Pasirinktys išsaugotos."
200
 
201
- #: gallery-plugin.php:747
202
  msgid "Gallery Options"
203
  msgstr "Galerijų pasirinktys"
204
 
205
- #: gallery-plugin.php:750
206
  msgid ""
207
  "If you would like to add a Single Gallery to your page or post, just copy "
208
  "and put this shortcode onto your post or page content:"
@@ -210,27 +223,27 @@ msgstr ""
210
  "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite "
211
  "šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
212
 
213
- #: gallery-plugin.php:754
214
  msgid "The size of the cover album for gallery"
215
  msgstr "Galerijos viršelio matmenys"
216
 
217
- #: gallery-plugin.php:756 gallery-plugin.php:764
218
  msgid "Image size name"
219
  msgstr "Paveikslėlio matmenų klasės vardas"
220
 
221
- #: gallery-plugin.php:757 gallery-plugin.php:765
222
  msgid "Width (in px)"
223
  msgstr "Plotis (pikseliais)"
224
 
225
- #: gallery-plugin.php:758 gallery-plugin.php:766
226
  msgid "Height (in px)"
227
  msgstr "Aukštis (pikseliais)"
228
 
229
- #: gallery-plugin.php:762
230
  msgid "Size for gallery image"
231
  msgstr "Galerijos paveikslėlio matmenys"
232
 
233
- #: gallery-plugin.php:770
234
  msgid ""
235
  "WordPress will create a copy of the post thumbnail with the specified "
236
  "dimensions when you upload a new photo."
@@ -238,94 +251,94 @@ msgstr ""
238
  "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite "
239
  "naują paveikslėlį."
240
 
241
- #: gallery-plugin.php:773
242
  msgid "Count images in row"
243
  msgstr "Paveikslėlių eilėje kiekis"
244
 
245
- #: gallery-plugin.php:779
246
  msgid "Start slideshow"
247
  msgstr "Pradėti demonstraciją"
248
 
249
- #: gallery-plugin.php:785
250
  msgid "Slideshow interval"
251
  msgstr "Demonstracijos trukmė"
252
 
253
- #: gallery-plugin.php:793
254
  msgid "attachment id"
255
  msgstr "prisegtuko ID"
256
 
257
- #: gallery-plugin.php:794
258
  msgid "attachment title"
259
  msgstr "prisegtuko pavadinimą"
260
 
261
- #: gallery-plugin.php:795
262
  msgid "date"
263
  msgstr "datą"
264
 
265
- #: gallery-plugin.php:796
266
  msgid ""
267
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
268
  "dialog )"
269
  msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
270
 
271
- #: gallery-plugin.php:797
272
  msgid "random"
273
  msgstr "atsitiktine tvarka"
274
 
275
- #: gallery-plugin.php:801
276
  msgid "Attachments order"
277
  msgstr "Prisegtukų išdėstymas"
278
 
279
- #: gallery-plugin.php:803
280
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
281
  msgstr ""
282
  "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, "
283
  "c)"
284
 
285
- #: gallery-plugin.php:804
286
  msgid ""
287
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
288
  msgstr ""
289
  "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, "
290
  "a)"
291
 
292
- #: gallery-plugin.php:808
293
  msgid "Display Return link"
294
  msgstr "Rodyti Sugrįžimo nuorodą"
295
 
296
- #: gallery-plugin.php:814
297
  msgid "Display Return link in shortcode"
298
  msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
299
 
300
- #: gallery-plugin.php:820
301
  msgid "Label for Return link"
302
  msgstr "Sugrįžimo nuorodos tekstas"
303
 
304
- #: gallery-plugin.php:826
305
  msgid "Label for Read More link"
306
  msgstr ""
307
 
308
- #: gallery-plugin.php:834
309
  msgid "Save Changes"
310
  msgstr "Išsaugoti pakeitimus"
311
 
312
- #: gallery-plugin.php:847
313
  msgid "FAQ"
314
  msgstr "D. U. K."
315
 
316
- #: gallery-plugin.php:848
317
  msgid "Support"
318
  msgstr "Palaikymas"
319
 
320
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
321
  msgid "Sorry - nothing to found."
322
  msgstr "Deja, nieko nerasta."
323
 
324
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
325
  msgid "Download High resolution image"
326
  msgstr ""
327
 
328
- #: template/gallery-single-template.php:83
329
  msgid "Image "
330
  msgstr "Paveikslėlis"
331
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
9
  "Language: lt_LT\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
32
  msgid "Galleries"
33
  msgstr "Galerijos"
34
 
35
+ #: gallery-plugin.php:128 gallery-plugin.php:657
36
  msgid "Gallery"
37
  msgstr "Galerija"
38
 
72
  msgid "Gallery Shortcode"
73
  msgstr "Galerijos trumpasis kodas"
74
 
75
+ #: gallery-plugin.php:209
76
  msgid ""
77
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
78
  "your webserver. Please use the standard WP functional to upload the images "
82
  "plugin/upload/files). Prašome naudoti numatytąsias WordPress funkcijas "
83
  "paveikslėliams įkelti (failų galerija)"
84
 
85
+ #: gallery-plugin.php:213
86
  msgid "Choose an image to upload:"
87
  msgstr "Pasirinkite paveikslėlį įkėlimui:"
88
 
89
+ #: gallery-plugin.php:218
90
  msgid "Please enable JavaScript to use the file uploader."
91
  msgstr "Prašome įjungti JavaScript jei norite naudotis failų įkėlikliu."
92
 
93
+ #: gallery-plugin.php:225
94
  msgid "Allow download link for images in this gallery"
95
  msgstr ""
96
 
97
+ #: gallery-plugin.php:226
98
  msgid ""
99
  "Please use drag and drop function to change the order of the output of "
100
  "images and do not forget to save post."
101
  msgstr ""
102
 
103
+ #: gallery-plugin.php:228
104
  msgid "Please do not forget to select "
105
  msgstr ""
106
 
107
+ #: gallery-plugin.php:228 gallery-plugin.php:818
108
  msgid "Attachments order by"
109
  msgstr "Prisegtukus rikiuoti pagal"
110
 
111
+ #: gallery-plugin.php:228
112
  msgid "attachments order"
113
  msgstr ""
114
 
115
+ #: gallery-plugin.php:228
116
  msgid "in the settings of the plugin (page "
117
  msgstr ""
118
 
119
+ #: gallery-plugin.php:276
120
+ msgid "Link URL"
121
+ msgstr ""
122
+
123
+ #: gallery-plugin.php:276
124
+ msgid "(clicking on image <br /> open the link in new window)"
125
+ msgstr ""
126
+
127
+ #: gallery-plugin.php:277
128
+ msgid "Delete"
129
+ msgstr ""
130
+
131
+ #: gallery-plugin.php:291
132
  msgid ""
133
  "You can add the Single Gallery on the page or in the post by inserting this "
134
  "shortcode in the content"
136
  "Galite įterpti galeriją puslapyje ar įraše įterpdami šį trumpąjį kodą į "
137
  "turinį"
138
 
139
+ #: gallery-plugin.php:293
140
  msgid ""
141
  "If you want to take a brief display of the gallery with a link to a Single "
142
  "Sallery Page"
143
  msgstr ""
144
 
145
+ #: gallery-plugin.php:475
146
  msgid "Title"
147
  msgstr "Pavadinimas"
148
 
149
+ #: gallery-plugin.php:476
150
  msgid "Author"
151
  msgstr "Autorius"
152
 
153
+ #: gallery-plugin.php:477
154
  msgid "Photo's"
155
  msgstr "Nuotraukos"
156
 
157
+ #: gallery-plugin.php:478
158
  msgid "Public"
159
  msgstr "Vieša"
160
 
161
+ #: gallery-plugin.php:479
162
  msgid "Date"
163
  msgstr "Data"
164
 
165
+ #: gallery-plugin.php:626
166
  msgid "Activated plugins"
167
  msgstr "Įjungti įskiepiai"
168
 
169
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
170
  msgid "Read more"
171
  msgstr "Skaityti daugiau"
172
 
173
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
174
  msgid "Settings"
175
  msgstr "Nustatymai"
176
 
177
+ #: gallery-plugin.php:634
178
  msgid "Installed plugins"
179
  msgstr "Įdiegti įskiepiai"
180
 
181
+ #: gallery-plugin.php:642
182
  msgid "Recommended plugins"
183
  msgstr "Rekomenduojami įskiepiai"
184
 
185
+ #: gallery-plugin.php:644
186
  msgid "Download"
187
  msgstr "Atsisiųsti"
188
 
189
+ #: gallery-plugin.php:644
190
  #, php-format
191
  msgid "Install %s"
192
  msgstr "Įdiegti %s"
193
 
194
+ #: gallery-plugin.php:644
195
  msgid "Install now from wordpress.org"
196
  msgstr "Įdiegti tiesiai iš wordpress.org"
197
 
198
+ #: gallery-plugin.php:646
199
  msgid ""
200
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
201
  "fill in our contact form on our site"
203
  "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, "
204
  "arba užpildykite susisiekimo formą mūsų tinklalapyje"
205
 
206
+ #: gallery-plugin.php:681
207
  msgid "See photo &raquo;"
208
  msgstr "Peržiūrėti nuotrauką &raquo;"
209
 
210
+ #: gallery-plugin.php:760
211
  msgid "Options saved."
212
  msgstr "Pasirinktys išsaugotos."
213
 
214
+ #: gallery-plugin.php:774
215
  msgid "Gallery Options"
216
  msgstr "Galerijų pasirinktys"
217
 
218
+ #: gallery-plugin.php:777
219
  msgid ""
220
  "If you would like to add a Single Gallery to your page or post, just copy "
221
  "and put this shortcode onto your post or page content:"
223
  "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite "
224
  "šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
225
 
226
+ #: gallery-plugin.php:781
227
  msgid "The size of the cover album for gallery"
228
  msgstr "Galerijos viršelio matmenys"
229
 
230
+ #: gallery-plugin.php:783 gallery-plugin.php:791
231
  msgid "Image size name"
232
  msgstr "Paveikslėlio matmenų klasės vardas"
233
 
234
+ #: gallery-plugin.php:784 gallery-plugin.php:792
235
  msgid "Width (in px)"
236
  msgstr "Plotis (pikseliais)"
237
 
238
+ #: gallery-plugin.php:785 gallery-plugin.php:793
239
  msgid "Height (in px)"
240
  msgstr "Aukštis (pikseliais)"
241
 
242
+ #: gallery-plugin.php:789
243
  msgid "Size for gallery image"
244
  msgstr "Galerijos paveikslėlio matmenys"
245
 
246
+ #: gallery-plugin.php:797
247
  msgid ""
248
  "WordPress will create a copy of the post thumbnail with the specified "
249
  "dimensions when you upload a new photo."
251
  "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite "
252
  "naują paveikslėlį."
253
 
254
+ #: gallery-plugin.php:800
255
  msgid "Count images in row"
256
  msgstr "Paveikslėlių eilėje kiekis"
257
 
258
+ #: gallery-plugin.php:806
259
  msgid "Start slideshow"
260
  msgstr "Pradėti demonstraciją"
261
 
262
+ #: gallery-plugin.php:812
263
  msgid "Slideshow interval"
264
  msgstr "Demonstracijos trukmė"
265
 
266
+ #: gallery-plugin.php:820
267
  msgid "attachment id"
268
  msgstr "prisegtuko ID"
269
 
270
+ #: gallery-plugin.php:821
271
  msgid "attachment title"
272
  msgstr "prisegtuko pavadinimą"
273
 
274
+ #: gallery-plugin.php:822
275
  msgid "date"
276
  msgstr "datą"
277
 
278
+ #: gallery-plugin.php:823
279
  msgid ""
280
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
281
  "dialog )"
282
  msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
283
 
284
+ #: gallery-plugin.php:824
285
  msgid "random"
286
  msgstr "atsitiktine tvarka"
287
 
288
+ #: gallery-plugin.php:828
289
  msgid "Attachments order"
290
  msgstr "Prisegtukų išdėstymas"
291
 
292
+ #: gallery-plugin.php:830
293
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
294
  msgstr ""
295
  "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, "
296
  "c)"
297
 
298
+ #: gallery-plugin.php:831
299
  msgid ""
300
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
301
  msgstr ""
302
  "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, "
303
  "a)"
304
 
305
+ #: gallery-plugin.php:835
306
  msgid "Display Return link"
307
  msgstr "Rodyti Sugrįžimo nuorodą"
308
 
309
+ #: gallery-plugin.php:841
310
  msgid "Display Return link in shortcode"
311
  msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
312
 
313
+ #: gallery-plugin.php:847
314
  msgid "Label for Return link"
315
  msgstr "Sugrįžimo nuorodos tekstas"
316
 
317
+ #: gallery-plugin.php:853
318
  msgid "Label for Read More link"
319
  msgstr ""
320
 
321
+ #: gallery-plugin.php:861
322
  msgid "Save Changes"
323
  msgstr "Išsaugoti pakeitimus"
324
 
325
+ #: gallery-plugin.php:874
326
  msgid "FAQ"
327
  msgstr "D. U. K."
328
 
329
+ #: gallery-plugin.php:875
330
  msgid "Support"
331
  msgstr "Palaikymas"
332
 
333
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
334
  msgid "Sorry - nothing to found."
335
  msgstr "Deja, nieko nerasta."
336
 
337
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
338
  msgid "Download High resolution image"
339
  msgstr ""
340
 
341
+ #: template/gallery-single-template.php:90
342
  msgid "Image "
343
  msgstr "Paveikslėlis"
344
 
languages/gallery-nl_NL.mo CHANGED
Binary file
languages/gallery-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:40+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "Language: nl_NL\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "Fotoalbum's"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "Fotoalbum"
33
 
@@ -68,114 +69,126 @@ msgstr "Foto's uploaden"
68
  msgid "Gallery Shortcode"
69
  msgstr "Fotoalbum opties"
70
 
71
- #: gallery-plugin.php:208
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
- #: gallery-plugin.php:212
79
  #, fuzzy
80
  msgid "Choose an image to upload:"
81
  msgstr "Foto's uploaden: "
82
 
83
- #: gallery-plugin.php:217
84
  msgid "Please enable JavaScript to use the file uploader."
85
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
86
 
87
- #: gallery-plugin.php:224
88
  msgid "Allow download link for images in this gallery"
89
  msgstr ""
90
 
91
- #: gallery-plugin.php:225
92
  msgid ""
93
  "Please use drag and drop function to change the order of the output of "
94
  "images and do not forget to save post."
95
  msgstr ""
96
 
97
- #: gallery-plugin.php:227
98
  msgid "Please do not forget to select "
99
  msgstr ""
100
 
101
- #: gallery-plugin.php:227 gallery-plugin.php:791
102
  msgid "Attachments order by"
103
  msgstr ""
104
 
105
- #: gallery-plugin.php:227
106
  msgid "attachments order"
107
  msgstr ""
108
 
109
- #: gallery-plugin.php:227
110
  msgid "in the settings of the plugin (page "
111
  msgstr ""
112
 
113
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
114
  msgid ""
115
  "You can add the Single Gallery on the page or in the post by inserting this "
116
  "shortcode in the content"
117
  msgstr ""
118
 
119
- #: gallery-plugin.php:291
120
  msgid ""
121
  "If you want to take a brief display of the gallery with a link to a Single "
122
  "Sallery Page"
123
  msgstr ""
124
 
125
- #: gallery-plugin.php:448
126
  msgid "Title"
127
  msgstr "Titel"
128
 
129
- #: gallery-plugin.php:449
130
  msgid "Author"
131
  msgstr "Auteur"
132
 
133
- #: gallery-plugin.php:450
134
  msgid "Photo's"
135
  msgstr "Foto's"
136
 
137
- #: gallery-plugin.php:451
138
  msgid "Public"
139
  msgstr "Gepubliceerd"
140
 
141
- #: gallery-plugin.php:452
142
  msgid "Date"
143
  msgstr "Datum"
144
 
145
- #: gallery-plugin.php:599
146
  msgid "Activated plugins"
147
  msgstr "Geactiveerde plugins"
148
 
149
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
150
  msgid "Read more"
151
  msgstr "Lees verder"
152
 
153
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
154
  msgid "Settings"
155
  msgstr "Instellingen"
156
 
157
- #: gallery-plugin.php:607
158
  msgid "Installed plugins"
159
  msgstr "Geinstalleerde plugins"
160
 
161
- #: gallery-plugin.php:615
162
  msgid "Recommended plugins"
163
  msgstr "Aanbevolen plugins"
164
 
165
- #: gallery-plugin.php:617
166
  msgid "Download"
167
  msgstr "Download"
168
 
169
- #: gallery-plugin.php:617
170
  #, php-format
171
  msgid "Install %s"
172
  msgstr "Install %s"
173
 
174
- #: gallery-plugin.php:617
175
  msgid "Install now from wordpress.org"
176
  msgstr "Installeer nu vanaf wordpress.org"
177
 
178
- #: gallery-plugin.php:619
179
  msgid ""
180
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
181
  "fill in our contact form on our site"
@@ -183,45 +196,45 @@ msgstr ""
183
  "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul "
184
  "het contactformulier in op onze website"
185
 
186
- #: gallery-plugin.php:654
187
  msgid "See photo &raquo;"
188
  msgstr "Bekijk foto &raquo;"
189
 
190
- #: gallery-plugin.php:733
191
  msgid "Options saved."
192
  msgstr "Opties opgeslagen"
193
 
194
- #: gallery-plugin.php:747
195
  msgid "Gallery Options"
196
  msgstr "Fotoalbum opties"
197
 
198
- #: gallery-plugin.php:750
199
  msgid ""
200
  "If you would like to add a Single Gallery to your page or post, just copy "
201
  "and put this shortcode onto your post or page content:"
202
  msgstr ""
203
 
204
- #: gallery-plugin.php:754
205
  msgid "The size of the cover album for gallery"
206
  msgstr "De afmetingen voor de cover van het album"
207
 
208
- #: gallery-plugin.php:756 gallery-plugin.php:764
209
  msgid "Image size name"
210
  msgstr "Afbeelding grootte"
211
 
212
- #: gallery-plugin.php:757 gallery-plugin.php:765
213
  msgid "Width (in px)"
214
  msgstr "Breedte (in px)"
215
 
216
- #: gallery-plugin.php:758 gallery-plugin.php:766
217
  msgid "Height (in px)"
218
  msgstr "Hoogte (in px)"
219
 
220
- #: gallery-plugin.php:762
221
  msgid "Size for gallery image"
222
  msgstr "Grootte voor album afbeelding"
223
 
224
- #: gallery-plugin.php:770
225
  msgid ""
226
  "WordPress will create a copy of the post thumbnail with the specified "
227
  "dimensions when you upload a new photo."
@@ -229,90 +242,90 @@ msgstr ""
229
  "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen "
230
  "als u een nieuwe foto upload."
231
 
232
- #: gallery-plugin.php:773
233
  msgid "Count images in row"
234
  msgstr "Aantal afbeeldingen op een rij"
235
 
236
- #: gallery-plugin.php:779
237
  msgid "Start slideshow"
238
  msgstr ""
239
 
240
- #: gallery-plugin.php:785
241
  msgid "Slideshow interval"
242
  msgstr ""
243
 
244
- #: gallery-plugin.php:793
245
  msgid "attachment id"
246
  msgstr ""
247
 
248
- #: gallery-plugin.php:794
249
  msgid "attachment title"
250
  msgstr ""
251
 
252
- #: gallery-plugin.php:795
253
  #, fuzzy
254
  msgid "date"
255
  msgstr "Datum"
256
 
257
- #: gallery-plugin.php:796
258
  msgid ""
259
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
260
  "dialog )"
261
  msgstr ""
262
 
263
- #: gallery-plugin.php:797
264
  msgid "random"
265
  msgstr ""
266
 
267
- #: gallery-plugin.php:801
268
  msgid "Attachments order"
269
  msgstr ""
270
 
271
- #: gallery-plugin.php:803
272
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
273
  msgstr ""
274
 
275
- #: gallery-plugin.php:804
276
  msgid ""
277
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
278
  msgstr ""
279
 
280
- #: gallery-plugin.php:808
281
  msgid "Display Return link"
282
  msgstr ""
283
 
284
- #: gallery-plugin.php:814
285
  msgid "Display Return link in shortcode"
286
  msgstr ""
287
 
288
- #: gallery-plugin.php:820
289
  msgid "Label for Return link"
290
  msgstr ""
291
 
292
- #: gallery-plugin.php:826
293
  msgid "Label for Read More link"
294
  msgstr ""
295
 
296
- #: gallery-plugin.php:834
297
  msgid "Save Changes"
298
  msgstr "Bewaar veranderingen"
299
 
300
- #: gallery-plugin.php:847
301
  msgid "FAQ"
302
  msgstr "FAQ"
303
 
304
- #: gallery-plugin.php:848
305
  msgid "Support"
306
  msgstr "Support"
307
 
308
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
309
  msgid "Sorry - nothing to found."
310
  msgstr "Helaas - niets gevonden"
311
 
312
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
313
  msgid "Download High resolution image"
314
  msgstr ""
315
 
316
- #: template/gallery-single-template.php:83
317
  msgid "Image "
318
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "Language: nl_NL\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "Fotoalbum's"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "Fotoalbum"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Fotoalbum opties"
71
 
72
+ #: gallery-plugin.php:209
73
  msgid ""
74
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
75
  "your webserver. Please use the standard WP functional to upload the images "
76
  "(media library)"
77
  msgstr ""
78
 
79
+ #: gallery-plugin.php:213
80
  #, fuzzy
81
  msgid "Choose an image to upload:"
82
  msgstr "Foto's uploaden: "
83
 
84
+ #: gallery-plugin.php:218
85
  msgid "Please enable JavaScript to use the file uploader."
86
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
87
 
88
+ #: gallery-plugin.php:225
89
  msgid "Allow download link for images in this gallery"
90
  msgstr ""
91
 
92
+ #: gallery-plugin.php:226
93
  msgid ""
94
  "Please use drag and drop function to change the order of the output of "
95
  "images and do not forget to save post."
96
  msgstr ""
97
 
98
+ #: gallery-plugin.php:228
99
  msgid "Please do not forget to select "
100
  msgstr ""
101
 
102
+ #: gallery-plugin.php:228 gallery-plugin.php:818
103
  msgid "Attachments order by"
104
  msgstr ""
105
 
106
+ #: gallery-plugin.php:228
107
  msgid "attachments order"
108
  msgstr ""
109
 
110
+ #: gallery-plugin.php:228
111
  msgid "in the settings of the plugin (page "
112
  msgstr ""
113
 
114
+ #: gallery-plugin.php:276
115
+ msgid "Link URL"
116
+ msgstr ""
117
+
118
+ #: gallery-plugin.php:276
119
+ msgid "(clicking on image <br /> open the link in new window)"
120
+ msgstr ""
121
+
122
+ #: gallery-plugin.php:277
123
+ msgid "Delete"
124
+ msgstr ""
125
+
126
+ #: gallery-plugin.php:291
127
  msgid ""
128
  "You can add the Single Gallery on the page or in the post by inserting this "
129
  "shortcode in the content"
130
  msgstr ""
131
 
132
+ #: gallery-plugin.php:293
133
  msgid ""
134
  "If you want to take a brief display of the gallery with a link to a Single "
135
  "Sallery Page"
136
  msgstr ""
137
 
138
+ #: gallery-plugin.php:475
139
  msgid "Title"
140
  msgstr "Titel"
141
 
142
+ #: gallery-plugin.php:476
143
  msgid "Author"
144
  msgstr "Auteur"
145
 
146
+ #: gallery-plugin.php:477
147
  msgid "Photo's"
148
  msgstr "Foto's"
149
 
150
+ #: gallery-plugin.php:478
151
  msgid "Public"
152
  msgstr "Gepubliceerd"
153
 
154
+ #: gallery-plugin.php:479
155
  msgid "Date"
156
  msgstr "Datum"
157
 
158
+ #: gallery-plugin.php:626
159
  msgid "Activated plugins"
160
  msgstr "Geactiveerde plugins"
161
 
162
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
163
  msgid "Read more"
164
  msgstr "Lees verder"
165
 
166
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
167
  msgid "Settings"
168
  msgstr "Instellingen"
169
 
170
+ #: gallery-plugin.php:634
171
  msgid "Installed plugins"
172
  msgstr "Geinstalleerde plugins"
173
 
174
+ #: gallery-plugin.php:642
175
  msgid "Recommended plugins"
176
  msgstr "Aanbevolen plugins"
177
 
178
+ #: gallery-plugin.php:644
179
  msgid "Download"
180
  msgstr "Download"
181
 
182
+ #: gallery-plugin.php:644
183
  #, php-format
184
  msgid "Install %s"
185
  msgstr "Install %s"
186
 
187
+ #: gallery-plugin.php:644
188
  msgid "Install now from wordpress.org"
189
  msgstr "Installeer nu vanaf wordpress.org"
190
 
191
+ #: gallery-plugin.php:646
192
  msgid ""
193
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
194
  "fill in our contact form on our site"
196
  "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul "
197
  "het contactformulier in op onze website"
198
 
199
+ #: gallery-plugin.php:681
200
  msgid "See photo &raquo;"
201
  msgstr "Bekijk foto &raquo;"
202
 
203
+ #: gallery-plugin.php:760
204
  msgid "Options saved."
205
  msgstr "Opties opgeslagen"
206
 
207
+ #: gallery-plugin.php:774
208
  msgid "Gallery Options"
209
  msgstr "Fotoalbum opties"
210
 
211
+ #: gallery-plugin.php:777
212
  msgid ""
213
  "If you would like to add a Single Gallery to your page or post, just copy "
214
  "and put this shortcode onto your post or page content:"
215
  msgstr ""
216
 
217
+ #: gallery-plugin.php:781
218
  msgid "The size of the cover album for gallery"
219
  msgstr "De afmetingen voor de cover van het album"
220
 
221
+ #: gallery-plugin.php:783 gallery-plugin.php:791
222
  msgid "Image size name"
223
  msgstr "Afbeelding grootte"
224
 
225
+ #: gallery-plugin.php:784 gallery-plugin.php:792
226
  msgid "Width (in px)"
227
  msgstr "Breedte (in px)"
228
 
229
+ #: gallery-plugin.php:785 gallery-plugin.php:793
230
  msgid "Height (in px)"
231
  msgstr "Hoogte (in px)"
232
 
233
+ #: gallery-plugin.php:789
234
  msgid "Size for gallery image"
235
  msgstr "Grootte voor album afbeelding"
236
 
237
+ #: gallery-plugin.php:797
238
  msgid ""
239
  "WordPress will create a copy of the post thumbnail with the specified "
240
  "dimensions when you upload a new photo."
242
  "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen "
243
  "als u een nieuwe foto upload."
244
 
245
+ #: gallery-plugin.php:800
246
  msgid "Count images in row"
247
  msgstr "Aantal afbeeldingen op een rij"
248
 
249
+ #: gallery-plugin.php:806
250
  msgid "Start slideshow"
251
  msgstr ""
252
 
253
+ #: gallery-plugin.php:812
254
  msgid "Slideshow interval"
255
  msgstr ""
256
 
257
+ #: gallery-plugin.php:820
258
  msgid "attachment id"
259
  msgstr ""
260
 
261
+ #: gallery-plugin.php:821
262
  msgid "attachment title"
263
  msgstr ""
264
 
265
+ #: gallery-plugin.php:822
266
  #, fuzzy
267
  msgid "date"
268
  msgstr "Datum"
269
 
270
+ #: gallery-plugin.php:823
271
  msgid ""
272
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
273
  "dialog )"
274
  msgstr ""
275
 
276
+ #: gallery-plugin.php:824
277
  msgid "random"
278
  msgstr ""
279
 
280
+ #: gallery-plugin.php:828
281
  msgid "Attachments order"
282
  msgstr ""
283
 
284
+ #: gallery-plugin.php:830
285
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
286
  msgstr ""
287
 
288
+ #: gallery-plugin.php:831
289
  msgid ""
290
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
291
  msgstr ""
292
 
293
+ #: gallery-plugin.php:835
294
  msgid "Display Return link"
295
  msgstr ""
296
 
297
+ #: gallery-plugin.php:841
298
  msgid "Display Return link in shortcode"
299
  msgstr ""
300
 
301
+ #: gallery-plugin.php:847
302
  msgid "Label for Return link"
303
  msgstr ""
304
 
305
+ #: gallery-plugin.php:853
306
  msgid "Label for Read More link"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:861
310
  msgid "Save Changes"
311
  msgstr "Bewaar veranderingen"
312
 
313
+ #: gallery-plugin.php:874
314
  msgid "FAQ"
315
  msgstr "FAQ"
316
 
317
+ #: gallery-plugin.php:875
318
  msgid "Support"
319
  msgstr "Support"
320
 
321
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
322
  msgid "Sorry - nothing to found."
323
  msgstr "Helaas - niets gevonden"
324
 
325
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
326
  msgid "Download High resolution image"
327
  msgstr ""
328
 
329
+ #: template/gallery-single-template.php:90
330
  msgid "Image "
331
  msgstr ""
languages/gallery-pl_PL.mo CHANGED
Binary file
languages/gallery-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:40+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "Language: pl_PL\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "Galerie zdjęć"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "Galeria zdjęć"
33
 
@@ -68,116 +69,128 @@ msgstr "Wgraj plik"
68
  msgid "Gallery Shortcode"
69
  msgstr "Opcje galerii."
70
 
71
- #: gallery-plugin.php:208
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
- #: gallery-plugin.php:212
79
  #, fuzzy
80
  msgid "Choose an image to upload:"
81
  msgstr "Wybierz zrzut ekrany do wgrania na serwer"
82
 
83
- #: gallery-plugin.php:217
84
  msgid "Please enable JavaScript to use the file uploader."
85
  msgstr ""
86
  "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na "
87
  "serwer"
88
 
89
- #: gallery-plugin.php:224
90
  msgid "Allow download link for images in this gallery"
91
  msgstr ""
92
 
93
- #: gallery-plugin.php:225
94
  msgid ""
95
  "Please use drag and drop function to change the order of the output of "
96
  "images and do not forget to save post."
97
  msgstr ""
98
 
99
- #: gallery-plugin.php:227
100
  msgid "Please do not forget to select "
101
  msgstr ""
102
 
103
- #: gallery-plugin.php:227 gallery-plugin.php:791
104
  msgid "Attachments order by"
105
  msgstr ""
106
 
107
- #: gallery-plugin.php:227
108
  msgid "attachments order"
109
  msgstr ""
110
 
111
- #: gallery-plugin.php:227
112
  msgid "in the settings of the plugin (page "
113
  msgstr ""
114
 
115
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
116
  msgid ""
117
  "You can add the Single Gallery on the page or in the post by inserting this "
118
  "shortcode in the content"
119
  msgstr ""
120
 
121
- #: gallery-plugin.php:291
122
  msgid ""
123
  "If you want to take a brief display of the gallery with a link to a Single "
124
  "Sallery Page"
125
  msgstr ""
126
 
127
- #: gallery-plugin.php:448
128
  msgid "Title"
129
  msgstr "Tytuł"
130
 
131
- #: gallery-plugin.php:449
132
  msgid "Author"
133
  msgstr "Autor"
134
 
135
- #: gallery-plugin.php:450
136
  msgid "Photo's"
137
  msgstr "Zdjęcie"
138
 
139
- #: gallery-plugin.php:451
140
  msgid "Public"
141
  msgstr "Publiczne"
142
 
143
- #: gallery-plugin.php:452
144
  msgid "Date"
145
  msgstr "Data"
146
 
147
- #: gallery-plugin.php:599
148
  msgid "Activated plugins"
149
  msgstr "Aktywny plugin"
150
 
151
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
152
  msgid "Read more"
153
  msgstr "Czytaj dalej"
154
 
155
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
156
  msgid "Settings"
157
  msgstr "Ustawienia"
158
 
159
- #: gallery-plugin.php:607
160
  msgid "Installed plugins"
161
  msgstr "Zainstalowane pluginy"
162
 
163
- #: gallery-plugin.php:615
164
  msgid "Recommended plugins"
165
  msgstr "Rekomendowane pluginy"
166
 
167
- #: gallery-plugin.php:617
168
  msgid "Download"
169
  msgstr "Pobierz"
170
 
171
- #: gallery-plugin.php:617
172
  #, php-format
173
  msgid "Install %s"
174
  msgstr "Zainstaluj %s"
175
 
176
- #: gallery-plugin.php:617
177
  msgid "Install now from wordpress.org"
178
  msgstr "Zainstaluj teraz z wordpress.org"
179
 
180
- #: gallery-plugin.php:619
181
  msgid ""
182
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
183
  "fill in our contact form on our site"
@@ -185,45 +198,45 @@ msgstr ""
185
  "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres "
186
  "plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
187
 
188
- #: gallery-plugin.php:654
189
  msgid "See photo &raquo;"
190
  msgstr "Zobacz zdjęcia &raquo;"
191
 
192
- #: gallery-plugin.php:733
193
  msgid "Options saved."
194
  msgstr "Opcje zostały zapisane."
195
 
196
- #: gallery-plugin.php:747
197
  msgid "Gallery Options"
198
  msgstr "Opcje galerii."
199
 
200
- #: gallery-plugin.php:750
201
  msgid ""
202
  "If you would like to add a Single Gallery to your page or post, just copy "
203
  "and put this shortcode onto your post or page content:"
204
  msgstr ""
205
 
206
- #: gallery-plugin.php:754
207
  msgid "The size of the cover album for gallery"
208
  msgstr "Rozmiar okładki albumu"
209
 
210
- #: gallery-plugin.php:756 gallery-plugin.php:764
211
  msgid "Image size name"
212
  msgstr "Nazwa rozmiaru obrazka"
213
 
214
- #: gallery-plugin.php:757 gallery-plugin.php:765
215
  msgid "Width (in px)"
216
  msgstr "Szerokość (w px)"
217
 
218
- #: gallery-plugin.php:758 gallery-plugin.php:766
219
  msgid "Height (in px)"
220
  msgstr "Wysokość (w px)"
221
 
222
- #: gallery-plugin.php:762
223
  msgid "Size for gallery image"
224
  msgstr "Rozmiar dla obrazka w galerii"
225
 
226
- #: gallery-plugin.php:770
227
  msgid ""
228
  "WordPress will create a copy of the post thumbnail with the specified "
229
  "dimensions when you upload a new photo."
@@ -231,91 +244,91 @@ msgstr ""
231
  "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas "
232
  "wgrywania nowego zdjęcia na serwer."
233
 
234
- #: gallery-plugin.php:773
235
  msgid "Count images in row"
236
  msgstr "Ilość obrazków w rzędzie"
237
 
238
- #: gallery-plugin.php:779
239
  msgid "Start slideshow"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:785
243
  msgid "Slideshow interval"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:793
247
  msgid "attachment id"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:794
251
  msgid "attachment title"
252
  msgstr ""
253
 
254
- #: gallery-plugin.php:795
255
  #, fuzzy
256
  msgid "date"
257
  msgstr "Data"
258
 
259
- #: gallery-plugin.php:796
260
  msgid ""
261
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
262
  "dialog )"
263
  msgstr ""
264
 
265
- #: gallery-plugin.php:797
266
  msgid "random"
267
  msgstr ""
268
 
269
- #: gallery-plugin.php:801
270
  msgid "Attachments order"
271
  msgstr ""
272
 
273
- #: gallery-plugin.php:803
274
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
275
  msgstr ""
276
 
277
- #: gallery-plugin.php:804
278
  msgid ""
279
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
280
  msgstr ""
281
 
282
- #: gallery-plugin.php:808
283
  msgid "Display Return link"
284
  msgstr ""
285
 
286
- #: gallery-plugin.php:814
287
  msgid "Display Return link in shortcode"
288
  msgstr ""
289
 
290
- #: gallery-plugin.php:820
291
  msgid "Label for Return link"
292
  msgstr ""
293
 
294
- #: gallery-plugin.php:826
295
  msgid "Label for Read More link"
296
  msgstr ""
297
 
298
- #: gallery-plugin.php:834
299
  msgid "Save Changes"
300
  msgstr "Zapisz zmiany"
301
 
302
- #: gallery-plugin.php:847
303
  msgid "FAQ"
304
  msgstr "FAQ "
305
 
306
- #: gallery-plugin.php:848
307
  msgid "Support"
308
  msgstr "Wsparcie"
309
 
310
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
311
  msgid "Sorry - nothing to found."
312
  msgstr "Przykro nam - nic nie znaleziono."
313
 
314
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
315
  msgid "Download High resolution image"
316
  msgstr ""
317
 
318
- #: template/gallery-single-template.php:83
319
  msgid "Image "
320
  msgstr ""
321
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "Language: pl_PL\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "Galerie zdjęć"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "Galeria zdjęć"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Opcje galerii."
71
 
72
+ #: gallery-plugin.php:209
73
  msgid ""
74
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
75
  "your webserver. Please use the standard WP functional to upload the images "
76
  "(media library)"
77
  msgstr ""
78
 
79
+ #: gallery-plugin.php:213
80
  #, fuzzy
81
  msgid "Choose an image to upload:"
82
  msgstr "Wybierz zrzut ekrany do wgrania na serwer"
83
 
84
+ #: gallery-plugin.php:218
85
  msgid "Please enable JavaScript to use the file uploader."
86
  msgstr ""
87
  "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na "
88
  "serwer"
89
 
90
+ #: gallery-plugin.php:225
91
  msgid "Allow download link for images in this gallery"
92
  msgstr ""
93
 
94
+ #: gallery-plugin.php:226
95
  msgid ""
96
  "Please use drag and drop function to change the order of the output of "
97
  "images and do not forget to save post."
98
  msgstr ""
99
 
100
+ #: gallery-plugin.php:228
101
  msgid "Please do not forget to select "
102
  msgstr ""
103
 
104
+ #: gallery-plugin.php:228 gallery-plugin.php:818
105
  msgid "Attachments order by"
106
  msgstr ""
107
 
108
+ #: gallery-plugin.php:228
109
  msgid "attachments order"
110
  msgstr ""
111
 
112
+ #: gallery-plugin.php:228
113
  msgid "in the settings of the plugin (page "
114
  msgstr ""
115
 
116
+ #: gallery-plugin.php:276
117
+ msgid "Link URL"
118
+ msgstr ""
119
+
120
+ #: gallery-plugin.php:276
121
+ msgid "(clicking on image <br /> open the link in new window)"
122
+ msgstr ""
123
+
124
+ #: gallery-plugin.php:277
125
+ msgid "Delete"
126
+ msgstr ""
127
+
128
+ #: gallery-plugin.php:291
129
  msgid ""
130
  "You can add the Single Gallery on the page or in the post by inserting this "
131
  "shortcode in the content"
132
  msgstr ""
133
 
134
+ #: gallery-plugin.php:293
135
  msgid ""
136
  "If you want to take a brief display of the gallery with a link to a Single "
137
  "Sallery Page"
138
  msgstr ""
139
 
140
+ #: gallery-plugin.php:475
141
  msgid "Title"
142
  msgstr "Tytuł"
143
 
144
+ #: gallery-plugin.php:476
145
  msgid "Author"
146
  msgstr "Autor"
147
 
148
+ #: gallery-plugin.php:477
149
  msgid "Photo's"
150
  msgstr "Zdjęcie"
151
 
152
+ #: gallery-plugin.php:478
153
  msgid "Public"
154
  msgstr "Publiczne"
155
 
156
+ #: gallery-plugin.php:479
157
  msgid "Date"
158
  msgstr "Data"
159
 
160
+ #: gallery-plugin.php:626
161
  msgid "Activated plugins"
162
  msgstr "Aktywny plugin"
163
 
164
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
165
  msgid "Read more"
166
  msgstr "Czytaj dalej"
167
 
168
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
169
  msgid "Settings"
170
  msgstr "Ustawienia"
171
 
172
+ #: gallery-plugin.php:634
173
  msgid "Installed plugins"
174
  msgstr "Zainstalowane pluginy"
175
 
176
+ #: gallery-plugin.php:642
177
  msgid "Recommended plugins"
178
  msgstr "Rekomendowane pluginy"
179
 
180
+ #: gallery-plugin.php:644
181
  msgid "Download"
182
  msgstr "Pobierz"
183
 
184
+ #: gallery-plugin.php:644
185
  #, php-format
186
  msgid "Install %s"
187
  msgstr "Zainstaluj %s"
188
 
189
+ #: gallery-plugin.php:644
190
  msgid "Install now from wordpress.org"
191
  msgstr "Zainstaluj teraz z wordpress.org"
192
 
193
+ #: gallery-plugin.php:646
194
  msgid ""
195
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
196
  "fill in our contact form on our site"
198
  "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres "
199
  "plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
200
 
201
+ #: gallery-plugin.php:681
202
  msgid "See photo &raquo;"
203
  msgstr "Zobacz zdjęcia &raquo;"
204
 
205
+ #: gallery-plugin.php:760
206
  msgid "Options saved."
207
  msgstr "Opcje zostały zapisane."
208
 
209
+ #: gallery-plugin.php:774
210
  msgid "Gallery Options"
211
  msgstr "Opcje galerii."
212
 
213
+ #: gallery-plugin.php:777
214
  msgid ""
215
  "If you would like to add a Single Gallery to your page or post, just copy "
216
  "and put this shortcode onto your post or page content:"
217
  msgstr ""
218
 
219
+ #: gallery-plugin.php:781
220
  msgid "The size of the cover album for gallery"
221
  msgstr "Rozmiar okładki albumu"
222
 
223
+ #: gallery-plugin.php:783 gallery-plugin.php:791
224
  msgid "Image size name"
225
  msgstr "Nazwa rozmiaru obrazka"
226
 
227
+ #: gallery-plugin.php:784 gallery-plugin.php:792
228
  msgid "Width (in px)"
229
  msgstr "Szerokość (w px)"
230
 
231
+ #: gallery-plugin.php:785 gallery-plugin.php:793
232
  msgid "Height (in px)"
233
  msgstr "Wysokość (w px)"
234
 
235
+ #: gallery-plugin.php:789
236
  msgid "Size for gallery image"
237
  msgstr "Rozmiar dla obrazka w galerii"
238
 
239
+ #: gallery-plugin.php:797
240
  msgid ""
241
  "WordPress will create a copy of the post thumbnail with the specified "
242
  "dimensions when you upload a new photo."
244
  "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas "
245
  "wgrywania nowego zdjęcia na serwer."
246
 
247
+ #: gallery-plugin.php:800
248
  msgid "Count images in row"
249
  msgstr "Ilość obrazków w rzędzie"
250
 
251
+ #: gallery-plugin.php:806
252
  msgid "Start slideshow"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:812
256
  msgid "Slideshow interval"
257
  msgstr ""
258
 
259
+ #: gallery-plugin.php:820
260
  msgid "attachment id"
261
  msgstr ""
262
 
263
+ #: gallery-plugin.php:821
264
  msgid "attachment title"
265
  msgstr ""
266
 
267
+ #: gallery-plugin.php:822
268
  #, fuzzy
269
  msgid "date"
270
  msgstr "Data"
271
 
272
+ #: gallery-plugin.php:823
273
  msgid ""
274
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
275
  "dialog )"
276
  msgstr ""
277
 
278
+ #: gallery-plugin.php:824
279
  msgid "random"
280
  msgstr ""
281
 
282
+ #: gallery-plugin.php:828
283
  msgid "Attachments order"
284
  msgstr ""
285
 
286
+ #: gallery-plugin.php:830
287
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:831
291
  msgid ""
292
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
293
  msgstr ""
294
 
295
+ #: gallery-plugin.php:835
296
  msgid "Display Return link"
297
  msgstr ""
298
 
299
+ #: gallery-plugin.php:841
300
  msgid "Display Return link in shortcode"
301
  msgstr ""
302
 
303
+ #: gallery-plugin.php:847
304
  msgid "Label for Return link"
305
  msgstr ""
306
 
307
+ #: gallery-plugin.php:853
308
  msgid "Label for Read More link"
309
  msgstr ""
310
 
311
+ #: gallery-plugin.php:861
312
  msgid "Save Changes"
313
  msgstr "Zapisz zmiany"
314
 
315
+ #: gallery-plugin.php:874
316
  msgid "FAQ"
317
  msgstr "FAQ "
318
 
319
+ #: gallery-plugin.php:875
320
  msgid "Support"
321
  msgstr "Wsparcie"
322
 
323
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
324
  msgid "Sorry - nothing to found."
325
  msgstr "Przykro nam - nic nie znaleziono."
326
 
327
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
328
  msgid "Download High resolution image"
329
  msgstr ""
330
 
331
+ #: template/gallery-single-template.php:90
332
  msgid "Image "
333
  msgstr ""
334
 
languages/gallery-pt_BR.mo CHANGED
Binary file
languages/gallery-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery Plugin v3.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:40+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
@@ -16,10 +16,11 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ gallery
22
- #: gallery-plugin.php:103 gallery-plugin.php:740
23
  msgid ""
24
  "The following files \"gallery-template.php\" and \"gallery-single-template."
25
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -37,7 +38,7 @@ msgid "Galleries"
37
  msgstr "Galerias"
38
 
39
  # @ gallery
40
- #: gallery-plugin.php:128 gallery-plugin.php:630
41
  msgid "Gallery"
42
  msgstr "Galeria"
43
 
@@ -87,7 +88,7 @@ msgid "Gallery Shortcode"
87
  msgstr "Shortcode da Galeria"
88
 
89
  # @ gallery
90
- #: gallery-plugin.php:208
91
  msgid ""
92
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
93
  "your webserver. Please use the standard WP functional to upload the images "
@@ -98,45 +99,57 @@ msgstr ""
98
  "do WP (media library)"
99
 
100
  # @ gallery
101
- #: gallery-plugin.php:212
102
  msgid "Choose an image to upload:"
103
  msgstr "Escolha uma imagem para enviar:"
104
 
105
  # @ gallery
106
- #: gallery-plugin.php:217
107
  msgid "Please enable JavaScript to use the file uploader."
108
  msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
109
 
110
- #: gallery-plugin.php:224
111
  msgid "Allow download link for images in this gallery"
112
  msgstr ""
113
 
114
- #: gallery-plugin.php:225
115
  msgid ""
116
  "Please use drag and drop function to change the order of the output of "
117
  "images and do not forget to save post."
118
  msgstr ""
119
 
120
- #: gallery-plugin.php:227
121
  msgid "Please do not forget to select "
122
  msgstr ""
123
 
124
  # @ gallery
125
- #: gallery-plugin.php:227 gallery-plugin.php:791
126
  msgid "Attachments order by"
127
  msgstr "Ordem dos anexos por"
128
 
129
  # @ gallery
130
- #: gallery-plugin.php:227
131
  msgid "attachments order"
132
  msgstr ""
133
 
134
- #: gallery-plugin.php:227
135
  msgid "in the settings of the plugin (page "
136
  msgstr ""
137
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  # @ gallery
139
- #: gallery-plugin.php:289
140
  msgid ""
141
  "You can add the Single Gallery on the page or in the post by inserting this "
142
  "shortcode in the content"
@@ -144,80 +157,80 @@ msgstr ""
144
  "Você pode adicionar a Galeria Única na página ou post inserindo este "
145
  "shortcode no conteúdo"
146
 
147
- #: gallery-plugin.php:291
148
  msgid ""
149
  "If you want to take a brief display of the gallery with a link to a Single "
150
  "Sallery Page"
151
  msgstr ""
152
 
153
  # @ gallery
154
- #: gallery-plugin.php:448
155
  msgid "Title"
156
  msgstr "Título"
157
 
158
  # @ gallery
159
- #: gallery-plugin.php:449
160
  msgid "Author"
161
  msgstr "Autor"
162
 
163
  # @ gallery
164
- #: gallery-plugin.php:450
165
  msgid "Photo's"
166
  msgstr "Fotos"
167
 
168
  # @ gallery
169
- #: gallery-plugin.php:451
170
  msgid "Public"
171
  msgstr "Público"
172
 
173
  # @ gallery
174
- #: gallery-plugin.php:452
175
  msgid "Date"
176
  msgstr "Data"
177
 
178
  # @ gallery
179
- #: gallery-plugin.php:599
180
  msgid "Activated plugins"
181
  msgstr "Plugins ativados"
182
 
183
  # @ gallery
184
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
185
  msgid "Read more"
186
  msgstr "Leia mais"
187
 
188
  # @ gallery
189
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
190
  msgid "Settings"
191
  msgstr "Configurações"
192
 
193
  # @ gallery
194
- #: gallery-plugin.php:607
195
  msgid "Installed plugins"
196
  msgstr "Plugins instalados"
197
 
198
  # @ gallery
199
- #: gallery-plugin.php:615
200
  msgid "Recommended plugins"
201
  msgstr "Plugins recomendados"
202
 
203
  # @ gallery
204
- #: gallery-plugin.php:617
205
  msgid "Download"
206
  msgstr "Download"
207
 
208
  # @ default
209
- #: gallery-plugin.php:617
210
  #, php-format
211
  msgid "Install %s"
212
  msgstr "Instalar %s"
213
 
214
  # @ gallery
215
- #: gallery-plugin.php:617
216
  msgid "Install now from wordpress.org"
217
  msgstr "Instale agora via wordpres.org"
218
 
219
  # @ gallery
220
- #: gallery-plugin.php:619
221
  msgid ""
222
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
223
  "fill in our contact form on our site"
@@ -226,22 +239,22 @@ msgstr ""
226
  "preencha o formulário de contar em nosso website."
227
 
228
  # @ gallery
229
- #: gallery-plugin.php:654
230
  msgid "See photo &raquo;"
231
  msgstr "Ver foto &raquo;"
232
 
233
  # @ gallery
234
- #: gallery-plugin.php:733
235
  msgid "Options saved."
236
  msgstr "Opções salvas."
237
 
238
  # @ gallery
239
- #: gallery-plugin.php:747
240
  msgid "Gallery Options"
241
  msgstr "Opções da Galeria"
242
 
243
  # @ gallery
244
- #: gallery-plugin.php:750
245
  msgid ""
246
  "If you would like to add a Single Gallery to your page or post, just copy "
247
  "and put this shortcode onto your post or page content:"
@@ -250,32 +263,32 @@ msgstr ""
250
  "copiar e colocar este shortcode no conteúde de sua página ou post:"
251
 
252
  # @ gallery
253
- #: gallery-plugin.php:754
254
  msgid "The size of the cover album for gallery"
255
  msgstr "Tamanho da imagem de capa do álbum para as galerias"
256
 
257
  # @ gallery
258
- #: gallery-plugin.php:756 gallery-plugin.php:764
259
  msgid "Image size name"
260
  msgstr "Nome do tamanho"
261
 
262
  # @ gallery
263
- #: gallery-plugin.php:757 gallery-plugin.php:765
264
  msgid "Width (in px)"
265
  msgstr "Largura (em px)"
266
 
267
  # @ gallery
268
- #: gallery-plugin.php:758 gallery-plugin.php:766
269
  msgid "Height (in px)"
270
  msgstr "Altura (em px)"
271
 
272
  # @ gallery
273
- #: gallery-plugin.php:762
274
  msgid "Size for gallery image"
275
  msgstr "Tamanho da imagem da galeria"
276
 
277
  # @ gallery
278
- #: gallery-plugin.php:770
279
  msgid ""
280
  "WordPress will create a copy of the post thumbnail with the specified "
281
  "dimensions when you upload a new photo."
@@ -284,37 +297,37 @@ msgstr ""
284
  "especificados quando você enviar uma nova foto."
285
 
286
  # @ gallery
287
- #: gallery-plugin.php:773
288
  msgid "Count images in row"
289
  msgstr "Quantidade de imagens por linha"
290
 
291
  # @ gallery
292
- #: gallery-plugin.php:779
293
  msgid "Start slideshow"
294
  msgstr "Iniciar Apresentação de Slides"
295
 
296
  # @ gallery
297
- #: gallery-plugin.php:785
298
  msgid "Slideshow interval"
299
  msgstr "Intervalo de tempo entre cada Slide"
300
 
301
  # @ gallery
302
- #: gallery-plugin.php:793
303
  msgid "attachment id"
304
  msgstr "id do anexo"
305
 
306
  # @ gallery
307
- #: gallery-plugin.php:794
308
  msgid "attachment title"
309
  msgstr "título do anexo"
310
 
311
  # @ gallery
312
- #: gallery-plugin.php:795
313
  msgid "date"
314
  msgstr "data"
315
 
316
  # @ gallery
317
- #: gallery-plugin.php:796
318
  msgid ""
319
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
320
  "dialog )"
@@ -323,24 +336,24 @@ msgstr ""
323
  "Upload na Galeria de Mídia)"
324
 
325
  # @ gallery
326
- #: gallery-plugin.php:797
327
  msgid "random"
328
  msgstr "aleatório"
329
 
330
  # @ gallery
331
- #: gallery-plugin.php:801
332
  msgid "Attachments order"
333
  msgstr "ordem dos Anexos"
334
 
335
  # @ gallery
336
- #: gallery-plugin.php:803
337
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
338
  msgstr ""
339
  "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; "
340
  "a, b, c)"
341
 
342
  # @ gallery
343
- #: gallery-plugin.php:804
344
  msgid ""
345
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
346
  msgstr ""
@@ -348,50 +361,50 @@ msgstr ""
348
  "1; c, b, a)"
349
 
350
  # @ gallery
351
- #: gallery-plugin.php:808
352
  msgid "Display Return link"
353
  msgstr "Mostrar link de Retorno"
354
 
355
  # @ gallery
356
- #: gallery-plugin.php:814
357
  msgid "Display Return link in shortcode"
358
  msgstr "Mostrar link de Retorno no shortcode"
359
 
360
  # @ gallery
361
- #: gallery-plugin.php:820
362
  msgid "Label for Return link"
363
  msgstr "Etiqueta para o link de Retorno"
364
 
365
  # @ gallery
366
- #: gallery-plugin.php:826
367
  msgid "Label for Read More link"
368
  msgstr ""
369
 
370
  # @ default
371
- #: gallery-plugin.php:834
372
  msgid "Save Changes"
373
  msgstr "Salvar Alterações"
374
 
375
  # @ gallery
376
- #: gallery-plugin.php:847
377
  msgid "FAQ"
378
  msgstr "FAQ"
379
 
380
  # @ gallery
381
- #: gallery-plugin.php:848
382
  msgid "Support"
383
  msgstr "Suporte"
384
 
385
  # @ gallery
386
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
387
  msgid "Sorry - nothing to found."
388
  msgstr "Desculpe - nada foi encontrado."
389
 
390
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
391
  msgid "Download High resolution image"
392
  msgstr ""
393
 
394
  # @ gallery
395
- #: template/gallery-single-template.php:83
396
  msgid "Image "
397
  msgstr "Imagem "
2
  msgstr ""
3
  "Project-Id-Version: Gallery Plugin v3.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:11+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:11+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ gallery
23
+ #: gallery-plugin.php:103 gallery-plugin.php:767
24
  msgid ""
25
  "The following files \"gallery-template.php\" and \"gallery-single-template."
26
  "php\" were not found in the directory of your theme. Please copy them from "
38
  msgstr "Galerias"
39
 
40
  # @ gallery
41
+ #: gallery-plugin.php:128 gallery-plugin.php:657
42
  msgid "Gallery"
43
  msgstr "Galeria"
44
 
88
  msgstr "Shortcode da Galeria"
89
 
90
  # @ gallery
91
+ #: gallery-plugin.php:209
92
  msgid ""
93
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
94
  "your webserver. Please use the standard WP functional to upload the images "
99
  "do WP (media library)"
100
 
101
  # @ gallery
102
+ #: gallery-plugin.php:213
103
  msgid "Choose an image to upload:"
104
  msgstr "Escolha uma imagem para enviar:"
105
 
106
  # @ gallery
107
+ #: gallery-plugin.php:218
108
  msgid "Please enable JavaScript to use the file uploader."
109
  msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
110
 
111
+ #: gallery-plugin.php:225
112
  msgid "Allow download link for images in this gallery"
113
  msgstr ""
114
 
115
+ #: gallery-plugin.php:226
116
  msgid ""
117
  "Please use drag and drop function to change the order of the output of "
118
  "images and do not forget to save post."
119
  msgstr ""
120
 
121
+ #: gallery-plugin.php:228
122
  msgid "Please do not forget to select "
123
  msgstr ""
124
 
125
  # @ gallery
126
+ #: gallery-plugin.php:228 gallery-plugin.php:818
127
  msgid "Attachments order by"
128
  msgstr "Ordem dos anexos por"
129
 
130
  # @ gallery
131
+ #: gallery-plugin.php:228
132
  msgid "attachments order"
133
  msgstr ""
134
 
135
+ #: gallery-plugin.php:228
136
  msgid "in the settings of the plugin (page "
137
  msgstr ""
138
 
139
+ #: gallery-plugin.php:276
140
+ msgid "Link URL"
141
+ msgstr ""
142
+
143
+ #: gallery-plugin.php:276
144
+ msgid "(clicking on image <br /> open the link in new window)"
145
+ msgstr ""
146
+
147
+ #: gallery-plugin.php:277
148
+ msgid "Delete"
149
+ msgstr ""
150
+
151
  # @ gallery
152
+ #: gallery-plugin.php:291
153
  msgid ""
154
  "You can add the Single Gallery on the page or in the post by inserting this "
155
  "shortcode in the content"
157
  "Você pode adicionar a Galeria Única na página ou post inserindo este "
158
  "shortcode no conteúdo"
159
 
160
+ #: gallery-plugin.php:293
161
  msgid ""
162
  "If you want to take a brief display of the gallery with a link to a Single "
163
  "Sallery Page"
164
  msgstr ""
165
 
166
  # @ gallery
167
+ #: gallery-plugin.php:475
168
  msgid "Title"
169
  msgstr "Título"
170
 
171
  # @ gallery
172
+ #: gallery-plugin.php:476
173
  msgid "Author"
174
  msgstr "Autor"
175
 
176
  # @ gallery
177
+ #: gallery-plugin.php:477
178
  msgid "Photo's"
179
  msgstr "Fotos"
180
 
181
  # @ gallery
182
+ #: gallery-plugin.php:478
183
  msgid "Public"
184
  msgstr "Público"
185
 
186
  # @ gallery
187
+ #: gallery-plugin.php:479
188
  msgid "Date"
189
  msgstr "Data"
190
 
191
  # @ gallery
192
+ #: gallery-plugin.php:626
193
  msgid "Activated plugins"
194
  msgstr "Plugins ativados"
195
 
196
  # @ gallery
197
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
198
  msgid "Read more"
199
  msgstr "Leia mais"
200
 
201
  # @ gallery
202
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
203
  msgid "Settings"
204
  msgstr "Configurações"
205
 
206
  # @ gallery
207
+ #: gallery-plugin.php:634
208
  msgid "Installed plugins"
209
  msgstr "Plugins instalados"
210
 
211
  # @ gallery
212
+ #: gallery-plugin.php:642
213
  msgid "Recommended plugins"
214
  msgstr "Plugins recomendados"
215
 
216
  # @ gallery
217
+ #: gallery-plugin.php:644
218
  msgid "Download"
219
  msgstr "Download"
220
 
221
  # @ default
222
+ #: gallery-plugin.php:644
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Instalar %s"
226
 
227
  # @ gallery
228
+ #: gallery-plugin.php:644
229
  msgid "Install now from wordpress.org"
230
  msgstr "Instale agora via wordpres.org"
231
 
232
  # @ gallery
233
+ #: gallery-plugin.php:646
234
  msgid ""
235
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
236
  "fill in our contact form on our site"
239
  "preencha o formulário de contar em nosso website."
240
 
241
  # @ gallery
242
+ #: gallery-plugin.php:681
243
  msgid "See photo &raquo;"
244
  msgstr "Ver foto &raquo;"
245
 
246
  # @ gallery
247
+ #: gallery-plugin.php:760
248
  msgid "Options saved."
249
  msgstr "Opções salvas."
250
 
251
  # @ gallery
252
+ #: gallery-plugin.php:774
253
  msgid "Gallery Options"
254
  msgstr "Opções da Galeria"
255
 
256
  # @ gallery
257
+ #: gallery-plugin.php:777
258
  msgid ""
259
  "If you would like to add a Single Gallery to your page or post, just copy "
260
  "and put this shortcode onto your post or page content:"
263
  "copiar e colocar este shortcode no conteúde de sua página ou post:"
264
 
265
  # @ gallery
266
+ #: gallery-plugin.php:781
267
  msgid "The size of the cover album for gallery"
268
  msgstr "Tamanho da imagem de capa do álbum para as galerias"
269
 
270
  # @ gallery
271
+ #: gallery-plugin.php:783 gallery-plugin.php:791
272
  msgid "Image size name"
273
  msgstr "Nome do tamanho"
274
 
275
  # @ gallery
276
+ #: gallery-plugin.php:784 gallery-plugin.php:792
277
  msgid "Width (in px)"
278
  msgstr "Largura (em px)"
279
 
280
  # @ gallery
281
+ #: gallery-plugin.php:785 gallery-plugin.php:793
282
  msgid "Height (in px)"
283
  msgstr "Altura (em px)"
284
 
285
  # @ gallery
286
+ #: gallery-plugin.php:789
287
  msgid "Size for gallery image"
288
  msgstr "Tamanho da imagem da galeria"
289
 
290
  # @ gallery
291
+ #: gallery-plugin.php:797
292
  msgid ""
293
  "WordPress will create a copy of the post thumbnail with the specified "
294
  "dimensions when you upload a new photo."
297
  "especificados quando você enviar uma nova foto."
298
 
299
  # @ gallery
300
+ #: gallery-plugin.php:800
301
  msgid "Count images in row"
302
  msgstr "Quantidade de imagens por linha"
303
 
304
  # @ gallery
305
+ #: gallery-plugin.php:806
306
  msgid "Start slideshow"
307
  msgstr "Iniciar Apresentação de Slides"
308
 
309
  # @ gallery
310
+ #: gallery-plugin.php:812
311
  msgid "Slideshow interval"
312
  msgstr "Intervalo de tempo entre cada Slide"
313
 
314
  # @ gallery
315
+ #: gallery-plugin.php:820
316
  msgid "attachment id"
317
  msgstr "id do anexo"
318
 
319
  # @ gallery
320
+ #: gallery-plugin.php:821
321
  msgid "attachment title"
322
  msgstr "título do anexo"
323
 
324
  # @ gallery
325
+ #: gallery-plugin.php:822
326
  msgid "date"
327
  msgstr "data"
328
 
329
  # @ gallery
330
+ #: gallery-plugin.php:823
331
  msgid ""
332
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
333
  "dialog )"
336
  "Upload na Galeria de Mídia)"
337
 
338
  # @ gallery
339
+ #: gallery-plugin.php:824
340
  msgid "random"
341
  msgstr "aleatório"
342
 
343
  # @ gallery
344
+ #: gallery-plugin.php:828
345
  msgid "Attachments order"
346
  msgstr "ordem dos Anexos"
347
 
348
  # @ gallery
349
+ #: gallery-plugin.php:830
350
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
351
  msgstr ""
352
  "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; "
353
  "a, b, c)"
354
 
355
  # @ gallery
356
+ #: gallery-plugin.php:831
357
  msgid ""
358
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
359
  msgstr ""
361
  "1; c, b, a)"
362
 
363
  # @ gallery
364
+ #: gallery-plugin.php:835
365
  msgid "Display Return link"
366
  msgstr "Mostrar link de Retorno"
367
 
368
  # @ gallery
369
+ #: gallery-plugin.php:841
370
  msgid "Display Return link in shortcode"
371
  msgstr "Mostrar link de Retorno no shortcode"
372
 
373
  # @ gallery
374
+ #: gallery-plugin.php:847
375
  msgid "Label for Return link"
376
  msgstr "Etiqueta para o link de Retorno"
377
 
378
  # @ gallery
379
+ #: gallery-plugin.php:853
380
  msgid "Label for Read More link"
381
  msgstr ""
382
 
383
  # @ default
384
+ #: gallery-plugin.php:861
385
  msgid "Save Changes"
386
  msgstr "Salvar Alterações"
387
 
388
  # @ gallery
389
+ #: gallery-plugin.php:874
390
  msgid "FAQ"
391
  msgstr "FAQ"
392
 
393
  # @ gallery
394
+ #: gallery-plugin.php:875
395
  msgid "Support"
396
  msgstr "Suporte"
397
 
398
  # @ gallery
399
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
400
  msgid "Sorry - nothing to found."
401
  msgstr "Desculpe - nada foi encontrado."
402
 
403
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
404
  msgid "Download High resolution image"
405
  msgstr ""
406
 
407
  # @ gallery
408
+ #: template/gallery-single-template.php:90
409
  msgid "Image "
410
  msgstr "Imagem "
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:40+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_x;esc_html__\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -31,7 +32,7 @@ msgstr ""
31
  msgid "Galleries"
32
  msgstr "Галереи"
33
 
34
- #: gallery-plugin.php:128 gallery-plugin.php:630
35
  msgid "Gallery"
36
  msgstr "Галерея"
37
 
@@ -71,7 +72,7 @@ msgstr "Загрузить файлы"
71
  msgid "Gallery Shortcode"
72
  msgstr "Шорткод Для Галереи"
73
 
74
- #: gallery-plugin.php:208
75
  msgid ""
76
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
77
  "your webserver. Please use the standard WP functional to upload the images "
@@ -81,41 +82,54 @@ msgstr ""
81
  "files) закрыт для записи на вашем веб-сервере. Пожалуйста, воспользуйтесь "
82
  "стандартным функционалом WP для загрузки изображения (медиа-библиотека)"
83
 
84
- #: gallery-plugin.php:212
85
  msgid "Choose an image to upload:"
86
  msgstr "Выбрать файлы для загрузки:"
87
 
88
- #: gallery-plugin.php:217
89
  msgid "Please enable JavaScript to use the file uploader."
90
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
91
 
92
- #: gallery-plugin.php:224
93
  msgid "Allow download link for images in this gallery"
94
- msgstr ""
95
 
96
- #: gallery-plugin.php:225
97
  msgid ""
98
  "Please use drag and drop function to change the order of the output of "
99
  "images and do not forget to save post."
100
  msgstr ""
101
 
102
- #: gallery-plugin.php:227
103
  msgid "Please do not forget to select "
104
  msgstr ""
105
 
106
- #: gallery-plugin.php:227 gallery-plugin.php:791
107
  msgid "Attachments order by"
108
  msgstr "Изображения сортируются по"
109
 
110
- #: gallery-plugin.php:227
111
  msgid "attachments order"
112
  msgstr "Сортировать изображения"
113
 
114
- #: gallery-plugin.php:227
115
  msgid "in the settings of the plugin (page "
 
 
 
 
 
 
 
 
116
  msgstr ""
 
 
 
 
 
117
 
118
- #: gallery-plugin.php:289
119
  msgid ""
120
  "You can add the Single Gallery on the page or in the post by inserting this "
121
  "shortcode in the content"
@@ -123,66 +137,66 @@ msgstr ""
123
  "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и "
124
  "поместить этот шорткод в контент поста или страницы:"
125
 
126
- #: gallery-plugin.php:291
127
  msgid ""
128
  "If you want to take a brief display of the gallery with a link to a Single "
129
  "Sallery Page"
130
  msgstr ""
131
 
132
- #: gallery-plugin.php:448
133
  msgid "Title"
134
  msgstr "Название"
135
 
136
- #: gallery-plugin.php:449
137
  msgid "Author"
138
  msgstr "Автор"
139
 
140
- #: gallery-plugin.php:450
141
  msgid "Photo's"
142
  msgstr "Фото"
143
 
144
- #: gallery-plugin.php:451
145
  msgid "Public"
146
  msgstr "Опубликование"
147
 
148
- #: gallery-plugin.php:452
149
  msgid "Date"
150
  msgstr "Дата"
151
 
152
- #: gallery-plugin.php:599
153
  msgid "Activated plugins"
154
  msgstr "Активированные плагины"
155
 
156
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
157
  msgid "Read more"
158
  msgstr "Подробнее..."
159
 
160
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
161
  msgid "Settings"
162
  msgstr "Настройки"
163
 
164
- #: gallery-plugin.php:607
165
  msgid "Installed plugins"
166
  msgstr "Установленные плагины"
167
 
168
- #: gallery-plugin.php:615
169
  msgid "Recommended plugins"
170
  msgstr "Рекомендованные к установке плагины"
171
 
172
- #: gallery-plugin.php:617
173
  msgid "Download"
174
  msgstr "Скачать"
175
 
176
- #: gallery-plugin.php:617
177
  #, php-format
178
  msgid "Install %s"
179
  msgstr "Установлено %s"
180
 
181
- #: gallery-plugin.php:617
182
  msgid "Install now from wordpress.org"
183
  msgstr "Установить с wordpress.org"
184
 
185
- #: gallery-plugin.php:619
186
  msgid ""
187
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
188
  "fill in our contact form on our site"
@@ -190,19 +204,19 @@ msgstr ""
190
  "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или "
191
  "заполните контактную форму на нашем сайте"
192
 
193
- #: gallery-plugin.php:654
194
  msgid "See photo &raquo;"
195
  msgstr "Смотреть фотографии &raquo;"
196
 
197
- #: gallery-plugin.php:733
198
  msgid "Options saved."
199
  msgstr "Опции сохранены"
200
 
201
- #: gallery-plugin.php:747
202
  msgid "Gallery Options"
203
  msgstr "Настройки Галереи"
204
 
205
- #: gallery-plugin.php:750
206
  msgid ""
207
  "If you would like to add a Single Gallery to your page or post, just copy "
208
  "and put this shortcode onto your post or page content:"
@@ -210,27 +224,27 @@ msgstr ""
210
  "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто "
211
  "скопируйте и поместить этот шорткод в контент поста или страницы:"
212
 
213
- #: gallery-plugin.php:754
214
  msgid "The size of the cover album for gallery"
215
  msgstr "Размер изображения для обложки альбома галереи"
216
 
217
- #: gallery-plugin.php:756 gallery-plugin.php:764
218
  msgid "Image size name"
219
  msgstr "Название размера изображение"
220
 
221
- #: gallery-plugin.php:757 gallery-plugin.php:765
222
  msgid "Width (in px)"
223
  msgstr "Ширина (в px)"
224
 
225
- #: gallery-plugin.php:758 gallery-plugin.php:766
226
  msgid "Height (in px)"
227
  msgstr "Высота (в px)"
228
 
229
- #: gallery-plugin.php:762
230
  msgid "Size for gallery image"
231
  msgstr "Размер изображений Галереи"
232
 
233
- #: gallery-plugin.php:770
234
  msgid ""
235
  "WordPress will create a copy of the post thumbnail with the specified "
236
  "dimensions when you upload a new photo."
@@ -238,31 +252,31 @@ msgstr ""
238
  "WordPress создаст новую миниатюру с заданными размерами при загрузке новой "
239
  "фотографии."
240
 
241
- #: gallery-plugin.php:773
242
  msgid "Count images in row"
243
  msgstr "Количество изображений в строке"
244
 
245
- #: gallery-plugin.php:779
246
  msgid "Start slideshow"
247
  msgstr "Начать слайдшоу"
248
 
249
- #: gallery-plugin.php:785
250
  msgid "Slideshow interval"
251
  msgstr "Интервал времени при показе слайдшоу"
252
 
253
- #: gallery-plugin.php:793
254
  msgid "attachment id"
255
  msgstr "id изображения"
256
 
257
- #: gallery-plugin.php:794
258
  msgid "attachment title"
259
  msgstr "названию изображения"
260
 
261
- #: gallery-plugin.php:795
262
  msgid "date"
263
  msgstr "дате"
264
 
265
- #: gallery-plugin.php:796
266
  msgid ""
267
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
268
  "dialog )"
@@ -270,64 +284,64 @@ msgstr ""
270
  "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / "
271
  "Upload Media Gallery)"
272
 
273
- #: gallery-plugin.php:797
274
  msgid "random"
275
  msgstr "произвольно"
276
 
277
- #: gallery-plugin.php:801
278
  msgid "Attachments order"
279
  msgstr "Сортировать изображения"
280
 
281
- #: gallery-plugin.php:803
282
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
283
  msgstr ""
284
  "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, "
285
  "а, б, в)"
286
 
287
- #: gallery-plugin.php:804
288
  msgid ""
289
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
290
  msgstr ""
291
  "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, "
292
  "C, B)"
293
 
294
- #: gallery-plugin.php:808
295
  msgid "Display Return link"
296
  msgstr "Отображать ссылку Вернуться"
297
 
298
- #: gallery-plugin.php:814
299
  msgid "Display Return link in shortcode"
300
  msgstr "Отображаться ссылку Вернуться в шорткоде"
301
 
302
- #: gallery-plugin.php:820
303
  msgid "Label for Return link"
304
  msgstr "Текст для ссылки Вернуться"
305
 
306
- #: gallery-plugin.php:826
307
  msgid "Label for Read More link"
308
  msgstr "Текст для ссылки Читать далее"
309
 
310
- #: gallery-plugin.php:834
311
  msgid "Save Changes"
312
- msgstr ""
313
 
314
- #: gallery-plugin.php:847
315
  msgid "FAQ"
316
  msgstr "FAQ"
317
 
318
- #: gallery-plugin.php:848
319
  msgid "Support"
320
  msgstr "Поддержка"
321
 
322
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
323
  msgid "Sorry - nothing to found."
324
  msgstr "Извините, ничего не найдено."
325
 
326
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
327
  msgid "Download High resolution image"
328
- msgstr ""
329
 
330
- #: template/gallery-single-template.php:83
331
  msgid "Image "
332
  msgstr "Изображение"
333
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:12+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
13
  "X-Poedit-KeywordsList: __;_e;_x;esc_html__\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
32
  msgid "Galleries"
33
  msgstr "Галереи"
34
 
35
+ #: gallery-plugin.php:128 gallery-plugin.php:657
36
  msgid "Gallery"
37
  msgstr "Галерея"
38
 
72
  msgid "Gallery Shortcode"
73
  msgstr "Шорткод Для Галереи"
74
 
75
+ #: gallery-plugin.php:209
76
  msgid ""
77
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
78
  "your webserver. Please use the standard WP functional to upload the images "
82
  "files) закрыт для записи на вашем веб-сервере. Пожалуйста, воспользуйтесь "
83
  "стандартным функционалом WP для загрузки изображения (медиа-библиотека)"
84
 
85
+ #: gallery-plugin.php:213
86
  msgid "Choose an image to upload:"
87
  msgstr "Выбрать файлы для загрузки:"
88
 
89
+ #: gallery-plugin.php:218
90
  msgid "Please enable JavaScript to use the file uploader."
91
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
92
 
93
+ #: gallery-plugin.php:225
94
  msgid "Allow download link for images in this gallery"
95
+ msgstr "Разрешить ссылку для загрузки для всех изображений в этой галерее"
96
 
97
+ #: gallery-plugin.php:226
98
  msgid ""
99
  "Please use drag and drop function to change the order of the output of "
100
  "images and do not forget to save post."
101
  msgstr ""
102
 
103
+ #: gallery-plugin.php:228
104
  msgid "Please do not forget to select "
105
  msgstr ""
106
 
107
+ #: gallery-plugin.php:228 gallery-plugin.php:818
108
  msgid "Attachments order by"
109
  msgstr "Изображения сортируются по"
110
 
111
+ #: gallery-plugin.php:228
112
  msgid "attachments order"
113
  msgstr "Сортировать изображения"
114
 
115
+ #: gallery-plugin.php:228
116
  msgid "in the settings of the plugin (page "
117
+ msgstr "на странице натсроек плагина (страница "
118
+
119
+ #: gallery-plugin.php:276
120
+ msgid "Link URL"
121
+ msgstr "Ссылка урл"
122
+
123
+ #: gallery-plugin.php:276
124
+ msgid "(clicking on image <br /> open the link in new window)"
125
  msgstr ""
126
+ "(нажатие на изображение открывает <br /> данную ссылку в новом окне браузера)"
127
+
128
+ #: gallery-plugin.php:277
129
+ msgid "Delete"
130
+ msgstr "Удалить"
131
 
132
+ #: gallery-plugin.php:291
133
  msgid ""
134
  "You can add the Single Gallery on the page or in the post by inserting this "
135
  "shortcode in the content"
137
  "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и "
138
  "поместить этот шорткод в контент поста или страницы:"
139
 
140
+ #: gallery-plugin.php:293
141
  msgid ""
142
  "If you want to take a brief display of the gallery with a link to a Single "
143
  "Sallery Page"
144
  msgstr ""
145
 
146
+ #: gallery-plugin.php:475
147
  msgid "Title"
148
  msgstr "Название"
149
 
150
+ #: gallery-plugin.php:476
151
  msgid "Author"
152
  msgstr "Автор"
153
 
154
+ #: gallery-plugin.php:477
155
  msgid "Photo's"
156
  msgstr "Фото"
157
 
158
+ #: gallery-plugin.php:478
159
  msgid "Public"
160
  msgstr "Опубликование"
161
 
162
+ #: gallery-plugin.php:479
163
  msgid "Date"
164
  msgstr "Дата"
165
 
166
+ #: gallery-plugin.php:626
167
  msgid "Activated plugins"
168
  msgstr "Активированные плагины"
169
 
170
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
171
  msgid "Read more"
172
  msgstr "Подробнее..."
173
 
174
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
175
  msgid "Settings"
176
  msgstr "Настройки"
177
 
178
+ #: gallery-plugin.php:634
179
  msgid "Installed plugins"
180
  msgstr "Установленные плагины"
181
 
182
+ #: gallery-plugin.php:642
183
  msgid "Recommended plugins"
184
  msgstr "Рекомендованные к установке плагины"
185
 
186
+ #: gallery-plugin.php:644
187
  msgid "Download"
188
  msgstr "Скачать"
189
 
190
+ #: gallery-plugin.php:644
191
  #, php-format
192
  msgid "Install %s"
193
  msgstr "Установлено %s"
194
 
195
+ #: gallery-plugin.php:644
196
  msgid "Install now from wordpress.org"
197
  msgstr "Установить с wordpress.org"
198
 
199
+ #: gallery-plugin.php:646
200
  msgid ""
201
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
202
  "fill in our contact form on our site"
204
  "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или "
205
  "заполните контактную форму на нашем сайте"
206
 
207
+ #: gallery-plugin.php:681
208
  msgid "See photo &raquo;"
209
  msgstr "Смотреть фотографии &raquo;"
210
 
211
+ #: gallery-plugin.php:760
212
  msgid "Options saved."
213
  msgstr "Опции сохранены"
214
 
215
+ #: gallery-plugin.php:774
216
  msgid "Gallery Options"
217
  msgstr "Настройки Галереи"
218
 
219
+ #: gallery-plugin.php:777
220
  msgid ""
221
  "If you would like to add a Single Gallery to your page or post, just copy "
222
  "and put this shortcode onto your post or page content:"
224
  "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто "
225
  "скопируйте и поместить этот шорткод в контент поста или страницы:"
226
 
227
+ #: gallery-plugin.php:781
228
  msgid "The size of the cover album for gallery"
229
  msgstr "Размер изображения для обложки альбома галереи"
230
 
231
+ #: gallery-plugin.php:783 gallery-plugin.php:791
232
  msgid "Image size name"
233
  msgstr "Название размера изображение"
234
 
235
+ #: gallery-plugin.php:784 gallery-plugin.php:792
236
  msgid "Width (in px)"
237
  msgstr "Ширина (в px)"
238
 
239
+ #: gallery-plugin.php:785 gallery-plugin.php:793
240
  msgid "Height (in px)"
241
  msgstr "Высота (в px)"
242
 
243
+ #: gallery-plugin.php:789
244
  msgid "Size for gallery image"
245
  msgstr "Размер изображений Галереи"
246
 
247
+ #: gallery-plugin.php:797
248
  msgid ""
249
  "WordPress will create a copy of the post thumbnail with the specified "
250
  "dimensions when you upload a new photo."
252
  "WordPress создаст новую миниатюру с заданными размерами при загрузке новой "
253
  "фотографии."
254
 
255
+ #: gallery-plugin.php:800
256
  msgid "Count images in row"
257
  msgstr "Количество изображений в строке"
258
 
259
+ #: gallery-plugin.php:806
260
  msgid "Start slideshow"
261
  msgstr "Начать слайдшоу"
262
 
263
+ #: gallery-plugin.php:812
264
  msgid "Slideshow interval"
265
  msgstr "Интервал времени при показе слайдшоу"
266
 
267
+ #: gallery-plugin.php:820
268
  msgid "attachment id"
269
  msgstr "id изображения"
270
 
271
+ #: gallery-plugin.php:821
272
  msgid "attachment title"
273
  msgstr "названию изображения"
274
 
275
+ #: gallery-plugin.php:822
276
  msgid "date"
277
  msgstr "дате"
278
 
279
+ #: gallery-plugin.php:823
280
  msgid ""
281
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
282
  "dialog )"
284
  "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / "
285
  "Upload Media Gallery)"
286
 
287
+ #: gallery-plugin.php:824
288
  msgid "random"
289
  msgstr "произвольно"
290
 
291
+ #: gallery-plugin.php:828
292
  msgid "Attachments order"
293
  msgstr "Сортировать изображения"
294
 
295
+ #: gallery-plugin.php:830
296
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
297
  msgstr ""
298
  "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, "
299
  "а, б, в)"
300
 
301
+ #: gallery-plugin.php:831
302
  msgid ""
303
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
304
  msgstr ""
305
  "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, "
306
  "C, B)"
307
 
308
+ #: gallery-plugin.php:835
309
  msgid "Display Return link"
310
  msgstr "Отображать ссылку Вернуться"
311
 
312
+ #: gallery-plugin.php:841
313
  msgid "Display Return link in shortcode"
314
  msgstr "Отображаться ссылку Вернуться в шорткоде"
315
 
316
+ #: gallery-plugin.php:847
317
  msgid "Label for Return link"
318
  msgstr "Текст для ссылки Вернуться"
319
 
320
+ #: gallery-plugin.php:853
321
  msgid "Label for Read More link"
322
  msgstr "Текст для ссылки Читать далее"
323
 
324
+ #: gallery-plugin.php:861
325
  msgid "Save Changes"
326
+ msgstr "Сохранить изменения"
327
 
328
+ #: gallery-plugin.php:874
329
  msgid "FAQ"
330
  msgstr "FAQ"
331
 
332
+ #: gallery-plugin.php:875
333
  msgid "Support"
334
  msgstr "Поддержка"
335
 
336
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
337
  msgid "Sorry - nothing to found."
338
  msgstr "Извините, ничего не найдено."
339
 
340
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
341
  msgid "Download High resolution image"
342
+ msgstr "Скачать изображение в высоком разрешении"
343
 
344
+ #: template/gallery-single-template.php:90
345
  msgid "Image "
346
  msgstr "Изображение"
347
 
languages/gallery-uk.mo CHANGED
Binary file
languages/gallery-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-10-05 17:40+0200\n"
6
- "PO-Revision-Date: 2012-10-05 17:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: uk_UA\n"
@@ -13,9 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: gallery-plugin.php:103 gallery-plugin.php:740
19
  msgid ""
20
  "The following files \"gallery-template.php\" and \"gallery-single-template."
21
  "php\" were not found in the directory of your theme. Please copy them from "
@@ -27,7 +28,7 @@ msgstr ""
27
  msgid "Galleries"
28
  msgstr "Галереi"
29
 
30
- #: gallery-plugin.php:128 gallery-plugin.php:630
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
@@ -67,113 +68,125 @@ msgstr "Завантажити файл"
67
  msgid "Gallery Shortcode"
68
  msgstr "Шорткод галереї"
69
 
70
- #: gallery-plugin.php:208
71
  msgid ""
72
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
73
  "your webserver. Please use the standard WP functional to upload the images "
74
  "(media library)"
75
  msgstr ""
76
 
77
- #: gallery-plugin.php:212
78
  msgid "Choose an image to upload:"
79
  msgstr "Вибрати скріншот, щоб завантажити:"
80
 
81
- #: gallery-plugin.php:217
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
84
 
85
- #: gallery-plugin.php:224
86
  msgid "Allow download link for images in this gallery"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:225
90
  msgid ""
91
  "Please use drag and drop function to change the order of the output of "
92
  "images and do not forget to save post."
93
  msgstr ""
94
 
95
- #: gallery-plugin.php:227
96
  msgid "Please do not forget to select "
97
  msgstr ""
98
 
99
- #: gallery-plugin.php:227 gallery-plugin.php:791
100
  msgid "Attachments order by"
101
  msgstr ""
102
 
103
- #: gallery-plugin.php:227
104
  msgid "attachments order"
105
  msgstr ""
106
 
107
- #: gallery-plugin.php:227
108
  msgid "in the settings of the plugin (page "
109
  msgstr ""
110
 
111
- #: gallery-plugin.php:289
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid ""
113
  "You can add the Single Gallery on the page or in the post by inserting this "
114
  "shortcode in the content"
115
  msgstr ""
116
 
117
- #: gallery-plugin.php:291
118
  msgid ""
119
  "If you want to take a brief display of the gallery with a link to a Single "
120
  "Sallery Page"
121
  msgstr ""
122
 
123
- #: gallery-plugin.php:448
124
  msgid "Title"
125
  msgstr "Назва"
126
 
127
- #: gallery-plugin.php:449
128
  msgid "Author"
129
  msgstr "Автор "
130
 
131
- #: gallery-plugin.php:450
132
  msgid "Photo's"
133
  msgstr "Фото "
134
 
135
- #: gallery-plugin.php:451
136
  msgid "Public"
137
  msgstr "Громадськості"
138
 
139
- #: gallery-plugin.php:452
140
  msgid "Date"
141
  msgstr "Дата "
142
 
143
- #: gallery-plugin.php:599
144
  msgid "Activated plugins"
145
  msgstr "Активоване плагіни"
146
 
147
- #: gallery-plugin.php:601 gallery-plugin.php:609 gallery-plugin.php:617
148
  msgid "Read more"
149
  msgstr "Читати далі"
150
 
151
- #: gallery-plugin.php:601 gallery-plugin.php:846 gallery-plugin.php:861
152
  msgid "Settings"
153
  msgstr "Параметри"
154
 
155
- #: gallery-plugin.php:607
156
  msgid "Installed plugins"
157
  msgstr "Встановлених модулів"
158
 
159
- #: gallery-plugin.php:615
160
  msgid "Recommended plugins"
161
  msgstr "Плагіни Рекомендовані"
162
 
163
- #: gallery-plugin.php:617
164
  msgid "Download"
165
  msgstr "Завантажити"
166
 
167
- #: gallery-plugin.php:617
168
  #, php-format
169
  msgid "Install %s"
170
  msgstr "Установка %s"
171
 
172
- #: gallery-plugin.php:617
173
  msgid "Install now from wordpress.org"
174
  msgstr "Установити зараз від wordpress.org"
175
 
176
- #: gallery-plugin.php:619
177
  msgid ""
178
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
179
  "fill in our contact form on our site"
@@ -181,45 +194,45 @@ msgstr ""
181
  "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через "
182
  "plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
183
 
184
- #: gallery-plugin.php:654
185
  msgid "See photo &raquo;"
186
  msgstr "Дивитися фото &raquo;"
187
 
188
- #: gallery-plugin.php:733
189
  msgid "Options saved."
190
  msgstr "Параметри зберігаються."
191
 
192
- #: gallery-plugin.php:747
193
  msgid "Gallery Options"
194
  msgstr "Параметри галереї"
195
 
196
- #: gallery-plugin.php:750
197
  msgid ""
198
  "If you would like to add a Single Gallery to your page or post, just copy "
199
  "and put this shortcode onto your post or page content:"
200
  msgstr ""
201
 
202
- #: gallery-plugin.php:754
203
  msgid "The size of the cover album for gallery"
204
  msgstr "Розмір обкладинки альбому для галереї"
205
 
206
- #: gallery-plugin.php:756 gallery-plugin.php:764
207
  msgid "Image size name"
208
  msgstr "Ім'я розмір зображення"
209
 
210
- #: gallery-plugin.php:757 gallery-plugin.php:765
211
  msgid "Width (in px)"
212
  msgstr "Ширина (в px)"
213
 
214
- #: gallery-plugin.php:758 gallery-plugin.php:766
215
  msgid "Height (in px)"
216
  msgstr "Висота (в px)"
217
 
218
- #: gallery-plugin.php:762
219
  msgid "Size for gallery image"
220
  msgstr "Розмір зображення галерея"
221
 
222
- #: gallery-plugin.php:770
223
  msgid ""
224
  "WordPress will create a copy of the post thumbnail with the specified "
225
  "dimensions when you upload a new photo."
@@ -227,90 +240,90 @@ msgstr ""
227
  "WordPress створить копію ескізу пост з заданими розмірами, коли ви "
228
  "завантажити нову фотографію."
229
 
230
- #: gallery-plugin.php:773
231
  msgid "Count images in row"
232
  msgstr "Кількість зображень у рядку"
233
 
234
- #: gallery-plugin.php:779
235
  msgid "Start slideshow"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:785
239
  msgid "Slideshow interval"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:793
243
  msgid "attachment id"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:794
247
  msgid "attachment title"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:795
251
  msgid "date"
252
  msgstr "Дата"
253
 
254
- #: gallery-plugin.php:796
255
  msgid ""
256
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
257
  "dialog )"
258
  msgstr ""
259
 
260
- #: gallery-plugin.php:797
261
  msgid "random"
262
  msgstr ""
263
 
264
- #: gallery-plugin.php:801
265
  msgid "Attachments order"
266
  msgstr ""
267
 
268
- #: gallery-plugin.php:803
269
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
270
  msgstr ""
271
 
272
- #: gallery-plugin.php:804
273
  msgid ""
274
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
275
  msgstr ""
276
 
277
- #: gallery-plugin.php:808
278
  msgid "Display Return link"
279
  msgstr ""
280
 
281
- #: gallery-plugin.php:814
282
  msgid "Display Return link in shortcode"
283
  msgstr ""
284
 
285
- #: gallery-plugin.php:820
286
  msgid "Label for Return link"
287
  msgstr ""
288
 
289
- #: gallery-plugin.php:826
290
  msgid "Label for Read More link"
291
  msgstr ""
292
 
293
- #: gallery-plugin.php:834
294
  msgid "Save Changes"
295
  msgstr "Зберегти зміни"
296
 
297
- #: gallery-plugin.php:847
298
  msgid "FAQ"
299
  msgstr "FAQ "
300
 
301
- #: gallery-plugin.php:848
302
  msgid "Support"
303
  msgstr "Підтримка"
304
 
305
- #: gallery-plugin.php:1011 template/gallery-single-template.php:61
306
  msgid "Sorry - nothing to found."
307
  msgstr "Вибачте - нічого не знайдено."
308
 
309
- #: gallery-plugin.php:1030 template/gallery-single-template.php:83
310
  msgid "Download High resolution image"
311
  msgstr ""
312
 
313
- #: template/gallery-single-template.php:83
314
  msgid "Image "
315
  msgstr ""
316
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-23 16:14+0200\n"
6
+ "PO-Revision-Date: 2012-10-23 16:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: uk_UA\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: gallery-plugin.php:103 gallery-plugin.php:767
20
  msgid ""
21
  "The following files \"gallery-template.php\" and \"gallery-single-template."
22
  "php\" were not found in the directory of your theme. Please copy them from "
28
  msgid "Galleries"
29
  msgstr "Галереi"
30
 
31
+ #: gallery-plugin.php:128 gallery-plugin.php:657
32
  msgid "Gallery"
33
  msgstr "Галерея"
34
 
68
  msgid "Gallery Shortcode"
69
  msgstr "Шорткод галереї"
70
 
71
+ #: gallery-plugin.php:209
72
  msgid ""
73
  "The gallery temp directory (gallery-plugin/upload/files) not writeable by "
74
  "your webserver. Please use the standard WP functional to upload the images "
75
  "(media library)"
76
  msgstr ""
77
 
78
+ #: gallery-plugin.php:213
79
  msgid "Choose an image to upload:"
80
  msgstr "Вибрати скріншот, щоб завантажити:"
81
 
82
+ #: gallery-plugin.php:218
83
  msgid "Please enable JavaScript to use the file uploader."
84
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
85
 
86
+ #: gallery-plugin.php:225
87
  msgid "Allow download link for images in this gallery"
88
  msgstr ""
89
 
90
+ #: gallery-plugin.php:226
91
  msgid ""
92
  "Please use drag and drop function to change the order of the output of "
93
  "images and do not forget to save post."
94
  msgstr ""
95
 
96
+ #: gallery-plugin.php:228
97
  msgid "Please do not forget to select "
98
  msgstr ""
99
 
100
+ #: gallery-plugin.php:228 gallery-plugin.php:818
101
  msgid "Attachments order by"
102
  msgstr ""
103
 
104
+ #: gallery-plugin.php:228
105
  msgid "attachments order"
106
  msgstr ""
107
 
108
+ #: gallery-plugin.php:228
109
  msgid "in the settings of the plugin (page "
110
  msgstr ""
111
 
112
+ #: gallery-plugin.php:276
113
+ msgid "Link URL"
114
+ msgstr ""
115
+
116
+ #: gallery-plugin.php:276
117
+ msgid "(clicking on image <br /> open the link in new window)"
118
+ msgstr ""
119
+
120
+ #: gallery-plugin.php:277
121
+ msgid "Delete"
122
+ msgstr ""
123
+
124
+ #: gallery-plugin.php:291
125
  msgid ""
126
  "You can add the Single Gallery on the page or in the post by inserting this "
127
  "shortcode in the content"
128
  msgstr ""
129
 
130
+ #: gallery-plugin.php:293
131
  msgid ""
132
  "If you want to take a brief display of the gallery with a link to a Single "
133
  "Sallery Page"
134
  msgstr ""
135
 
136
+ #: gallery-plugin.php:475
137
  msgid "Title"
138
  msgstr "Назва"
139
 
140
+ #: gallery-plugin.php:476
141
  msgid "Author"
142
  msgstr "Автор "
143
 
144
+ #: gallery-plugin.php:477
145
  msgid "Photo's"
146
  msgstr "Фото "
147
 
148
+ #: gallery-plugin.php:478
149
  msgid "Public"
150
  msgstr "Громадськості"
151
 
152
+ #: gallery-plugin.php:479
153
  msgid "Date"
154
  msgstr "Дата "
155
 
156
+ #: gallery-plugin.php:626
157
  msgid "Activated plugins"
158
  msgstr "Активоване плагіни"
159
 
160
+ #: gallery-plugin.php:628 gallery-plugin.php:636 gallery-plugin.php:644
161
  msgid "Read more"
162
  msgstr "Читати далі"
163
 
164
+ #: gallery-plugin.php:628 gallery-plugin.php:873 gallery-plugin.php:888
165
  msgid "Settings"
166
  msgstr "Параметри"
167
 
168
+ #: gallery-plugin.php:634
169
  msgid "Installed plugins"
170
  msgstr "Встановлених модулів"
171
 
172
+ #: gallery-plugin.php:642
173
  msgid "Recommended plugins"
174
  msgstr "Плагіни Рекомендовані"
175
 
176
+ #: gallery-plugin.php:644
177
  msgid "Download"
178
  msgstr "Завантажити"
179
 
180
+ #: gallery-plugin.php:644
181
  #, php-format
182
  msgid "Install %s"
183
  msgstr "Установка %s"
184
 
185
+ #: gallery-plugin.php:644
186
  msgid "Install now from wordpress.org"
187
  msgstr "Установити зараз від wordpress.org"
188
 
189
+ #: gallery-plugin.php:646
190
  msgid ""
191
  "If you have any questions, please contact us via plugin@bestwebsoft.com or "
192
  "fill in our contact form on our site"
194
  "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через "
195
  "plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
196
 
197
+ #: gallery-plugin.php:681
198
  msgid "See photo &raquo;"
199
  msgstr "Дивитися фото &raquo;"
200
 
201
+ #: gallery-plugin.php:760
202
  msgid "Options saved."
203
  msgstr "Параметри зберігаються."
204
 
205
+ #: gallery-plugin.php:774
206
  msgid "Gallery Options"
207
  msgstr "Параметри галереї"
208
 
209
+ #: gallery-plugin.php:777
210
  msgid ""
211
  "If you would like to add a Single Gallery to your page or post, just copy "
212
  "and put this shortcode onto your post or page content:"
213
  msgstr ""
214
 
215
+ #: gallery-plugin.php:781
216
  msgid "The size of the cover album for gallery"
217
  msgstr "Розмір обкладинки альбому для галереї"
218
 
219
+ #: gallery-plugin.php:783 gallery-plugin.php:791
220
  msgid "Image size name"
221
  msgstr "Ім'я розмір зображення"
222
 
223
+ #: gallery-plugin.php:784 gallery-plugin.php:792
224
  msgid "Width (in px)"
225
  msgstr "Ширина (в px)"
226
 
227
+ #: gallery-plugin.php:785 gallery-plugin.php:793
228
  msgid "Height (in px)"
229
  msgstr "Висота (в px)"
230
 
231
+ #: gallery-plugin.php:789
232
  msgid "Size for gallery image"
233
  msgstr "Розмір зображення галерея"
234
 
235
+ #: gallery-plugin.php:797
236
  msgid ""
237
  "WordPress will create a copy of the post thumbnail with the specified "
238
  "dimensions when you upload a new photo."
240
  "WordPress створить копію ескізу пост з заданими розмірами, коли ви "
241
  "завантажити нову фотографію."
242
 
243
+ #: gallery-plugin.php:800
244
  msgid "Count images in row"
245
  msgstr "Кількість зображень у рядку"
246
 
247
+ #: gallery-plugin.php:806
248
  msgid "Start slideshow"
249
  msgstr ""
250
 
251
+ #: gallery-plugin.php:812
252
  msgid "Slideshow interval"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:820
256
  msgid "attachment id"
257
  msgstr ""
258
 
259
+ #: gallery-plugin.php:821
260
  msgid "attachment title"
261
  msgstr ""
262
 
263
+ #: gallery-plugin.php:822
264
  msgid "date"
265
  msgstr "Дата"
266
 
267
+ #: gallery-plugin.php:823
268
  msgid ""
269
  "attachments order (the integer fields in the Insert / Upload Media Gallery "
270
  "dialog )"
271
  msgstr ""
272
 
273
+ #: gallery-plugin.php:824
274
  msgid "random"
275
  msgstr ""
276
 
277
+ #: gallery-plugin.php:828
278
  msgid "Attachments order"
279
  msgstr ""
280
 
281
+ #: gallery-plugin.php:830
282
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
283
  msgstr ""
284
 
285
+ #: gallery-plugin.php:831
286
  msgid ""
287
  "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:835
291
  msgid "Display Return link"
292
  msgstr ""
293
 
294
+ #: gallery-plugin.php:841
295
  msgid "Display Return link in shortcode"
296
  msgstr ""
297
 
298
+ #: gallery-plugin.php:847
299
  msgid "Label for Return link"
300
  msgstr ""
301
 
302
+ #: gallery-plugin.php:853
303
  msgid "Label for Read More link"
304
  msgstr ""
305
 
306
+ #: gallery-plugin.php:861
307
  msgid "Save Changes"
308
  msgstr "Зберегти зміни"
309
 
310
+ #: gallery-plugin.php:874
311
  msgid "FAQ"
312
  msgstr "FAQ "
313
 
314
+ #: gallery-plugin.php:875
315
  msgid "Support"
316
  msgstr "Підтримка"
317
 
318
+ #: gallery-plugin.php:1045 template/gallery-single-template.php:68
319
  msgid "Sorry - nothing to found."
320
  msgstr "Вибачте - нічого не знайдено."
321
 
322
+ #: gallery-plugin.php:1064 template/gallery-single-template.php:90
323
  msgid "Download High resolution image"
324
  msgstr ""
325
 
326
+ #: template/gallery-single-template.php:90
327
  msgid "Image "
328
  msgstr ""
329
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.4.2
7
- Stable tag: 3.6
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
@@ -42,7 +42,7 @@ This plugin makes it possible to implement as many galleries as you want into yo
42
  * Lituanian (lt_LT) (thanks to Naglis Jonaitis)
43
  * Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
44
  * Russian (ru_RU)
45
- * Spanish (es_ES) (thanks to Victor Garcia)
46
  * Ukrainian (uk_UA)(thanks to Ted Mosby)
47
 
48
  If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
@@ -119,6 +119,9 @@ Just setup a necessary order and click 'Save' button.
119
 
120
  == Changelog ==
121
 
 
 
 
122
  = V3.6 - 03.10.2012 =
123
  * NEW : Added function to display 'Download High resolution image' link in lightbox on gallery page
124
  * NEW : Added setting for 'Download High resolution image' link
@@ -224,6 +227,9 @@ Just setup a necessary order and click 'Save' button.
224
 
225
  == Upgrade Notice ==
226
 
 
 
 
227
  = V3.6 =
228
  Added function to display 'Download High resolution image' link in lightbox on gallery page. Added setting for 'Download High resolution image' link.
229
 
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.4.2
7
+ Stable tag: 3.7
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
42
  * Lituanian (lt_LT) (thanks to Naglis Jonaitis)
43
  * Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
44
  * Russian (ru_RU)
45
+ * Spanish (es) (thanks to Victor Garcia)
46
  * Ukrainian (uk_UA)(thanks to Ted Mosby)
47
 
48
  If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
119
 
120
  == Changelog ==
121
 
122
+ = V3.7 - 23.10.2012 =
123
+ * NEW : Added link url field - clicking on image open the link in new window.
124
+
125
  = V3.6 - 03.10.2012 =
126
  * NEW : Added function to display 'Download High resolution image' link in lightbox on gallery page
127
  * NEW : Added setting for 'Download High resolution image' link
227
 
228
  == Upgrade Notice ==
229
 
230
+ = V3.7 =
231
+ Added link url field - clicking on image open the link in new window.
232
+
233
  = V3.6 =
234
  Added function to display 'Download High resolution image' link in lightbox on gallery page. Added setting for 'Download High resolution image' link.
235
 
screenshot-1.jpg CHANGED
Binary file
template/gallery-single-template.php CHANGED
@@ -30,6 +30,7 @@
30
  <div class="gallery clearfix">
31
  <?php foreach( $posts as $attachment ) {
32
  $key = "gllr_image_text";
 
33
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
34
  $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
35
  $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
@@ -38,9 +39,15 @@
38
  <?php } ?>
39
  <div class="gllr_image_block">
40
  <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+20; ?>px;">
 
 
 
 
 
41
  <a rel="gallery_fancybox" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" >
42
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
43
  </a>
 
44
  </p>
45
  <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
46
  </div>
30
  <div class="gallery clearfix">
31
  <?php foreach( $posts as $attachment ) {
32
  $key = "gllr_image_text";
33
+ $link_key = "gllr_link_url";
34
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
35
  $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
36
  $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
39
  <?php } ?>
40
  <div class="gllr_image_block">
41
  <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+20; ?>px;">
42
+ <?php if( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?>
43
+ <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank">
44
+ <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
45
+ </a>
46
+ <?php } else { ?>
47
  <a rel="gallery_fancybox" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" >
48
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
49
  </a>
50
+ <?php } ?>
51
  </p>
52
  <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
53
  </div>