Gallery by BestWebSoft - Version 3.9.1

Version Description

  • 02.07.2013 =
  • Update : The French language file is updated.
Download this release

Release Info

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

Code changes from version 3.9 to 3.9.1

css/stylesheet.css CHANGED
@@ -205,4 +205,65 @@ table.gllr_pro_version {
205
  .gllr_pro_version input,
206
  .gllr_pro_version select {
207
  color: #555555;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  }
205
  .gllr_pro_version input,
206
  .gllr_pro_version select {
207
  color: #555555;
208
+ }
209
+ .gllr_message {
210
+ min-width:800px;
211
+ border:1px solid #d4d4d4;
212
+ margin:12px 0;
213
+ background:#ececec;
214
+ -moz-border-radius:3px;
215
+ border-radius:3px;
216
+ -webkit-border-radius:3px;
217
+ position:relative;
218
+ overflow:hidden
219
+ }
220
+ .gllr_message .gllr_text {
221
+ color:#000;
222
+ font-size: 15px;
223
+ line-height: 26px;
224
+ margin-top: 13px;
225
+ float: left;
226
+ }
227
+ .gllr_message .gllr_text span {
228
+ font-size: 12px;
229
+ opacity: 0.7;
230
+ }
231
+ .gllr_message .gllr_button{
232
+ float: left;
233
+ border:1px solid #1f75ad;
234
+ font-size:14px;
235
+ margin: 15px 19px 15px 16px;
236
+ padding:12px 0;
237
+ color:#FFF;
238
+ text-shadow: 0 1px 3px #636363;
239
+ font-weight: bold;
240
+ background:#227cc2;
241
+ -moz-border-radius:3px;
242
+ border-radius:3px;
243
+ -webkit-border-radius:3px;
244
+ text-decoration:none;
245
+ height: 50px;
246
+ text-align: center;
247
+ width: 147px;
248
+ -moz-box-shadow:0px 1px 1px 0 #43acd9 inset;
249
+ -webkit-box-shadow:0px 1px 1px 0 #43acd9 inset;
250
+ box-shadow:0px 1px 1px 0 #43acd9 inset;
251
+ }
252
+ .gllr_message .gllr_button:hover,
253
+ .gllr_message .gllr_button:focus {
254
+ background:#f26e50;
255
+ color:#FFF;
256
+ border:1px solid #bf573f;
257
+ -moz-box-shadow:0px 1px 1px 0 #f5906f inset;
258
+ -webkit-box-shadow:0px 1px 1px 0 #f5906f inset;
259
+ box-shadow: 0px 1px 1px 0 #f5906f inset;
260
+ }
261
+ .gllr_message .gllr_icon {
262
+ float: right;
263
+ margin: 18px 0;
264
+ }
265
+ .gllr_message .gllr_close_icon {
266
+ float: right;
267
+ margin: 8px;
268
+ cursor: pointer;
269
  }
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.9
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -189,8 +189,8 @@ if( ! function_exists( 'addImageAncestorToMenu' ) ) {
189
  }
190
 
191
  function init_metaboxes_gallery() {
192
- add_meta_box( 'Upload-File', __( 'Upload File', 'gallery' ), 'gllr_post_custom_box', 'gallery', 'normal', 'high' );
193
- add_meta_box( 'Gallery-Shortcode', __( 'Gallery Shortcode', 'gallery' ), 'gllr_post_shortcode_box', 'gallery', 'side', 'high' );
194
  }
195
 
196
  // Create custom meta box for portfolio post type
@@ -273,7 +273,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
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 '<br />'.__( "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">'.__( "(by click on image <br /> opens a link in a new window)", "gallery" ).'</span>';
276
- echo '<a class="gllr_pro_version" href="http://bestwebsoft.com/plugin/gallery-pro/" target="_blank" title="'. __( 'This setting is available in Pro version', 'gallery' ).'"><br />'.
277
  '<div class="gllr_pro_version">'.__( "Open the link", "gallery" ).'<br/><input disabled type="radio" value="_self" > '.__( "Current window", "gallery" ).'<br/><input disabled type="radio" value="_blank" > '.__( "New window", "gallery" ).'</div></a>';
278
  echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">'.__( "Delete", "gallery" ).'</a><div/>';
279
  echo '</div></li>';
@@ -625,7 +625,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
625
  $array_recomend_pro = array();
626
  $count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
627
  $array_plugins_pro = array(
628
- array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/', 'http://bestwebsoft.com/plugin/gallery-pro/#purchase', 'admin.php?page=gallery-plugin-pro.php' )
 
629
  );
630
  foreach ( $array_plugins_pro as $plugins ) {
631
  if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
@@ -919,7 +920,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
919
  </table>
920
  <div class="gllr_pro_version_tooltip">
921
  <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'gallery' ); ?>
922
- <a href="http://bestwebsoft.com/plugin/gallery-pro/" target="_blank" title="Gallery Pro Plugin">
923
  Gallery Pro Plugin
924
  </a>
925
  </div>
@@ -1010,7 +1011,25 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
1010
  <input type="text" name="gllr_read_more_link_text" value="<?php echo $gllr_options["read_more_link_text"]; ?>" style="width:200px;" />
1011
  </td>
1012
  </tr>
1013
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1014
  <input type="hidden" name="gllr_form_submit" value="submit" />
1015
  <p class="submit">
1016
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes' ) ?>" />
@@ -1454,6 +1473,40 @@ if( ! function_exists( 'gllr_add_for_ios' ) ) {
1454
  }
1455
  }
1456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
  register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
1458
  register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
1459
 
@@ -1491,4 +1544,6 @@ add_shortcode( 'print_gllr', 'gllr_shortcode' );
1491
  add_action( 'wp_ajax_upload_gallery_image', 'upload_gallery_image' );
1492
 
1493
  add_action( 'wp_head', 'gllr_add_for_ios' );
 
 
1494
  ?>
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.9.1
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
189
  }
190
 
191
  function init_metaboxes_gallery() {
192
+ add_meta_box( 'Upload-File', __( 'Upload File', 'gallery' ), 'gllr_post_custom_box', 'gallery', 'normal', 'high' );
193
+ add_meta_box( 'Gallery-Shortcode', __( 'Gallery Shortcode', 'gallery' ), 'gllr_post_shortcode_box', 'gallery', 'side', 'high' );
194
  }
195
 
196
  // Create custom meta box for portfolio post type
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 '<br />'.__( "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">'.__( "(by click on image <br /> opens a link in a new window)", "gallery" ).'</span>';
276
+ echo '<a class="gllr_pro_version" href="http://bestwebsoft.com/plugin/gallery-pro/?k='.md5('banner_wp_admin/plugin_settings_gallery' ).'" target="_blank" title="'. __( 'This setting is available in Pro version', 'gallery' ).'"><br />'.
277
  '<div class="gllr_pro_version">'.__( "Open the link", "gallery" ).'<br/><input disabled type="radio" value="_self" > '.__( "Current window", "gallery" ).'<br/><input disabled type="radio" value="_blank" > '.__( "New window", "gallery" ).'</div></a>';
278
  echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">'.__( "Delete", "gallery" ).'</a><div/>';
279
  echo '</div></li>';
625
  $array_recomend_pro = array();
626
  $count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
627
  $array_plugins_pro = array(
628
+ array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/', 'http://bestwebsoft.com/plugin/gallery-pro/#purchase', 'admin.php?page=gallery-plugin-pro.php' ),
629
+ array( 'contact-form-pro\/contact_form_pro.php', 'Contact Form Pro', 'http://bestwebsoft.com/plugin/contact-form-pro/', 'http://bestwebsoft.com/plugin/contact-form-pro/#purchase', 'admin.php?page=contact_form_pro.php' )
630
  );
631
  foreach ( $array_plugins_pro as $plugins ) {
632
  if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
920
  </table>
921
  <div class="gllr_pro_version_tooltip">
922
  <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'gallery' ); ?>
923
+ <a href="http://bestwebsoft.com/plugin/gallery-pro/?k=<?php echo md5('banner_wp_admin/plugin_settings_gallery' ); ?>" target="_blank" title="Gallery Pro Plugin">
924
  Gallery Pro Plugin
925
  </a>
926
  </div>
1011
  <input type="text" name="gllr_read_more_link_text" value="<?php echo $gllr_options["read_more_link_text"]; ?>" style="width:200px;" />
1012
  </td>
1013
  </tr>
1014
+ </table>
1015
+ <table class="form-table gllr_pro_version" style="float: left;">
1016
+ <tr valign="top" class="gllr_width_labels">
1017
+ <th scope="row"><?php _e( 'Display Like buttons in the lightbox', 'gallery' ); ?> </th>
1018
+ <td>
1019
+ <input disabled type="checkbox" name="gllrprfssnl_like_button_fb" value="1" /> <?php _e( 'FaceBook', 'gallery' ); ?><br />
1020
+ <input disabled type="checkbox" name="gllrprfssnl_like_button_twit" value="1" /> <?php _e( 'Twitter', 'gallery' ); ?><br />
1021
+ <input disabled type="checkbox" name="gllrprfssnl_like_button_pint" value="1" /> <?php _e( 'Pinterest', 'gallery' ); ?><br />
1022
+ <input disabled type="checkbox" name="gllrprfssnl_like_button_g_plusone" value="1" /> <?php _e( 'Google +1', 'gallery' ); ?>
1023
+ </td>
1024
+ </tr>
1025
+ </table>
1026
+ <div class="gllr_pro_version_tooltip">
1027
+ <?php _e( 'This functionality is available in the Pro version of the plugin. For more details, please follow the link', 'gallery' ); ?>
1028
+ <a href="http://bestwebsoft.com/plugin/gallery-pro/?k=<?php echo md5('banner_wp_admin/plugin_settings_gallery' ); ?>" target="_blank" title="Gallery Pro Plugin">
1029
+ Gallery Pro Plugin
1030
+ </a>
1031
+ </div>
1032
+ <div style="clear:both;"></div>
1033
  <input type="hidden" name="gllr_form_submit" value="submit" />
1034
  <p class="submit">
1035
  <input type="submit" class="button-primary" value="<?php _e( 'Save Changes' ) ?>" />
1473
  }
1474
  }
1475
 
1476
+ if ( ! function_exists ( 'gllr_plugin_banner' ) ) {
1477
+ function gllr_plugin_banner() {
1478
+ global $hook_suffix;
1479
+ if ( $hook_suffix == 'plugins.php' ) {
1480
+ echo '<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
1481
+ <script type="text/javascript" src="'.plugins_url( 'js/jquery.cookie.js', __FILE__ ).'"></script>
1482
+ <script type="text/javascript">
1483
+ (function($){
1484
+ $(document).ready(function(){
1485
+ var hide_message = $.cookie("gllr_hide_banner_on_plugin_page");
1486
+ if ( hide_message == "true") {
1487
+ $(".gllr_message").css("display", "none");
1488
+ };
1489
+ $(".gllr_close_icon").click(function() {
1490
+ $(".gllr_message").css("display", "none");
1491
+ $.cookie( "gllr_hide_banner_on_plugin_page", "true", { expires: 32 } );
1492
+ });
1493
+ });
1494
+ })(jQuery);
1495
+ </script>
1496
+ <div class="gllr_message">
1497
+ <a class="button gllr_button" target="_blank" href="http://bestwebsoft.com/plugin/gallery-pro/?k=' . md5('banner_wp_admin/plugins_gallery' ) . '">Learn More</a>
1498
+ <div class="gllr_text">
1499
+ It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!<br />
1500
+ <span>Extend standard plugin functionality with new great options.</span>
1501
+ </div>
1502
+ <img class="gllr_close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
1503
+ <img class="gllr_icon" title="" src="' . plugins_url( 'images/banner.png', __FILE__ ) . '" alt=""/>
1504
+ </div>
1505
+ </div>';
1506
+ }
1507
+ }
1508
+ }
1509
+
1510
  register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
1511
  register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
1512
 
1544
  add_action( 'wp_ajax_upload_gallery_image', 'upload_gallery_image' );
1545
 
1546
  add_action( 'wp_head', 'gllr_add_for_ios' );
1547
+
1548
+ add_action('admin_notices', 'gllr_plugin_banner');
1549
  ?>
images/banner.png ADDED
Binary file
images/close_banner.png ADDED
Binary file
js/jquery.cookie.js ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Cookie plugin
3
+ *
4
+ * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
5
+ * Dual licensed under the MIT and GPL licenses:
6
+ * http://www.opensource.org/licenses/mit-license.php
7
+ * http://www.gnu.org/licenses/gpl.html
8
+ *
9
+ */
10
+
11
+ /**
12
+ * Create a cookie with the given name and value and other optional parameters.
13
+ *
14
+ * @example $.cookie('the_cookie', 'the_value');
15
+ * @desc Set the value of a cookie.
16
+ * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
17
+ * @desc Create a cookie with all available options.
18
+ * @example $.cookie('the_cookie', 'the_value');
19
+ * @desc Create a session cookie.
20
+ * @example $.cookie('the_cookie', null);
21
+ * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
22
+ * used when the cookie was set.
23
+ *
24
+ * @param String name The name of the cookie.
25
+ * @param String value The value of the cookie.
26
+ * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
27
+ * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
28
+ * If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
29
+ * If set to null or omitted, the cookie will be a session cookie and will not be retained
30
+ * when the the browser exits.
31
+ * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
32
+ * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
33
+ * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
34
+ * require a secure protocol (like HTTPS).
35
+ * @type undefined
36
+ *
37
+ * @name $.cookie
38
+ * @cat Plugins/Cookie
39
+ * @author Klaus Hartl/klaus.hartl@stilbuero.de
40
+ */
41
+
42
+ /**
43
+ * Get the value of a cookie with the given name.
44
+ *
45
+ * @example $.cookie('the_cookie');
46
+ * @desc Get the value of a cookie.
47
+ *
48
+ * @param String name The name of the cookie.
49
+ * @return The value of the cookie.
50
+ * @type String
51
+ *
52
+ * @name $.cookie
53
+ * @cat Plugins/Cookie
54
+ * @author Klaus Hartl/klaus.hartl@stilbuero.de
55
+ */
56
+ jQuery.cookie = function(name, value, options) {
57
+ if (typeof value != 'undefined') { // name and value given, set cookie
58
+ options = options || {};
59
+ if (value === null) {
60
+ value = '';
61
+ options.expires = -1;
62
+ }
63
+ var expires = '';
64
+ if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
65
+ var date;
66
+ if (typeof options.expires == 'number') {
67
+ date = new Date();
68
+ date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
69
+ } else {
70
+ date = options.expires;
71
+ }
72
+ expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
73
+ }
74
+ // CAUTION: Needed to parenthesize options.path and options.domain
75
+ // in the following expressions, otherwise they evaluate to undefined
76
+ // in the packed version for some reason...
77
+ var path = options.path ? '; path=' + (options.path) : '';
78
+ var domain = options.domain ? '; domain=' + (options.domain) : '';
79
+ var secure = options.secure ? '; secure' : '';
80
+ document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
81
+ } else { // only name given, get cookie
82
+ var cookieValue = null;
83
+ if (document.cookie && document.cookie != '') {
84
+ var cookies = document.cookie.split(';');
85
+ for (var i = 0; i < cookies.length; i++) {
86
+ var cookie = jQuery.trim(cookies[i]);
87
+ // Does this cookie string begin with the name we want?
88
+ if (cookie.substring(0, name.length + 1) == (name + '=')) {
89
+ cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
90
+ break;
91
+ }
92
+ }
93
+ }
94
+ return cookieValue;
95
+ }
96
+ };
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: 2013-05-28 16:01+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:01+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerie"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
@@ -96,7 +96,7 @@ msgid "Please make a choice"
96
  msgstr ""
97
 
98
  #: gallery-plugin.php:228
99
- #: gallery-plugin.php:959
100
  #, fuzzy
101
  msgid "Sort images by"
102
  msgstr "Počet náhledů zobrazených v jedné řádce"
@@ -165,310 +165,332 @@ msgid "Publishing"
165
  msgstr "Veřejné"
166
 
167
  #: gallery-plugin.php:483
168
- #: gallery-plugin.php:963
169
  msgid "Date"
170
  msgstr "Datum"
171
 
172
- #: gallery-plugin.php:652
173
  #, fuzzy
174
  msgid "Pro plugins"
175
  msgstr "Doporučené pluginy"
176
 
177
- #: gallery-plugin.php:655
178
- #: gallery-plugin.php:681
179
  msgid "Activated plugins"
180
  msgstr "Aktivní pluginy"
181
 
182
- #: gallery-plugin.php:657
183
- #: gallery-plugin.php:665
184
- #: gallery-plugin.php:673
185
- #: gallery-plugin.php:683
186
- #: gallery-plugin.php:691
187
- #: gallery-plugin.php:699
188
  msgid "Read more"
189
  msgstr "Další informace"
190
 
191
- #: gallery-plugin.php:657
192
- #: gallery-plugin.php:683
193
- #: gallery-plugin.php:1028
194
- #: gallery-plugin.php:1043
195
  msgid "Settings"
196
  msgstr "Nastavení"
197
 
198
- #: gallery-plugin.php:663
199
- #: gallery-plugin.php:689
200
  msgid "Installed plugins"
201
  msgstr "Nainstalované pluginy"
202
 
203
- #: gallery-plugin.php:671
204
- #: gallery-plugin.php:697
205
  msgid "Recommended plugins"
206
  msgstr "Doporučené pluginy"
207
 
208
- #: gallery-plugin.php:673
209
  msgid "Purchase"
210
  msgstr ""
211
 
212
- #: gallery-plugin.php:678
213
  #, fuzzy
214
  msgid "Free plugins"
215
  msgstr "Doporučené pluginy"
216
 
217
- #: gallery-plugin.php:699
218
  msgid "Download"
219
  msgstr "Stáhnout"
220
 
221
- #: gallery-plugin.php:699
222
  #, php-format
223
  msgid "Install %s"
224
  msgstr "Instaluj %s"
225
 
226
- #: gallery-plugin.php:699
227
  msgid "Install now from wordpress.org"
228
  msgstr "Instaluj ihned z wordpress.org"
229
 
230
- #: gallery-plugin.php:704
231
  #, fuzzy
232
  msgid "If you have any questions, please contact us via"
233
  msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
234
 
235
- #: gallery-plugin.php:739
236
  #, fuzzy
237
  msgid "See images &raquo;"
238
  msgstr "Zobrazit obsah galerie &raquo;"
239
 
240
- #: gallery-plugin.php:838
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "Nastavení uložena."
244
 
245
- #: gallery-plugin.php:852
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "Nastavení galerie"
249
 
250
- #: gallery-plugin.php:855
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
- #: gallery-plugin.php:859
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
- #: gallery-plugin.php:861
260
- #: gallery-plugin.php:869
261
- #: gallery-plugin.php:882
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "Název rozměru"
265
 
266
- #: gallery-plugin.php:862
267
- #: gallery-plugin.php:870
268
  msgid "Width (in px)"
269
  msgstr "Šířka (v px)"
270
 
271
- #: gallery-plugin.php:863
272
- #: gallery-plugin.php:871
273
  msgid "Height (in px)"
274
  msgstr "Výška (v px)"
275
 
276
- #: gallery-plugin.php:867
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "Galerie"
280
 
281
- #: gallery-plugin.php:875
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
285
 
286
- #: gallery-plugin.php:880
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
- #: gallery-plugin.php:883
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "Šířka (v px)"
294
 
295
- #: gallery-plugin.php:884
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "Výška (v px)"
299
 
300
- #: gallery-plugin.php:885
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
- #: gallery-plugin.php:889
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
- #: gallery-plugin.php:891
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
- #: gallery-plugin.php:893
313
  msgid "left"
314
  msgstr ""
315
 
316
- #: gallery-plugin.php:894
317
- #: gallery-plugin.php:901
318
  msgid "center"
319
  msgstr ""
320
 
321
- #: gallery-plugin.php:895
322
  msgid "right"
323
  msgstr ""
324
 
325
- #: gallery-plugin.php:898
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
- #: gallery-plugin.php:900
330
  msgid "top"
331
  msgstr ""
332
 
333
- #: gallery-plugin.php:902
334
  msgid "bottom"
335
  msgstr ""
336
 
337
- #: gallery-plugin.php:907
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
- #: gallery-plugin.php:909
342
  msgid "Default"
343
  msgstr ""
344
 
345
- #: gallery-plugin.php:910
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
- #: gallery-plugin.php:912
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
- #: gallery-plugin.php:914
354
  msgid "Background color"
355
  msgstr ""
356
 
357
- #: gallery-plugin.php:921
 
358
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
359
  msgstr ""
360
 
361
- #: gallery-plugin.php:928
362
  msgid "Images with border"
363
  msgstr ""
364
 
365
- #: gallery-plugin.php:931
366
  msgid "Border width in px, just numbers"
367
  msgstr ""
368
 
369
- #: gallery-plugin.php:933
370
- #: gallery-plugin.php:935
371
  msgid "Select a border color"
372
  msgstr ""
373
 
374
- #: gallery-plugin.php:941
375
  #, fuzzy
376
  msgid "Number of images in the row"
377
  msgstr "Počet náhledů zobrazených v jedné řádce"
378
 
379
- #: gallery-plugin.php:947
380
  msgid "Start slideshow"
381
  msgstr ""
382
 
383
- #: gallery-plugin.php:953
384
  msgid "Slideshow interval"
385
  msgstr ""
386
 
387
- #: gallery-plugin.php:961
388
  msgid "Attachment ID"
389
  msgstr ""
390
 
391
- #: gallery-plugin.php:962
392
  #, fuzzy
393
  msgid "Image Name"
394
  msgstr "Název rozměru"
395
 
396
- #: gallery-plugin.php:964
397
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
398
  msgstr ""
399
 
400
- #: gallery-plugin.php:965
401
  msgid "Random"
402
  msgstr ""
403
 
404
- #: gallery-plugin.php:969
405
  #, fuzzy
406
  msgid "Sort images"
407
  msgstr "Počet náhledů zobrazených v jedné řádce"
408
 
409
- #: gallery-plugin.php:971
410
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:972
414
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
415
  msgstr ""
416
 
417
- #: gallery-plugin.php:976
418
  msgid "Display text above the image"
419
  msgstr ""
420
 
421
- #: gallery-plugin.php:978
422
  msgid "If you want to display text just in a lightbox"
423
  msgstr ""
424
 
425
- #: gallery-plugin.php:982
426
  msgid "Display the Back link"
427
  msgstr ""
428
 
429
- #: gallery-plugin.php:988
430
  msgid "Display the Back link in the shortcode"
431
  msgstr ""
432
 
433
- #: gallery-plugin.php:994
434
  msgid "The Back link text"
435
  msgstr ""
436
 
437
- #: gallery-plugin.php:1000
438
  msgid "The Back link URL"
439
  msgstr ""
440
 
441
- #: gallery-plugin.php:1002
442
  msgid "Gallery page (Page with Gallery Template)"
443
  msgstr ""
444
 
445
- #: gallery-plugin.php:1004
446
  msgid "(Full URL to custom page)"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1008
450
  msgid "The Read More link text"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid "Save Changes"
455
  msgstr "Uložit změny"
456
 
457
- #: gallery-plugin.php:1029
458
  msgid "FAQ"
459
  msgstr "FAQ "
460
 
461
- #: gallery-plugin.php:1030
462
  msgid "Support"
463
  msgstr "Podpora"
464
 
465
- #: gallery-plugin.php:1237
466
  #: template/gallery-single-template.php:76
467
  #, fuzzy
468
  msgid "Sorry, nothing found."
469
  msgstr "Omlouvám se - nic nenalezeno."
470
 
471
- #: gallery-plugin.php:1259
472
  #: template/gallery-single-template.php:101
473
  msgid "Download high resolution image"
474
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:12+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galerie"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
96
  msgstr ""
97
 
98
  #: gallery-plugin.php:228
99
+ #: gallery-plugin.php:960
100
  #, fuzzy
101
  msgid "Sort images by"
102
  msgstr "Počet náhledů zobrazených v jedné řádce"
165
  msgstr "Veřejné"
166
 
167
  #: gallery-plugin.php:483
168
+ #: gallery-plugin.php:964
169
  msgid "Date"
170
  msgstr "Datum"
171
 
172
+ #: gallery-plugin.php:653
173
  #, fuzzy
174
  msgid "Pro plugins"
175
  msgstr "Doporučené pluginy"
176
 
177
+ #: gallery-plugin.php:656
178
+ #: gallery-plugin.php:682
179
  msgid "Activated plugins"
180
  msgstr "Aktivní pluginy"
181
 
182
+ #: gallery-plugin.php:658
183
+ #: gallery-plugin.php:666
184
+ #: gallery-plugin.php:674
185
+ #: gallery-plugin.php:684
186
+ #: gallery-plugin.php:692
187
+ #: gallery-plugin.php:700
188
  msgid "Read more"
189
  msgstr "Další informace"
190
 
191
+ #: gallery-plugin.php:658
192
+ #: gallery-plugin.php:684
193
+ #: gallery-plugin.php:1047
194
+ #: gallery-plugin.php:1062
195
  msgid "Settings"
196
  msgstr "Nastavení"
197
 
198
+ #: gallery-plugin.php:664
199
+ #: gallery-plugin.php:690
200
  msgid "Installed plugins"
201
  msgstr "Nainstalované pluginy"
202
 
203
+ #: gallery-plugin.php:672
204
+ #: gallery-plugin.php:698
205
  msgid "Recommended plugins"
206
  msgstr "Doporučené pluginy"
207
 
208
+ #: gallery-plugin.php:674
209
  msgid "Purchase"
210
  msgstr ""
211
 
212
+ #: gallery-plugin.php:679
213
  #, fuzzy
214
  msgid "Free plugins"
215
  msgstr "Doporučené pluginy"
216
 
217
+ #: gallery-plugin.php:700
218
  msgid "Download"
219
  msgstr "Stáhnout"
220
 
221
+ #: gallery-plugin.php:700
222
  #, php-format
223
  msgid "Install %s"
224
  msgstr "Instaluj %s"
225
 
226
+ #: gallery-plugin.php:700
227
  msgid "Install now from wordpress.org"
228
  msgstr "Instaluj ihned z wordpress.org"
229
 
230
+ #: gallery-plugin.php:705
231
  #, fuzzy
232
  msgid "If you have any questions, please contact us via"
233
  msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
234
 
235
+ #: gallery-plugin.php:740
236
  #, fuzzy
237
  msgid "See images &raquo;"
238
  msgstr "Zobrazit obsah galerie &raquo;"
239
 
240
+ #: gallery-plugin.php:839
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "Nastavení uložena."
244
 
245
+ #: gallery-plugin.php:853
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "Nastavení galerie"
249
 
250
+ #: gallery-plugin.php:856
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
+ #: gallery-plugin.php:860
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
+ #: gallery-plugin.php:862
260
+ #: gallery-plugin.php:870
261
+ #: gallery-plugin.php:883
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "Název rozměru"
265
 
266
+ #: gallery-plugin.php:863
267
+ #: gallery-plugin.php:871
268
  msgid "Width (in px)"
269
  msgstr "Šířka (v px)"
270
 
271
+ #: gallery-plugin.php:864
272
+ #: gallery-plugin.php:872
273
  msgid "Height (in px)"
274
  msgstr "Výška (v px)"
275
 
276
+ #: gallery-plugin.php:868
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "Galerie"
280
 
281
+ #: gallery-plugin.php:876
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
285
 
286
+ #: gallery-plugin.php:881
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:884
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "Šířka (v px)"
294
 
295
+ #: gallery-plugin.php:885
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "Výška (v px)"
299
 
300
+ #: gallery-plugin.php:886
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
+ #: gallery-plugin.php:890
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
+ #: gallery-plugin.php:892
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
+ #: gallery-plugin.php:894
313
  msgid "left"
314
  msgstr ""
315
 
316
+ #: gallery-plugin.php:895
317
+ #: gallery-plugin.php:902
318
  msgid "center"
319
  msgstr ""
320
 
321
+ #: gallery-plugin.php:896
322
  msgid "right"
323
  msgstr ""
324
 
325
+ #: gallery-plugin.php:899
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
+ #: gallery-plugin.php:901
330
  msgid "top"
331
  msgstr ""
332
 
333
+ #: gallery-plugin.php:903
334
  msgid "bottom"
335
  msgstr ""
336
 
337
+ #: gallery-plugin.php:908
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
+ #: gallery-plugin.php:910
342
  msgid "Default"
343
  msgstr ""
344
 
345
+ #: gallery-plugin.php:911
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
+ #: gallery-plugin.php:913
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
+ #: gallery-plugin.php:915
354
  msgid "Background color"
355
  msgstr ""
356
 
357
+ #: gallery-plugin.php:922
358
+ #: gallery-plugin.php:1027
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
+ #: gallery-plugin.php:929
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
+ #: gallery-plugin.php:932
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
+ #: gallery-plugin.php:934
371
+ #: gallery-plugin.php:936
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
+ #: gallery-plugin.php:942
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "Počet náhledů zobrazených v jedné řádce"
379
 
380
+ #: gallery-plugin.php:948
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
+ #: gallery-plugin.php:954
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
+ #: gallery-plugin.php:962
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
+ #: gallery-plugin.php:963
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "Název rozměru"
396
 
397
+ #: gallery-plugin.php:965
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
+ #: gallery-plugin.php:966
402
  msgid "Random"
403
  msgstr ""
404
 
405
+ #: gallery-plugin.php:970
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "Počet náhledů zobrazených v jedné řádce"
409
 
410
+ #: gallery-plugin.php:972
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
+ #: gallery-plugin.php:973
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
+ #: gallery-plugin.php:977
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
+ #: gallery-plugin.php:979
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
+ #: gallery-plugin.php:983
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
+ #: gallery-plugin.php:989
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
+ #: gallery-plugin.php:995
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
+ #: gallery-plugin.php:1001
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
+ #: gallery-plugin.php:1003
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:1005
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1009
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1017
455
+ msgid "Display Like buttons in the lightbox"
456
+ msgstr ""
457
+
458
+ #: gallery-plugin.php:1019
459
+ msgid "FaceBook"
460
+ msgstr ""
461
+
462
+ #: gallery-plugin.php:1020
463
+ #, fuzzy
464
+ msgid "Twitter"
465
+ msgstr "Název"
466
+
467
+ #: gallery-plugin.php:1021
468
+ msgid "Pinterest"
469
+ msgstr ""
470
+
471
+ #: gallery-plugin.php:1022
472
+ msgid "Google +1"
473
+ msgstr ""
474
+
475
+ #: gallery-plugin.php:1035
476
  msgid "Save Changes"
477
  msgstr "Uložit změny"
478
 
479
+ #: gallery-plugin.php:1048
480
  msgid "FAQ"
481
  msgstr "FAQ "
482
 
483
+ #: gallery-plugin.php:1049
484
  msgid "Support"
485
  msgstr "Podpora"
486
 
487
+ #: gallery-plugin.php:1256
488
  #: template/gallery-single-template.php:76
489
  #, fuzzy
490
  msgid "Sorry, nothing found."
491
  msgstr "Omlouvám se - nic nenalezeno."
492
 
493
+ #: gallery-plugin.php:1278
494
  #: template/gallery-single-template.php:101
495
  msgid "Download high resolution image"
496
  msgstr ""
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: 2013-05-28 16:01+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:01+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerien"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
@@ -96,7 +96,7 @@ msgid "Please make a choice"
96
  msgstr ""
97
 
98
  #: gallery-plugin.php:228
99
- #: gallery-plugin.php:959
100
  #, fuzzy
101
  msgid "Sort images by"
102
  msgstr "Anzahl Bilder in der Reihe"
@@ -165,310 +165,332 @@ msgid "Publishing"
165
  msgstr "Öffentlich"
166
 
167
  #: gallery-plugin.php:483
168
- #: gallery-plugin.php:963
169
  msgid "Date"
170
  msgstr "Datum"
171
 
172
- #: gallery-plugin.php:652
173
  #, fuzzy
174
  msgid "Pro plugins"
175
  msgstr "Benötigte Plugins"
176
 
177
- #: gallery-plugin.php:655
178
- #: gallery-plugin.php:681
179
  msgid "Activated plugins"
180
  msgstr "Aktivierte Plugins"
181
 
182
- #: gallery-plugin.php:657
183
- #: gallery-plugin.php:665
184
- #: gallery-plugin.php:673
185
- #: gallery-plugin.php:683
186
- #: gallery-plugin.php:691
187
- #: gallery-plugin.php:699
188
  msgid "Read more"
189
  msgstr "Mehr erfahren"
190
 
191
- #: gallery-plugin.php:657
192
- #: gallery-plugin.php:683
193
- #: gallery-plugin.php:1028
194
- #: gallery-plugin.php:1043
195
  msgid "Settings"
196
  msgstr "Einstellungen"
197
 
198
- #: gallery-plugin.php:663
199
- #: gallery-plugin.php:689
200
  msgid "Installed plugins"
201
  msgstr "Installierte Plugins"
202
 
203
- #: gallery-plugin.php:671
204
- #: gallery-plugin.php:697
205
  msgid "Recommended plugins"
206
  msgstr "Benötigte Plugins"
207
 
208
- #: gallery-plugin.php:673
209
  msgid "Purchase"
210
  msgstr ""
211
 
212
- #: gallery-plugin.php:678
213
  #, fuzzy
214
  msgid "Free plugins"
215
  msgstr "Benötigte Plugins"
216
 
217
- #: gallery-plugin.php:699
218
  msgid "Download"
219
  msgstr "Download"
220
 
221
- #: gallery-plugin.php:699
222
  #, php-format
223
  msgid "Install %s"
224
  msgstr "Installiere %s"
225
 
226
- #: gallery-plugin.php:699
227
  msgid "Install now from wordpress.org"
228
  msgstr "Direkt von wordpress.org installieren"
229
 
230
- #: gallery-plugin.php:704
231
  #, fuzzy
232
  msgid "If you have any questions, please contact us via"
233
  msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
234
 
235
- #: gallery-plugin.php:739
236
  #, fuzzy
237
  msgid "See images &raquo;"
238
  msgstr "Fotos anzeigen &raquo;"
239
 
240
- #: gallery-plugin.php:838
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "Einstellungen gespeichert."
244
 
245
- #: gallery-plugin.php:852
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "Galerie Einstellungen"
249
 
250
- #: gallery-plugin.php:855
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
- #: gallery-plugin.php:859
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
- #: gallery-plugin.php:861
260
- #: gallery-plugin.php:869
261
- #: gallery-plugin.php:882
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "Name der Bilder"
265
 
266
- #: gallery-plugin.php:862
267
- #: gallery-plugin.php:870
268
  msgid "Width (in px)"
269
  msgstr "Breite (in px)"
270
 
271
- #: gallery-plugin.php:863
272
- #: gallery-plugin.php:871
273
  msgid "Height (in px)"
274
  msgstr "Höhe (in px)"
275
 
276
- #: gallery-plugin.php:867
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "Galerien"
280
 
281
- #: gallery-plugin.php:875
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
285
 
286
- #: gallery-plugin.php:880
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
- #: gallery-plugin.php:883
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "Breite (in px)"
294
 
295
- #: gallery-plugin.php:884
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "Höhe (in px)"
299
 
300
- #: gallery-plugin.php:885
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
- #: gallery-plugin.php:889
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
- #: gallery-plugin.php:891
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
- #: gallery-plugin.php:893
313
  msgid "left"
314
  msgstr ""
315
 
316
- #: gallery-plugin.php:894
317
- #: gallery-plugin.php:901
318
  msgid "center"
319
  msgstr ""
320
 
321
- #: gallery-plugin.php:895
322
  msgid "right"
323
  msgstr ""
324
 
325
- #: gallery-plugin.php:898
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
- #: gallery-plugin.php:900
330
  msgid "top"
331
  msgstr ""
332
 
333
- #: gallery-plugin.php:902
334
  msgid "bottom"
335
  msgstr ""
336
 
337
- #: gallery-plugin.php:907
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
- #: gallery-plugin.php:909
342
  msgid "Default"
343
  msgstr ""
344
 
345
- #: gallery-plugin.php:910
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
- #: gallery-plugin.php:912
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
- #: gallery-plugin.php:914
354
  msgid "Background color"
355
  msgstr ""
356
 
357
- #: gallery-plugin.php:921
 
358
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
359
  msgstr ""
360
 
361
- #: gallery-plugin.php:928
362
  msgid "Images with border"
363
  msgstr ""
364
 
365
- #: gallery-plugin.php:931
366
  msgid "Border width in px, just numbers"
367
  msgstr ""
368
 
369
- #: gallery-plugin.php:933
370
- #: gallery-plugin.php:935
371
  msgid "Select a border color"
372
  msgstr ""
373
 
374
- #: gallery-plugin.php:941
375
  #, fuzzy
376
  msgid "Number of images in the row"
377
  msgstr "Anzahl Bilder in der Reihe"
378
 
379
- #: gallery-plugin.php:947
380
  msgid "Start slideshow"
381
  msgstr ""
382
 
383
- #: gallery-plugin.php:953
384
  msgid "Slideshow interval"
385
  msgstr ""
386
 
387
- #: gallery-plugin.php:961
388
  msgid "Attachment ID"
389
  msgstr ""
390
 
391
- #: gallery-plugin.php:962
392
  #, fuzzy
393
  msgid "Image Name"
394
  msgstr "Name der Bilder"
395
 
396
- #: gallery-plugin.php:964
397
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
398
  msgstr ""
399
 
400
- #: gallery-plugin.php:965
401
  msgid "Random"
402
  msgstr ""
403
 
404
- #: gallery-plugin.php:969
405
  #, fuzzy
406
  msgid "Sort images"
407
  msgstr "Anzahl Bilder in der Reihe"
408
 
409
- #: gallery-plugin.php:971
410
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:972
414
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
415
  msgstr ""
416
 
417
- #: gallery-plugin.php:976
418
  msgid "Display text above the image"
419
  msgstr ""
420
 
421
- #: gallery-plugin.php:978
422
  msgid "If you want to display text just in a lightbox"
423
  msgstr ""
424
 
425
- #: gallery-plugin.php:982
426
  msgid "Display the Back link"
427
  msgstr ""
428
 
429
- #: gallery-plugin.php:988
430
  msgid "Display the Back link in the shortcode"
431
  msgstr ""
432
 
433
- #: gallery-plugin.php:994
434
  msgid "The Back link text"
435
  msgstr ""
436
 
437
- #: gallery-plugin.php:1000
438
  msgid "The Back link URL"
439
  msgstr ""
440
 
441
- #: gallery-plugin.php:1002
442
  msgid "Gallery page (Page with Gallery Template)"
443
  msgstr ""
444
 
445
- #: gallery-plugin.php:1004
446
  msgid "(Full URL to custom page)"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1008
450
  msgid "The Read More link text"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid "Save Changes"
455
  msgstr "Einstellungen speichern"
456
 
457
- #: gallery-plugin.php:1029
458
  msgid "FAQ"
459
  msgstr "FAQ"
460
 
461
- #: gallery-plugin.php:1030
462
  msgid "Support"
463
  msgstr "Support"
464
 
465
- #: gallery-plugin.php:1237
466
  #: template/gallery-single-template.php:76
467
  #, fuzzy
468
  msgid "Sorry, nothing found."
469
  msgstr "Leider nichts gefunden."
470
 
471
- #: gallery-plugin.php:1259
472
  #: template/gallery-single-template.php:101
473
  msgid "Download high resolution image"
474
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:13+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galerien"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
96
  msgstr ""
97
 
98
  #: gallery-plugin.php:228
99
+ #: gallery-plugin.php:960
100
  #, fuzzy
101
  msgid "Sort images by"
102
  msgstr "Anzahl Bilder in der Reihe"
165
  msgstr "Öffentlich"
166
 
167
  #: gallery-plugin.php:483
168
+ #: gallery-plugin.php:964
169
  msgid "Date"
170
  msgstr "Datum"
171
 
172
+ #: gallery-plugin.php:653
173
  #, fuzzy
174
  msgid "Pro plugins"
175
  msgstr "Benötigte Plugins"
176
 
177
+ #: gallery-plugin.php:656
178
+ #: gallery-plugin.php:682
179
  msgid "Activated plugins"
180
  msgstr "Aktivierte Plugins"
181
 
182
+ #: gallery-plugin.php:658
183
+ #: gallery-plugin.php:666
184
+ #: gallery-plugin.php:674
185
+ #: gallery-plugin.php:684
186
+ #: gallery-plugin.php:692
187
+ #: gallery-plugin.php:700
188
  msgid "Read more"
189
  msgstr "Mehr erfahren"
190
 
191
+ #: gallery-plugin.php:658
192
+ #: gallery-plugin.php:684
193
+ #: gallery-plugin.php:1047
194
+ #: gallery-plugin.php:1062
195
  msgid "Settings"
196
  msgstr "Einstellungen"
197
 
198
+ #: gallery-plugin.php:664
199
+ #: gallery-plugin.php:690
200
  msgid "Installed plugins"
201
  msgstr "Installierte Plugins"
202
 
203
+ #: gallery-plugin.php:672
204
+ #: gallery-plugin.php:698
205
  msgid "Recommended plugins"
206
  msgstr "Benötigte Plugins"
207
 
208
+ #: gallery-plugin.php:674
209
  msgid "Purchase"
210
  msgstr ""
211
 
212
+ #: gallery-plugin.php:679
213
  #, fuzzy
214
  msgid "Free plugins"
215
  msgstr "Benötigte Plugins"
216
 
217
+ #: gallery-plugin.php:700
218
  msgid "Download"
219
  msgstr "Download"
220
 
221
+ #: gallery-plugin.php:700
222
  #, php-format
223
  msgid "Install %s"
224
  msgstr "Installiere %s"
225
 
226
+ #: gallery-plugin.php:700
227
  msgid "Install now from wordpress.org"
228
  msgstr "Direkt von wordpress.org installieren"
229
 
230
+ #: gallery-plugin.php:705
231
  #, fuzzy
232
  msgid "If you have any questions, please contact us via"
233
  msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
234
 
235
+ #: gallery-plugin.php:740
236
  #, fuzzy
237
  msgid "See images &raquo;"
238
  msgstr "Fotos anzeigen &raquo;"
239
 
240
+ #: gallery-plugin.php:839
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "Einstellungen gespeichert."
244
 
245
+ #: gallery-plugin.php:853
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "Galerie Einstellungen"
249
 
250
+ #: gallery-plugin.php:856
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
+ #: gallery-plugin.php:860
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
+ #: gallery-plugin.php:862
260
+ #: gallery-plugin.php:870
261
+ #: gallery-plugin.php:883
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "Name der Bilder"
265
 
266
+ #: gallery-plugin.php:863
267
+ #: gallery-plugin.php:871
268
  msgid "Width (in px)"
269
  msgstr "Breite (in px)"
270
 
271
+ #: gallery-plugin.php:864
272
+ #: gallery-plugin.php:872
273
  msgid "Height (in px)"
274
  msgstr "Höhe (in px)"
275
 
276
+ #: gallery-plugin.php:868
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "Galerien"
280
 
281
+ #: gallery-plugin.php:876
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
285
 
286
+ #: gallery-plugin.php:881
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:884
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "Breite (in px)"
294
 
295
+ #: gallery-plugin.php:885
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "Höhe (in px)"
299
 
300
+ #: gallery-plugin.php:886
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
+ #: gallery-plugin.php:890
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
+ #: gallery-plugin.php:892
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
+ #: gallery-plugin.php:894
313
  msgid "left"
314
  msgstr ""
315
 
316
+ #: gallery-plugin.php:895
317
+ #: gallery-plugin.php:902
318
  msgid "center"
319
  msgstr ""
320
 
321
+ #: gallery-plugin.php:896
322
  msgid "right"
323
  msgstr ""
324
 
325
+ #: gallery-plugin.php:899
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
+ #: gallery-plugin.php:901
330
  msgid "top"
331
  msgstr ""
332
 
333
+ #: gallery-plugin.php:903
334
  msgid "bottom"
335
  msgstr ""
336
 
337
+ #: gallery-plugin.php:908
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
+ #: gallery-plugin.php:910
342
  msgid "Default"
343
  msgstr ""
344
 
345
+ #: gallery-plugin.php:911
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
+ #: gallery-plugin.php:913
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
+ #: gallery-plugin.php:915
354
  msgid "Background color"
355
  msgstr ""
356
 
357
+ #: gallery-plugin.php:922
358
+ #: gallery-plugin.php:1027
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
+ #: gallery-plugin.php:929
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
+ #: gallery-plugin.php:932
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
+ #: gallery-plugin.php:934
371
+ #: gallery-plugin.php:936
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
+ #: gallery-plugin.php:942
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "Anzahl Bilder in der Reihe"
379
 
380
+ #: gallery-plugin.php:948
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
+ #: gallery-plugin.php:954
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
+ #: gallery-plugin.php:962
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
+ #: gallery-plugin.php:963
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "Name der Bilder"
396
 
397
+ #: gallery-plugin.php:965
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
+ #: gallery-plugin.php:966
402
  msgid "Random"
403
  msgstr ""
404
 
405
+ #: gallery-plugin.php:970
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "Anzahl Bilder in der Reihe"
409
 
410
+ #: gallery-plugin.php:972
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
+ #: gallery-plugin.php:973
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
+ #: gallery-plugin.php:977
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
+ #: gallery-plugin.php:979
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
+ #: gallery-plugin.php:983
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
+ #: gallery-plugin.php:989
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
+ #: gallery-plugin.php:995
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
+ #: gallery-plugin.php:1001
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
+ #: gallery-plugin.php:1003
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:1005
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1009
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1017
455
+ msgid "Display Like buttons in the lightbox"
456
+ msgstr ""
457
+
458
+ #: gallery-plugin.php:1019
459
+ msgid "FaceBook"
460
+ msgstr ""
461
+
462
+ #: gallery-plugin.php:1020
463
+ #, fuzzy
464
+ msgid "Twitter"
465
+ msgstr "Titel"
466
+
467
+ #: gallery-plugin.php:1021
468
+ msgid "Pinterest"
469
+ msgstr ""
470
+
471
+ #: gallery-plugin.php:1022
472
+ msgid "Google +1"
473
+ msgstr ""
474
+
475
+ #: gallery-plugin.php:1035
476
  msgid "Save Changes"
477
  msgstr "Einstellungen speichern"
478
 
479
+ #: gallery-plugin.php:1048
480
  msgid "FAQ"
481
  msgstr "FAQ"
482
 
483
+ #: gallery-plugin.php:1049
484
  msgid "Support"
485
  msgstr "Support"
486
 
487
+ #: gallery-plugin.php:1256
488
  #: template/gallery-single-template.php:76
489
  #, fuzzy
490
  msgid "Sorry, nothing found."
491
  msgstr "Leider nichts gefunden."
492
 
493
+ #: gallery-plugin.php:1278
494
  #: template/gallery-single-template.php:101
495
  msgid "Download high resolution image"
496
  msgstr ""
languages/gallery-es_ES.mo CHANGED
Binary file
languages/gallery-es_ES.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: 2013-05-28 16:01+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:01+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerías"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galería"
33
 
@@ -100,7 +100,7 @@ msgid "Please make a choice"
100
  msgstr ""
101
 
102
  #: gallery-plugin.php:228
103
- #: gallery-plugin.php:959
104
  #, fuzzy
105
  msgid "Sort images by"
106
  msgstr "Contar las imágenes en la fila"
@@ -172,317 +172,339 @@ msgid "Publishing"
172
  msgstr "Pública"
173
 
174
  #: gallery-plugin.php:483
175
- #: gallery-plugin.php:963
176
  msgid "Date"
177
  msgstr "Fecha"
178
 
179
- #: gallery-plugin.php:652
180
  #, fuzzy
181
  msgid "Pro plugins"
182
  msgstr "Plugins recomendados"
183
 
184
- #: gallery-plugin.php:655
185
- #: gallery-plugin.php:681
186
  msgid "Activated plugins"
187
  msgstr "Plugins Activados"
188
 
189
- #: gallery-plugin.php:657
190
- #: gallery-plugin.php:665
191
- #: gallery-plugin.php:673
192
- #: gallery-plugin.php:683
193
- #: gallery-plugin.php:691
194
- #: gallery-plugin.php:699
195
  msgid "Read more"
196
  msgstr "Leer más"
197
 
198
- #: gallery-plugin.php:657
199
- #: gallery-plugin.php:683
200
- #: gallery-plugin.php:1028
201
- #: gallery-plugin.php:1043
202
  msgid "Settings"
203
  msgstr "Configuración"
204
 
205
- #: gallery-plugin.php:663
206
- #: gallery-plugin.php:689
207
  msgid "Installed plugins"
208
  msgstr "Plugins instalados"
209
 
210
- #: gallery-plugin.php:671
211
- #: gallery-plugin.php:697
212
  msgid "Recommended plugins"
213
  msgstr "Plugins recomendados"
214
 
215
- #: gallery-plugin.php:673
216
  msgid "Purchase"
217
  msgstr ""
218
 
219
- #: gallery-plugin.php:678
220
  #, fuzzy
221
  msgid "Free plugins"
222
  msgstr "Plugins recomendados"
223
 
224
- #: gallery-plugin.php:699
225
  msgid "Download"
226
  msgstr "Descargar"
227
 
228
- #: gallery-plugin.php:699
229
  #, php-format
230
  msgid "Install %s"
231
  msgstr "Instalar %s"
232
 
233
- #: gallery-plugin.php:699
234
  msgid "Install now from wordpress.org"
235
  msgstr "Instalar ahora desde wordpress.org"
236
 
237
- #: gallery-plugin.php:704
238
  #, fuzzy
239
  msgid "If you have any questions, please contact us via"
240
  msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
241
 
242
- #: gallery-plugin.php:739
243
  #, fuzzy
244
  msgid "See images &raquo;"
245
  msgstr "Ver foto &raquo;"
246
 
247
- #: gallery-plugin.php:838
248
  #, fuzzy
249
  msgid "Settings are saved"
250
  msgstr "Opciones guardadas."
251
 
252
- #: gallery-plugin.php:852
253
  #, fuzzy
254
  msgid "Gallery Settings"
255
  msgstr "Opciones de Galería"
256
 
257
- #: gallery-plugin.php:855
258
  #, fuzzy
259
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
260
  msgstr "Si deseas añadir la Galería solamente en tu página o post, solo copia y pega el shortcode en la página o post correspondiente:"
261
 
262
- #: gallery-plugin.php:859
263
  #, fuzzy
264
  msgid "Image size for the album cover"
265
  msgstr "Размер для "
266
 
267
- #: gallery-plugin.php:861
268
- #: gallery-plugin.php:869
269
- #: gallery-plugin.php:882
270
  #, fuzzy
271
  msgid "Image size"
272
  msgstr "Nombre del tamaño de la imagen"
273
 
274
- #: gallery-plugin.php:862
275
- #: gallery-plugin.php:870
276
  msgid "Width (in px)"
277
  msgstr "Ancho (en px)"
278
 
279
- #: gallery-plugin.php:863
280
- #: gallery-plugin.php:871
281
  msgid "Height (in px)"
282
  msgstr "Alto (en px)"
283
 
284
- #: gallery-plugin.php:867
285
  #, fuzzy
286
  msgid "Gallery image size"
287
  msgstr "Galerías"
288
 
289
- #: gallery-plugin.php:875
290
  #, fuzzy
291
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
292
  msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
293
 
294
- #: gallery-plugin.php:880
295
  msgid "Gallery image size in the lightbox"
296
  msgstr ""
297
 
298
- #: gallery-plugin.php:883
299
  #, fuzzy
300
  msgid "Max width (in px)"
301
  msgstr "Ancho (en px)"
302
 
303
- #: gallery-plugin.php:884
304
  #, fuzzy
305
  msgid "Max height (in px)"
306
  msgstr "Alto (en px)"
307
 
308
- #: gallery-plugin.php:885
309
  msgid "Display a full size image in the lightbox"
310
  msgstr ""
311
 
312
- #: gallery-plugin.php:889
313
  msgid "Crop position"
314
  msgstr ""
315
 
316
- #: gallery-plugin.php:891
317
  msgid "Horizontal"
318
  msgstr ""
319
 
320
- #: gallery-plugin.php:893
321
  msgid "left"
322
  msgstr ""
323
 
324
- #: gallery-plugin.php:894
325
- #: gallery-plugin.php:901
326
  msgid "center"
327
  msgstr ""
328
 
329
- #: gallery-plugin.php:895
330
  msgid "right"
331
  msgstr ""
332
 
333
- #: gallery-plugin.php:898
334
  msgid "Vertical"
335
  msgstr ""
336
 
337
- #: gallery-plugin.php:900
338
  msgid "top"
339
  msgstr ""
340
 
341
- #: gallery-plugin.php:902
342
  msgid "bottom"
343
  msgstr ""
344
 
345
- #: gallery-plugin.php:907
346
  msgid "Lightbox background"
347
  msgstr ""
348
 
349
- #: gallery-plugin.php:909
350
  msgid "Default"
351
  msgstr ""
352
 
353
- #: gallery-plugin.php:910
354
  msgid "Background transparency (from 0 to 1)"
355
  msgstr ""
356
 
357
- #: gallery-plugin.php:912
358
  msgid "Select a background color"
359
  msgstr ""
360
 
361
- #: gallery-plugin.php:914
362
  msgid "Background color"
363
  msgstr ""
364
 
365
- #: gallery-plugin.php:921
 
366
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
367
  msgstr ""
368
 
369
- #: gallery-plugin.php:928
370
  msgid "Images with border"
371
  msgstr ""
372
 
373
- #: gallery-plugin.php:931
374
  msgid "Border width in px, just numbers"
375
  msgstr ""
376
 
377
- #: gallery-plugin.php:933
378
- #: gallery-plugin.php:935
379
  msgid "Select a border color"
380
  msgstr ""
381
 
382
- #: gallery-plugin.php:941
383
  #, fuzzy
384
  msgid "Number of images in the row"
385
  msgstr "Contar las imágenes en la fila"
386
 
387
- #: gallery-plugin.php:947
388
  msgid "Start slideshow"
389
  msgstr "Comenzar presentación diapositivas"
390
 
391
- #: gallery-plugin.php:953
392
  msgid "Slideshow interval"
393
  msgstr "Intervalo de presentación diapositivas"
394
 
395
- #: gallery-plugin.php:961
396
  #, fuzzy
397
  msgid "Attachment ID"
398
  msgstr "id del adjunto"
399
 
400
- #: gallery-plugin.php:962
401
  #, fuzzy
402
  msgid "Image Name"
403
  msgstr "Imagen"
404
 
405
- #: gallery-plugin.php:964
406
  #, fuzzy
407
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
408
  msgstr "orden de los adjuntos (el valor entero mostrado en el campo del dialog Insertar / Subir Galeria de Medias)"
409
 
410
- #: gallery-plugin.php:965
411
  #, fuzzy
412
  msgid "Random"
413
  msgstr "aleatorio"
414
 
415
- #: gallery-plugin.php:969
416
  #, fuzzy
417
  msgid "Sort images"
418
  msgstr "Contar las imágenes en la fila"
419
 
420
- #: gallery-plugin.php:971
421
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
422
  msgstr "ASC (orden ascendente desde el valor menor al mayor - 1, 2, 3; a, b, c)"
423
 
424
- #: gallery-plugin.php:972
425
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
426
  msgstr "DESC (orden descendente desde el valor mayor al menor - 3, 2, 1; c, b, a)"
427
 
428
- #: gallery-plugin.php:976
429
  msgid "Display text above the image"
430
  msgstr ""
431
 
432
- #: gallery-plugin.php:978
433
  msgid "If you want to display text just in a lightbox"
434
  msgstr ""
435
 
436
- #: gallery-plugin.php:982
437
  #, fuzzy
438
  msgid "Display the Back link"
439
  msgstr "Mostrar el enlace de Regresar"
440
 
441
- #: gallery-plugin.php:988
442
  #, fuzzy
443
  msgid "Display the Back link in the shortcode"
444
  msgstr "Mostrar el enlace de Regresar en shortcode"
445
 
446
- #: gallery-plugin.php:994
447
  msgid "The Back link text"
448
  msgstr ""
449
 
450
- #: gallery-plugin.php:1000
451
  msgid "The Back link URL"
452
  msgstr ""
453
 
454
- #: gallery-plugin.php:1002
455
  msgid "Gallery page (Page with Gallery Template)"
456
  msgstr ""
457
 
458
- #: gallery-plugin.php:1004
459
  msgid "(Full URL to custom page)"
460
  msgstr ""
461
 
462
- #: gallery-plugin.php:1008
463
  #, fuzzy
464
  msgid "The Read More link text"
465
  msgstr "Etiqueta para el enlace Leer Mas"
466
 
467
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
  msgid "Save Changes"
469
  msgstr "Guardar Cambios"
470
 
471
- #: gallery-plugin.php:1029
472
  msgid "FAQ"
473
  msgstr "FAQ "
474
 
475
- #: gallery-plugin.php:1030
476
  msgid "Support"
477
  msgstr "Soporte"
478
 
479
- #: gallery-plugin.php:1237
480
  #: template/gallery-single-template.php:76
481
  #, fuzzy
482
  msgid "Sorry, nothing found."
483
  msgstr "Lo sentimos - nada que encontrar."
484
 
485
- #: gallery-plugin.php:1259
486
  #: template/gallery-single-template.php:101
487
  #, fuzzy
488
  msgid "Download high resolution image"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:13+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
23
 
27
  msgstr "Galerías"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galería"
33
 
100
  msgstr ""
101
 
102
  #: gallery-plugin.php:228
103
+ #: gallery-plugin.php:960
104
  #, fuzzy
105
  msgid "Sort images by"
106
  msgstr "Contar las imágenes en la fila"
172
  msgstr "Pública"
173
 
174
  #: gallery-plugin.php:483
175
+ #: gallery-plugin.php:964
176
  msgid "Date"
177
  msgstr "Fecha"
178
 
179
+ #: gallery-plugin.php:653
180
  #, fuzzy
181
  msgid "Pro plugins"
182
  msgstr "Plugins recomendados"
183
 
184
+ #: gallery-plugin.php:656
185
+ #: gallery-plugin.php:682
186
  msgid "Activated plugins"
187
  msgstr "Plugins Activados"
188
 
189
+ #: gallery-plugin.php:658
190
+ #: gallery-plugin.php:666
191
+ #: gallery-plugin.php:674
192
+ #: gallery-plugin.php:684
193
+ #: gallery-plugin.php:692
194
+ #: gallery-plugin.php:700
195
  msgid "Read more"
196
  msgstr "Leer más"
197
 
198
+ #: gallery-plugin.php:658
199
+ #: gallery-plugin.php:684
200
+ #: gallery-plugin.php:1047
201
+ #: gallery-plugin.php:1062
202
  msgid "Settings"
203
  msgstr "Configuración"
204
 
205
+ #: gallery-plugin.php:664
206
+ #: gallery-plugin.php:690
207
  msgid "Installed plugins"
208
  msgstr "Plugins instalados"
209
 
210
+ #: gallery-plugin.php:672
211
+ #: gallery-plugin.php:698
212
  msgid "Recommended plugins"
213
  msgstr "Plugins recomendados"
214
 
215
+ #: gallery-plugin.php:674
216
  msgid "Purchase"
217
  msgstr ""
218
 
219
+ #: gallery-plugin.php:679
220
  #, fuzzy
221
  msgid "Free plugins"
222
  msgstr "Plugins recomendados"
223
 
224
+ #: gallery-plugin.php:700
225
  msgid "Download"
226
  msgstr "Descargar"
227
 
228
+ #: gallery-plugin.php:700
229
  #, php-format
230
  msgid "Install %s"
231
  msgstr "Instalar %s"
232
 
233
+ #: gallery-plugin.php:700
234
  msgid "Install now from wordpress.org"
235
  msgstr "Instalar ahora desde wordpress.org"
236
 
237
+ #: gallery-plugin.php:705
238
  #, fuzzy
239
  msgid "If you have any questions, please contact us via"
240
  msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
241
 
242
+ #: gallery-plugin.php:740
243
  #, fuzzy
244
  msgid "See images &raquo;"
245
  msgstr "Ver foto &raquo;"
246
 
247
+ #: gallery-plugin.php:839
248
  #, fuzzy
249
  msgid "Settings are saved"
250
  msgstr "Opciones guardadas."
251
 
252
+ #: gallery-plugin.php:853
253
  #, fuzzy
254
  msgid "Gallery Settings"
255
  msgstr "Opciones de Galería"
256
 
257
+ #: gallery-plugin.php:856
258
  #, fuzzy
259
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
260
  msgstr "Si deseas añadir la Galería solamente en tu página o post, solo copia y pega el shortcode en la página o post correspondiente:"
261
 
262
+ #: gallery-plugin.php:860
263
  #, fuzzy
264
  msgid "Image size for the album cover"
265
  msgstr "Размер для "
266
 
267
+ #: gallery-plugin.php:862
268
+ #: gallery-plugin.php:870
269
+ #: gallery-plugin.php:883
270
  #, fuzzy
271
  msgid "Image size"
272
  msgstr "Nombre del tamaño de la imagen"
273
 
274
+ #: gallery-plugin.php:863
275
+ #: gallery-plugin.php:871
276
  msgid "Width (in px)"
277
  msgstr "Ancho (en px)"
278
 
279
+ #: gallery-plugin.php:864
280
+ #: gallery-plugin.php:872
281
  msgid "Height (in px)"
282
  msgstr "Alto (en px)"
283
 
284
+ #: gallery-plugin.php:868
285
  #, fuzzy
286
  msgid "Gallery image size"
287
  msgstr "Galerías"
288
 
289
+ #: gallery-plugin.php:876
290
  #, fuzzy
291
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
292
  msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
293
 
294
+ #: gallery-plugin.php:881
295
  msgid "Gallery image size in the lightbox"
296
  msgstr ""
297
 
298
+ #: gallery-plugin.php:884
299
  #, fuzzy
300
  msgid "Max width (in px)"
301
  msgstr "Ancho (en px)"
302
 
303
+ #: gallery-plugin.php:885
304
  #, fuzzy
305
  msgid "Max height (in px)"
306
  msgstr "Alto (en px)"
307
 
308
+ #: gallery-plugin.php:886
309
  msgid "Display a full size image in the lightbox"
310
  msgstr ""
311
 
312
+ #: gallery-plugin.php:890
313
  msgid "Crop position"
314
  msgstr ""
315
 
316
+ #: gallery-plugin.php:892
317
  msgid "Horizontal"
318
  msgstr ""
319
 
320
+ #: gallery-plugin.php:894
321
  msgid "left"
322
  msgstr ""
323
 
324
+ #: gallery-plugin.php:895
325
+ #: gallery-plugin.php:902
326
  msgid "center"
327
  msgstr ""
328
 
329
+ #: gallery-plugin.php:896
330
  msgid "right"
331
  msgstr ""
332
 
333
+ #: gallery-plugin.php:899
334
  msgid "Vertical"
335
  msgstr ""
336
 
337
+ #: gallery-plugin.php:901
338
  msgid "top"
339
  msgstr ""
340
 
341
+ #: gallery-plugin.php:903
342
  msgid "bottom"
343
  msgstr ""
344
 
345
+ #: gallery-plugin.php:908
346
  msgid "Lightbox background"
347
  msgstr ""
348
 
349
+ #: gallery-plugin.php:910
350
  msgid "Default"
351
  msgstr ""
352
 
353
+ #: gallery-plugin.php:911
354
  msgid "Background transparency (from 0 to 1)"
355
  msgstr ""
356
 
357
+ #: gallery-plugin.php:913
358
  msgid "Select a background color"
359
  msgstr ""
360
 
361
+ #: gallery-plugin.php:915
362
  msgid "Background color"
363
  msgstr ""
364
 
365
+ #: gallery-plugin.php:922
366
+ #: gallery-plugin.php:1027
367
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
368
  msgstr ""
369
 
370
+ #: gallery-plugin.php:929
371
  msgid "Images with border"
372
  msgstr ""
373
 
374
+ #: gallery-plugin.php:932
375
  msgid "Border width in px, just numbers"
376
  msgstr ""
377
 
378
+ #: gallery-plugin.php:934
379
+ #: gallery-plugin.php:936
380
  msgid "Select a border color"
381
  msgstr ""
382
 
383
+ #: gallery-plugin.php:942
384
  #, fuzzy
385
  msgid "Number of images in the row"
386
  msgstr "Contar las imágenes en la fila"
387
 
388
+ #: gallery-plugin.php:948
389
  msgid "Start slideshow"
390
  msgstr "Comenzar presentación diapositivas"
391
 
392
+ #: gallery-plugin.php:954
393
  msgid "Slideshow interval"
394
  msgstr "Intervalo de presentación diapositivas"
395
 
396
+ #: gallery-plugin.php:962
397
  #, fuzzy
398
  msgid "Attachment ID"
399
  msgstr "id del adjunto"
400
 
401
+ #: gallery-plugin.php:963
402
  #, fuzzy
403
  msgid "Image Name"
404
  msgstr "Imagen"
405
 
406
+ #: gallery-plugin.php:965
407
  #, fuzzy
408
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
409
  msgstr "orden de los adjuntos (el valor entero mostrado en el campo del dialog Insertar / Subir Galeria de Medias)"
410
 
411
+ #: gallery-plugin.php:966
412
  #, fuzzy
413
  msgid "Random"
414
  msgstr "aleatorio"
415
 
416
+ #: gallery-plugin.php:970
417
  #, fuzzy
418
  msgid "Sort images"
419
  msgstr "Contar las imágenes en la fila"
420
 
421
+ #: gallery-plugin.php:972
422
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
423
  msgstr "ASC (orden ascendente desde el valor menor al mayor - 1, 2, 3; a, b, c)"
424
 
425
+ #: gallery-plugin.php:973
426
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
427
  msgstr "DESC (orden descendente desde el valor mayor al menor - 3, 2, 1; c, b, a)"
428
 
429
+ #: gallery-plugin.php:977
430
  msgid "Display text above the image"
431
  msgstr ""
432
 
433
+ #: gallery-plugin.php:979
434
  msgid "If you want to display text just in a lightbox"
435
  msgstr ""
436
 
437
+ #: gallery-plugin.php:983
438
  #, fuzzy
439
  msgid "Display the Back link"
440
  msgstr "Mostrar el enlace de Regresar"
441
 
442
+ #: gallery-plugin.php:989
443
  #, fuzzy
444
  msgid "Display the Back link in the shortcode"
445
  msgstr "Mostrar el enlace de Regresar en shortcode"
446
 
447
+ #: gallery-plugin.php:995
448
  msgid "The Back link text"
449
  msgstr ""
450
 
451
+ #: gallery-plugin.php:1001
452
  msgid "The Back link URL"
453
  msgstr ""
454
 
455
+ #: gallery-plugin.php:1003
456
  msgid "Gallery page (Page with Gallery Template)"
457
  msgstr ""
458
 
459
+ #: gallery-plugin.php:1005
460
  msgid "(Full URL to custom page)"
461
  msgstr ""
462
 
463
+ #: gallery-plugin.php:1009
464
  #, fuzzy
465
  msgid "The Read More link text"
466
  msgstr "Etiqueta para el enlace Leer Mas"
467
 
468
+ #: gallery-plugin.php:1017
469
+ msgid "Display Like buttons in the lightbox"
470
+ msgstr ""
471
+
472
+ #: gallery-plugin.php:1019
473
+ msgid "FaceBook"
474
+ msgstr ""
475
+
476
+ #: gallery-plugin.php:1020
477
+ #, fuzzy
478
+ msgid "Twitter"
479
+ msgstr "Título"
480
+
481
+ #: gallery-plugin.php:1021
482
+ msgid "Pinterest"
483
+ msgstr ""
484
+
485
+ #: gallery-plugin.php:1022
486
+ msgid "Google +1"
487
+ msgstr ""
488
+
489
+ #: gallery-plugin.php:1035
490
  msgid "Save Changes"
491
  msgstr "Guardar Cambios"
492
 
493
+ #: gallery-plugin.php:1048
494
  msgid "FAQ"
495
  msgstr "FAQ "
496
 
497
+ #: gallery-plugin.php:1049
498
  msgid "Support"
499
  msgstr "Soporte"
500
 
501
+ #: gallery-plugin.php:1256
502
  #: template/gallery-single-template.php:76
503
  #, fuzzy
504
  msgid "Sorry, nothing found."
505
  msgstr "Lo sentimos - nada que encontrar."
506
 
507
+ #: gallery-plugin.php:1278
508
  #: template/gallery-single-template.php:101
509
  #, fuzzy
510
  msgid "Download high resolution image"
languages/gallery-fa_IR.mo CHANGED
Binary file
languages/gallery-fa_IR.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: 2013-05-28 16:01+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:01+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Einolah Kiamehr <einkia@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:103
21
- #: gallery-plugin.php:845
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "گالری ها"
29
 
30
  #: gallery-plugin.php:128
31
- #: gallery-plugin.php:712
32
  msgid "Gallery"
33
  msgstr "گالری"
34
 
@@ -98,7 +98,7 @@ msgid "Please make a choice"
98
  msgstr ""
99
 
100
  #: gallery-plugin.php:228
101
- #: gallery-plugin.php:959
102
  #, fuzzy
103
  msgid "Sort images by"
104
  msgstr "تعداد عکسها در سطر"
@@ -170,315 +170,337 @@ msgid "Publishing"
170
  msgstr "عمومی"
171
 
172
  #: gallery-plugin.php:483
173
- #: gallery-plugin.php:963
174
  msgid "Date"
175
  msgstr "تاریخ"
176
 
177
- #: gallery-plugin.php:652
178
  msgid "Pro plugins"
179
  msgstr ""
180
 
181
- #: gallery-plugin.php:655
182
- #: gallery-plugin.php:681
183
  msgid "Activated plugins"
184
  msgstr "فعالسازی افزونه"
185
 
186
- #: gallery-plugin.php:657
187
- #: gallery-plugin.php:665
188
- #: gallery-plugin.php:673
189
- #: gallery-plugin.php:683
190
- #: gallery-plugin.php:691
191
- #: gallery-plugin.php:699
192
  msgid "Read more"
193
  msgstr "بیشتر..."
194
 
195
- #: gallery-plugin.php:657
196
- #: gallery-plugin.php:683
197
- #: gallery-plugin.php:1028
198
- #: gallery-plugin.php:1043
199
  msgid "Settings"
200
  msgstr "تنظیمات"
201
 
202
- #: gallery-plugin.php:663
203
- #: gallery-plugin.php:689
204
  msgid "Installed plugins"
205
  msgstr "نصب افزونه"
206
 
207
- #: gallery-plugin.php:671
208
- #: gallery-plugin.php:697
209
  msgid "Recommended plugins"
210
  msgstr ""
211
 
212
- #: gallery-plugin.php:673
213
  msgid "Purchase"
214
  msgstr ""
215
 
216
- #: gallery-plugin.php:678
217
  #, fuzzy
218
  msgid "Free plugins"
219
  msgstr "فعالسازی افزونه"
220
 
221
- #: gallery-plugin.php:699
222
  msgid "Download"
223
  msgstr "دانلود"
224
 
225
- #: gallery-plugin.php:699
226
  #, php-format
227
  msgid "Install %s"
228
  msgstr "نصب %s"
229
 
230
- #: gallery-plugin.php:699
231
  msgid "Install now from wordpress.org"
232
  msgstr "در حال نصب از سایت وردپرس"
233
 
234
- #: gallery-plugin.php:704
235
  #, fuzzy
236
  msgid "If you have any questions, please contact us via"
237
  msgstr "اگر شما سوالی دارید؛لطفا با ما با آدرس plugin@bestwebsoft.com تماس بگیرید یا فرم تماس مارا در سایتمان پر کنید و سوال خود را آنجا بنویسید."
238
 
239
- #: gallery-plugin.php:739
240
  #, fuzzy
241
  msgid "See images &raquo;"
242
  msgstr "&raquoدیدن عکس;"
243
 
244
- #: gallery-plugin.php:838
245
  #, fuzzy
246
  msgid "Settings are saved"
247
  msgstr "تنظیمات ذخیره شد."
248
 
249
- #: gallery-plugin.php:852
250
  #, fuzzy
251
  msgid "Gallery Settings"
252
  msgstr "تنظیمات گالری"
253
 
254
- #: gallery-plugin.php:855
255
  #, fuzzy
256
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
257
  msgstr "اگر میخواهید یک گالری جدید اضافه کنید ، کافیه shortcode را در نوشته یا برگه خود کپی کنید"
258
 
259
- #: gallery-plugin.php:859
260
  #, fuzzy
261
  msgid "Image size for the album cover"
262
  msgstr "اندازه دوره آلبوم گالری"
263
 
264
- #: gallery-plugin.php:861
265
- #: gallery-plugin.php:869
266
- #: gallery-plugin.php:882
267
  #, fuzzy
268
  msgid "Image size"
269
  msgstr " اندازه عکس"
270
 
271
- #: gallery-plugin.php:862
272
- #: gallery-plugin.php:870
273
  msgid "Width (in px)"
274
  msgstr "عرض (به pixels)"
275
 
276
- #: gallery-plugin.php:863
277
- #: gallery-plugin.php:871
278
  msgid "Height (in px)"
279
  msgstr "ارتفاع (به pixels)"
280
 
281
- #: gallery-plugin.php:867
282
  #, fuzzy
283
  msgid "Gallery image size"
284
  msgstr "گالری ها"
285
 
286
- #: gallery-plugin.php:875
287
  #, fuzzy
288
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
289
  msgstr "وردپرس میتواند یک کپی از عکسهای بند انگشتی نوشته ها را با اندازه دلخواه بسازد وقتی شما یک عکس جدید را بار گذاری میکنید."
290
 
291
- #: gallery-plugin.php:880
292
  msgid "Gallery image size in the lightbox"
293
  msgstr ""
294
 
295
- #: gallery-plugin.php:883
296
  #, fuzzy
297
  msgid "Max width (in px)"
298
  msgstr "عرض (به pixels)"
299
 
300
- #: gallery-plugin.php:884
301
  #, fuzzy
302
  msgid "Max height (in px)"
303
  msgstr "ارتفاع (به pixels)"
304
 
305
- #: gallery-plugin.php:885
306
  msgid "Display a full size image in the lightbox"
307
  msgstr ""
308
 
309
- #: gallery-plugin.php:889
310
  msgid "Crop position"
311
  msgstr ""
312
 
313
- #: gallery-plugin.php:891
314
  msgid "Horizontal"
315
  msgstr ""
316
 
317
- #: gallery-plugin.php:893
318
  msgid "left"
319
  msgstr ""
320
 
321
- #: gallery-plugin.php:894
322
- #: gallery-plugin.php:901
323
  msgid "center"
324
  msgstr ""
325
 
326
- #: gallery-plugin.php:895
327
  msgid "right"
328
  msgstr ""
329
 
330
- #: gallery-plugin.php:898
331
  msgid "Vertical"
332
  msgstr ""
333
 
334
- #: gallery-plugin.php:900
335
  msgid "top"
336
  msgstr ""
337
 
338
- #: gallery-plugin.php:902
339
  msgid "bottom"
340
  msgstr ""
341
 
342
- #: gallery-plugin.php:907
343
  msgid "Lightbox background"
344
  msgstr ""
345
 
346
- #: gallery-plugin.php:909
347
  msgid "Default"
348
  msgstr ""
349
 
350
- #: gallery-plugin.php:910
351
  msgid "Background transparency (from 0 to 1)"
352
  msgstr ""
353
 
354
- #: gallery-plugin.php:912
355
  msgid "Select a background color"
356
  msgstr ""
357
 
358
- #: gallery-plugin.php:914
359
  msgid "Background color"
360
  msgstr ""
361
 
362
- #: gallery-plugin.php:921
 
363
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
364
  msgstr ""
365
 
366
- #: gallery-plugin.php:928
367
  msgid "Images with border"
368
  msgstr ""
369
 
370
- #: gallery-plugin.php:931
371
  msgid "Border width in px, just numbers"
372
  msgstr ""
373
 
374
- #: gallery-plugin.php:933
375
- #: gallery-plugin.php:935
376
  msgid "Select a border color"
377
  msgstr ""
378
 
379
- #: gallery-plugin.php:941
380
  #, fuzzy
381
  msgid "Number of images in the row"
382
  msgstr "تعداد عکسها در سطر"
383
 
384
- #: gallery-plugin.php:947
385
  msgid "Start slideshow"
386
  msgstr "نمایش اسلایدشو"
387
 
388
- #: gallery-plugin.php:953
389
  msgid "Slideshow interval"
390
  msgstr "فاصله بین اسلایدشو"
391
 
392
- #: gallery-plugin.php:961
393
  #, fuzzy
394
  msgid "Attachment ID"
395
  msgstr "ای دی سنجاق شده "
396
 
397
- #: gallery-plugin.php:962
398
  #, fuzzy
399
  msgid "Image Name"
400
  msgstr "عکس "
401
 
402
- #: gallery-plugin.php:964
403
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
404
  msgstr ""
405
 
406
- #: gallery-plugin.php:965
407
  #, fuzzy
408
  msgid "Random"
409
  msgstr "تصادفی"
410
 
411
- #: gallery-plugin.php:969
412
  #, fuzzy
413
  msgid "Sort images"
414
  msgstr "تعداد عکسها در سطر"
415
 
416
- #: gallery-plugin.php:971
417
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
418
  msgstr ""
419
 
420
- #: gallery-plugin.php:972
421
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
422
  msgstr ""
423
 
424
- #: gallery-plugin.php:976
425
  msgid "Display text above the image"
426
  msgstr ""
427
 
428
- #: gallery-plugin.php:978
429
  msgid "If you want to display text just in a lightbox"
430
  msgstr ""
431
 
432
- #: gallery-plugin.php:982
433
  #, fuzzy
434
  msgid "Display the Back link"
435
  msgstr "نشان دادن لینک برگشت"
436
 
437
- #: gallery-plugin.php:988
438
  #, fuzzy
439
  msgid "Display the Back link in the shortcode"
440
  msgstr "نشان دادن لینک برگشت در شرت کد"
441
 
442
- #: gallery-plugin.php:994
443
  msgid "The Back link text"
444
  msgstr ""
445
 
446
- #: gallery-plugin.php:1000
447
  msgid "The Back link URL"
448
  msgstr ""
449
 
450
- #: gallery-plugin.php:1002
451
  msgid "Gallery page (Page with Gallery Template)"
452
  msgstr ""
453
 
454
- #: gallery-plugin.php:1004
455
  msgid "(Full URL to custom page)"
456
  msgstr ""
457
 
458
- #: gallery-plugin.php:1008
459
  #, fuzzy
460
  msgid "The Read More link text"
461
  msgstr "برچسب برای لینک بیشتر..."
462
 
463
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgid "Save Changes"
465
  msgstr "ذخیره تنظیمات"
466
 
467
- #: gallery-plugin.php:1029
468
  msgid "FAQ"
469
  msgstr "FAQ"
470
 
471
- #: gallery-plugin.php:1030
472
  msgid "Support"
473
  msgstr "پشتیبانی"
474
 
475
- #: gallery-plugin.php:1237
476
  #: template/gallery-single-template.php:76
477
  #, fuzzy
478
  msgid "Sorry, nothing found."
479
  msgstr "متاسفم؛چیزی یافت نشد"
480
 
481
- #: gallery-plugin.php:1259
482
  #: template/gallery-single-template.php:101
483
  msgid "Download high resolution image"
484
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:13+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Einolah Kiamehr <einkia@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:103
21
+ #: gallery-plugin.php:846
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "گالری ها"
29
 
30
  #: gallery-plugin.php:128
31
+ #: gallery-plugin.php:713
32
  msgid "Gallery"
33
  msgstr "گالری"
34
 
98
  msgstr ""
99
 
100
  #: gallery-plugin.php:228
101
+ #: gallery-plugin.php:960
102
  #, fuzzy
103
  msgid "Sort images by"
104
  msgstr "تعداد عکسها در سطر"
170
  msgstr "عمومی"
171
 
172
  #: gallery-plugin.php:483
173
+ #: gallery-plugin.php:964
174
  msgid "Date"
175
  msgstr "تاریخ"
176
 
177
+ #: gallery-plugin.php:653
178
  msgid "Pro plugins"
179
  msgstr ""
180
 
181
+ #: gallery-plugin.php:656
182
+ #: gallery-plugin.php:682
183
  msgid "Activated plugins"
184
  msgstr "فعالسازی افزونه"
185
 
186
+ #: gallery-plugin.php:658
187
+ #: gallery-plugin.php:666
188
+ #: gallery-plugin.php:674
189
+ #: gallery-plugin.php:684
190
+ #: gallery-plugin.php:692
191
+ #: gallery-plugin.php:700
192
  msgid "Read more"
193
  msgstr "بیشتر..."
194
 
195
+ #: gallery-plugin.php:658
196
+ #: gallery-plugin.php:684
197
+ #: gallery-plugin.php:1047
198
+ #: gallery-plugin.php:1062
199
  msgid "Settings"
200
  msgstr "تنظیمات"
201
 
202
+ #: gallery-plugin.php:664
203
+ #: gallery-plugin.php:690
204
  msgid "Installed plugins"
205
  msgstr "نصب افزونه"
206
 
207
+ #: gallery-plugin.php:672
208
+ #: gallery-plugin.php:698
209
  msgid "Recommended plugins"
210
  msgstr ""
211
 
212
+ #: gallery-plugin.php:674
213
  msgid "Purchase"
214
  msgstr ""
215
 
216
+ #: gallery-plugin.php:679
217
  #, fuzzy
218
  msgid "Free plugins"
219
  msgstr "فعالسازی افزونه"
220
 
221
+ #: gallery-plugin.php:700
222
  msgid "Download"
223
  msgstr "دانلود"
224
 
225
+ #: gallery-plugin.php:700
226
  #, php-format
227
  msgid "Install %s"
228
  msgstr "نصب %s"
229
 
230
+ #: gallery-plugin.php:700
231
  msgid "Install now from wordpress.org"
232
  msgstr "در حال نصب از سایت وردپرس"
233
 
234
+ #: gallery-plugin.php:705
235
  #, fuzzy
236
  msgid "If you have any questions, please contact us via"
237
  msgstr "اگر شما سوالی دارید؛لطفا با ما با آدرس plugin@bestwebsoft.com تماس بگیرید یا فرم تماس مارا در سایتمان پر کنید و سوال خود را آنجا بنویسید."
238
 
239
+ #: gallery-plugin.php:740
240
  #, fuzzy
241
  msgid "See images &raquo;"
242
  msgstr "&raquoدیدن عکس;"
243
 
244
+ #: gallery-plugin.php:839
245
  #, fuzzy
246
  msgid "Settings are saved"
247
  msgstr "تنظیمات ذخیره شد."
248
 
249
+ #: gallery-plugin.php:853
250
  #, fuzzy
251
  msgid "Gallery Settings"
252
  msgstr "تنظیمات گالری"
253
 
254
+ #: gallery-plugin.php:856
255
  #, fuzzy
256
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
257
  msgstr "اگر میخواهید یک گالری جدید اضافه کنید ، کافیه shortcode را در نوشته یا برگه خود کپی کنید"
258
 
259
+ #: gallery-plugin.php:860
260
  #, fuzzy
261
  msgid "Image size for the album cover"
262
  msgstr "اندازه دوره آلبوم گالری"
263
 
264
+ #: gallery-plugin.php:862
265
+ #: gallery-plugin.php:870
266
+ #: gallery-plugin.php:883
267
  #, fuzzy
268
  msgid "Image size"
269
  msgstr " اندازه عکس"
270
 
271
+ #: gallery-plugin.php:863
272
+ #: gallery-plugin.php:871
273
  msgid "Width (in px)"
274
  msgstr "عرض (به pixels)"
275
 
276
+ #: gallery-plugin.php:864
277
+ #: gallery-plugin.php:872
278
  msgid "Height (in px)"
279
  msgstr "ارتفاع (به pixels)"
280
 
281
+ #: gallery-plugin.php:868
282
  #, fuzzy
283
  msgid "Gallery image size"
284
  msgstr "گالری ها"
285
 
286
+ #: gallery-plugin.php:876
287
  #, fuzzy
288
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
289
  msgstr "وردپرس میتواند یک کپی از عکسهای بند انگشتی نوشته ها را با اندازه دلخواه بسازد وقتی شما یک عکس جدید را بار گذاری میکنید."
290
 
291
+ #: gallery-plugin.php:881
292
  msgid "Gallery image size in the lightbox"
293
  msgstr ""
294
 
295
+ #: gallery-plugin.php:884
296
  #, fuzzy
297
  msgid "Max width (in px)"
298
  msgstr "عرض (به pixels)"
299
 
300
+ #: gallery-plugin.php:885
301
  #, fuzzy
302
  msgid "Max height (in px)"
303
  msgstr "ارتفاع (به pixels)"
304
 
305
+ #: gallery-plugin.php:886
306
  msgid "Display a full size image in the lightbox"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:890
310
  msgid "Crop position"
311
  msgstr ""
312
 
313
+ #: gallery-plugin.php:892
314
  msgid "Horizontal"
315
  msgstr ""
316
 
317
+ #: gallery-plugin.php:894
318
  msgid "left"
319
  msgstr ""
320
 
321
+ #: gallery-plugin.php:895
322
+ #: gallery-plugin.php:902
323
  msgid "center"
324
  msgstr ""
325
 
326
+ #: gallery-plugin.php:896
327
  msgid "right"
328
  msgstr ""
329
 
330
+ #: gallery-plugin.php:899
331
  msgid "Vertical"
332
  msgstr ""
333
 
334
+ #: gallery-plugin.php:901
335
  msgid "top"
336
  msgstr ""
337
 
338
+ #: gallery-plugin.php:903
339
  msgid "bottom"
340
  msgstr ""
341
 
342
+ #: gallery-plugin.php:908
343
  msgid "Lightbox background"
344
  msgstr ""
345
 
346
+ #: gallery-plugin.php:910
347
  msgid "Default"
348
  msgstr ""
349
 
350
+ #: gallery-plugin.php:911
351
  msgid "Background transparency (from 0 to 1)"
352
  msgstr ""
353
 
354
+ #: gallery-plugin.php:913
355
  msgid "Select a background color"
356
  msgstr ""
357
 
358
+ #: gallery-plugin.php:915
359
  msgid "Background color"
360
  msgstr ""
361
 
362
+ #: gallery-plugin.php:922
363
+ #: gallery-plugin.php:1027
364
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:929
368
  msgid "Images with border"
369
  msgstr ""
370
 
371
+ #: gallery-plugin.php:932
372
  msgid "Border width in px, just numbers"
373
  msgstr ""
374
 
375
+ #: gallery-plugin.php:934
376
+ #: gallery-plugin.php:936
377
  msgid "Select a border color"
378
  msgstr ""
379
 
380
+ #: gallery-plugin.php:942
381
  #, fuzzy
382
  msgid "Number of images in the row"
383
  msgstr "تعداد عکسها در سطر"
384
 
385
+ #: gallery-plugin.php:948
386
  msgid "Start slideshow"
387
  msgstr "نمایش اسلایدشو"
388
 
389
+ #: gallery-plugin.php:954
390
  msgid "Slideshow interval"
391
  msgstr "فاصله بین اسلایدشو"
392
 
393
+ #: gallery-plugin.php:962
394
  #, fuzzy
395
  msgid "Attachment ID"
396
  msgstr "ای دی سنجاق شده "
397
 
398
+ #: gallery-plugin.php:963
399
  #, fuzzy
400
  msgid "Image Name"
401
  msgstr "عکس "
402
 
403
+ #: gallery-plugin.php:965
404
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
405
  msgstr ""
406
 
407
+ #: gallery-plugin.php:966
408
  #, fuzzy
409
  msgid "Random"
410
  msgstr "تصادفی"
411
 
412
+ #: gallery-plugin.php:970
413
  #, fuzzy
414
  msgid "Sort images"
415
  msgstr "تعداد عکسها در سطر"
416
 
417
+ #: gallery-plugin.php:972
418
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
419
  msgstr ""
420
 
421
+ #: gallery-plugin.php:973
422
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
423
  msgstr ""
424
 
425
+ #: gallery-plugin.php:977
426
  msgid "Display text above the image"
427
  msgstr ""
428
 
429
+ #: gallery-plugin.php:979
430
  msgid "If you want to display text just in a lightbox"
431
  msgstr ""
432
 
433
+ #: gallery-plugin.php:983
434
  #, fuzzy
435
  msgid "Display the Back link"
436
  msgstr "نشان دادن لینک برگشت"
437
 
438
+ #: gallery-plugin.php:989
439
  #, fuzzy
440
  msgid "Display the Back link in the shortcode"
441
  msgstr "نشان دادن لینک برگشت در شرت کد"
442
 
443
+ #: gallery-plugin.php:995
444
  msgid "The Back link text"
445
  msgstr ""
446
 
447
+ #: gallery-plugin.php:1001
448
  msgid "The Back link URL"
449
  msgstr ""
450
 
451
+ #: gallery-plugin.php:1003
452
  msgid "Gallery page (Page with Gallery Template)"
453
  msgstr ""
454
 
455
+ #: gallery-plugin.php:1005
456
  msgid "(Full URL to custom page)"
457
  msgstr ""
458
 
459
+ #: gallery-plugin.php:1009
460
  #, fuzzy
461
  msgid "The Read More link text"
462
  msgstr "برچسب برای لینک بیشتر..."
463
 
464
+ #: gallery-plugin.php:1017
465
+ msgid "Display Like buttons in the lightbox"
466
+ msgstr ""
467
+
468
+ #: gallery-plugin.php:1019
469
+ msgid "FaceBook"
470
+ msgstr ""
471
+
472
+ #: gallery-plugin.php:1020
473
+ #, fuzzy
474
+ msgid "Twitter"
475
+ msgstr "عنوان"
476
+
477
+ #: gallery-plugin.php:1021
478
+ msgid "Pinterest"
479
+ msgstr ""
480
+
481
+ #: gallery-plugin.php:1022
482
+ msgid "Google +1"
483
+ msgstr ""
484
+
485
+ #: gallery-plugin.php:1035
486
  msgid "Save Changes"
487
  msgstr "ذخیره تنظیمات"
488
 
489
+ #: gallery-plugin.php:1048
490
  msgid "FAQ"
491
  msgstr "FAQ"
492
 
493
+ #: gallery-plugin.php:1049
494
  msgid "Support"
495
  msgstr "پشتیبانی"
496
 
497
+ #: gallery-plugin.php:1256
498
  #: template/gallery-single-template.php:76
499
  #, fuzzy
500
  msgid "Sorry, nothing found."
501
  msgstr "متاسفم؛چیزی یافت نشد"
502
 
503
+ #: gallery-plugin.php:1278
504
  #: template/gallery-single-template.php:101
505
  msgid "Download high resolution image"
506
  msgstr ""
languages/gallery-fr_FR.mo CHANGED
Binary file
languages/gallery-fr_FR.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: 2013-05-28 16:01+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:01+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:103
21
- #: gallery-plugin.php:845
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galeries"
29
 
30
  #: gallery-plugin.php:128
31
- #: gallery-plugin.php:712
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
@@ -93,7 +93,7 @@ msgid "Please make a choice"
93
  msgstr "Merci de faire un choix"
94
 
95
  #: gallery-plugin.php:228
96
- #: gallery-plugin.php:959
97
  msgid "Sort images by"
98
  msgstr "Trier les images par"
99
 
@@ -158,296 +158,317 @@ msgid "Publishing"
158
  msgstr "Public"
159
 
160
  #: gallery-plugin.php:483
161
- #: gallery-plugin.php:963
162
  msgid "Date"
163
  msgstr "Date"
164
 
165
- #: gallery-plugin.php:652
166
- #, fuzzy
167
  msgid "Pro plugins"
168
- msgstr "Extensions recommandées"
169
 
170
- #: gallery-plugin.php:655
171
- #: gallery-plugin.php:681
172
  msgid "Activated plugins"
173
  msgstr "Extensions activées"
174
 
175
- #: gallery-plugin.php:657
176
- #: gallery-plugin.php:665
177
- #: gallery-plugin.php:673
178
- #: gallery-plugin.php:683
179
- #: gallery-plugin.php:691
180
- #: gallery-plugin.php:699
181
  msgid "Read more"
182
  msgstr "Lire plus..."
183
 
184
- #: gallery-plugin.php:657
185
- #: gallery-plugin.php:683
186
- #: gallery-plugin.php:1028
187
- #: gallery-plugin.php:1043
188
  msgid "Settings"
189
  msgstr "Paramètres"
190
 
191
- #: gallery-plugin.php:663
192
- #: gallery-plugin.php:689
193
  msgid "Installed plugins"
194
  msgstr "Extensions installées"
195
 
196
- #: gallery-plugin.php:671
197
- #: gallery-plugin.php:697
198
  msgid "Recommended plugins"
199
  msgstr "Extensions recommandées"
200
 
201
- #: gallery-plugin.php:673
202
  msgid "Purchase"
203
- msgstr ""
204
 
205
- #: gallery-plugin.php:678
206
- #, fuzzy
207
  msgid "Free plugins"
208
- msgstr "Extensions recommandées"
209
 
210
- #: gallery-plugin.php:699
211
  msgid "Download"
212
  msgstr "Télécharger"
213
 
214
- #: gallery-plugin.php:699
215
  #, php-format
216
  msgid "Install %s"
217
  msgstr "Installation %s"
218
 
219
- #: gallery-plugin.php:699
220
  msgid "Install now from wordpress.org"
221
  msgstr "Installation à partir de wordpress.org"
222
 
223
- #: gallery-plugin.php:704
224
  msgid "If you have any questions, please contact us via"
225
- msgstr "Si vous avez des questions, merci de nous contacter via"
226
 
227
- #: gallery-plugin.php:739
228
  msgid "See images &raquo;"
229
  msgstr "Voir les images &raquo;"
230
 
231
- #: gallery-plugin.php:838
232
  msgid "Settings are saved"
233
  msgstr "Paramètres sauvegardés."
234
 
235
- #: gallery-plugin.php:852
236
  msgid "Gallery Settings"
237
  msgstr "Paramètres de la galerie"
238
 
239
- #: gallery-plugin.php:855
240
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
241
  msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
242
 
243
- #: gallery-plugin.php:859
244
  msgid "Image size for the album cover"
245
  msgstr "Taille de la vignette de l'album"
246
 
247
- #: gallery-plugin.php:861
248
- #: gallery-plugin.php:869
249
- #: gallery-plugin.php:882
250
  msgid "Image size"
251
  msgstr "Taille de l'image"
252
 
253
- #: gallery-plugin.php:862
254
- #: gallery-plugin.php:870
255
  msgid "Width (in px)"
256
  msgstr "Largeur (en pixels)"
257
 
258
- #: gallery-plugin.php:863
259
- #: gallery-plugin.php:871
260
  msgid "Height (in px)"
261
  msgstr "Hauteur (en pixels)"
262
 
263
- #: gallery-plugin.php:867
264
  msgid "Gallery image size"
265
  msgstr "Taille de l'image de la galerie"
266
 
267
- #: gallery-plugin.php:875
268
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
269
  msgstr "WordPress créera une copie de la miniature avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
270
 
271
- #: gallery-plugin.php:880
272
  msgid "Gallery image size in the lightbox"
273
  msgstr "Taille de l'image de la galerie"
274
 
275
- #: gallery-plugin.php:883
276
  msgid "Max width (in px)"
277
  msgstr "Largeur maximum (en pixels)"
278
 
279
- #: gallery-plugin.php:884
280
  msgid "Max height (in px)"
281
  msgstr "Hauteur maximum (en pixels)"
282
 
283
- #: gallery-plugin.php:885
284
  msgid "Display a full size image in the lightbox"
285
  msgstr "Afficher une image en taille normale dans le boite"
286
 
287
- #: gallery-plugin.php:889
288
  msgid "Crop position"
289
  msgstr "Point de base"
290
 
291
- #: gallery-plugin.php:891
292
  msgid "Horizontal"
293
  msgstr "Horizontale"
294
 
295
- #: gallery-plugin.php:893
296
  msgid "left"
297
  msgstr "gauche"
298
 
299
- #: gallery-plugin.php:894
300
- #: gallery-plugin.php:901
301
  msgid "center"
302
  msgstr "centré"
303
 
304
- #: gallery-plugin.php:895
305
  msgid "right"
306
  msgstr "droite"
307
 
308
- #: gallery-plugin.php:898
309
  msgid "Vertical"
310
  msgstr "Verticale"
311
 
312
- #: gallery-plugin.php:900
313
  msgid "top"
314
  msgstr "haut"
315
 
316
- #: gallery-plugin.php:902
317
  msgid "bottom"
318
  msgstr "bas"
319
 
320
- #: gallery-plugin.php:907
321
  msgid "Lightbox background"
322
  msgstr "Fond de la boite"
323
 
324
- #: gallery-plugin.php:909
325
  msgid "Default"
326
  msgstr "Défaut"
327
 
328
- #: gallery-plugin.php:910
329
  msgid "Background transparency (from 0 to 1)"
330
  msgstr "Transparence du fond (de 0 à 1)"
331
 
332
- #: gallery-plugin.php:912
333
  msgid "Select a background color"
334
  msgstr "Choisir une couleur pour le fond"
335
 
336
- #: gallery-plugin.php:914
337
  msgid "Background color"
338
  msgstr "Couleur du fond"
339
 
340
- #: gallery-plugin.php:921
 
341
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
342
  msgstr "Cette fonction est disponible dans le version pro de ce plugin. Pour plus de détails, suivre le lien"
343
 
344
- #: gallery-plugin.php:928
345
  msgid "Images with border"
346
  msgstr "Image avec bordure"
347
 
348
- #: gallery-plugin.php:931
349
  msgid "Border width in px, just numbers"
350
  msgstr "Taille de la bordure en pixel, juste le nombre"
351
 
352
- #: gallery-plugin.php:933
353
- #: gallery-plugin.php:935
354
  msgid "Select a border color"
355
  msgstr "Choisir une couleur pour la bordure"
356
 
357
- #: gallery-plugin.php:941
358
  msgid "Number of images in the row"
359
  msgstr "Nombre d'images par ligne"
360
 
361
- #: gallery-plugin.php:947
362
  msgid "Start slideshow"
363
  msgstr "Démarer le diaporama"
364
 
365
- #: gallery-plugin.php:953
366
  msgid "Slideshow interval"
367
  msgstr "Interval de transition pour le diaporama"
368
 
369
- #: gallery-plugin.php:961
370
  msgid "Attachment ID"
371
  msgstr "ID du fichier"
372
 
373
- #: gallery-plugin.php:962
374
  msgid "Image Name"
375
  msgstr "Nom de l'image "
376
 
377
- #: gallery-plugin.php:964
378
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
379
  msgstr "Ordre de tri (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
380
 
381
- #: gallery-plugin.php:965
382
  msgid "Random"
383
  msgstr "Aléatoire"
384
 
385
- #: gallery-plugin.php:969
386
  msgid "Sort images"
387
  msgstr "Trier les images"
388
 
389
- #: gallery-plugin.php:971
390
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
391
  msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
392
 
393
- #: gallery-plugin.php:972
394
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
395
  msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
396
 
397
- #: gallery-plugin.php:976
398
  msgid "Display text above the image"
399
  msgstr "Aficher le texte au dessus de l'image"
400
 
401
- #: gallery-plugin.php:978
402
  msgid "If you want to display text just in a lightbox"
403
  msgstr "Si vous voulez juste afficher du texte dans un boite"
404
 
405
- #: gallery-plugin.php:982
406
  msgid "Display the Back link"
407
  msgstr "Afficher le lien de retour"
408
 
409
- #: gallery-plugin.php:988
410
  msgid "Display the Back link in the shortcode"
411
  msgstr "Afficher le lien de retour dans le code court"
412
 
413
- #: gallery-plugin.php:994
414
  msgid "The Back link text"
415
  msgstr "Le text pour le lien de retour"
416
 
417
- #: gallery-plugin.php:1000
418
  msgid "The Back link URL"
419
  msgstr "L'URL pour le lien de retour"
420
 
421
- #: gallery-plugin.php:1002
422
  msgid "Gallery page (Page with Gallery Template)"
423
  msgstr "Page de la galerie (Page avec le modèle de galerie)"
424
 
425
- #: gallery-plugin.php:1004
426
  msgid "(Full URL to custom page)"
427
  msgstr "(URL complète pour la page spécifique)"
428
 
429
- #: gallery-plugin.php:1008
430
  msgid "The Read More link text"
431
  msgstr "Texte pour le lien \"Read More\""
432
 
433
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "Save Changes"
435
  msgstr "Sauvegarder"
436
 
437
- #: gallery-plugin.php:1029
438
  msgid "FAQ"
439
  msgstr "FAQ"
440
 
441
- #: gallery-plugin.php:1030
442
  msgid "Support"
443
  msgstr "Soutien"
444
 
445
- #: gallery-plugin.php:1237
446
  #: template/gallery-single-template.php:76
447
  msgid "Sorry, nothing found."
448
  msgstr "Désolé, rien n'a été trouvé"
449
 
450
- #: gallery-plugin.php:1259
451
  #: template/gallery-single-template.php:101
452
  msgid "Download high resolution image"
453
  msgstr "Télécharger l'image en haute résolution"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:13+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:103
21
+ #: gallery-plugin.php:846
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
24
 
28
  msgstr "Galeries"
29
 
30
  #: gallery-plugin.php:128
31
+ #: gallery-plugin.php:713
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
93
  msgstr "Merci de faire un choix"
94
 
95
  #: gallery-plugin.php:228
96
+ #: gallery-plugin.php:960
97
  msgid "Sort images by"
98
  msgstr "Trier les images par"
99
 
158
  msgstr "Public"
159
 
160
  #: gallery-plugin.php:483
161
+ #: gallery-plugin.php:964
162
  msgid "Date"
163
  msgstr "Date"
164
 
165
+ #: gallery-plugin.php:653
 
166
  msgid "Pro plugins"
167
+ msgstr "Extensions Pro"
168
 
169
+ #: gallery-plugin.php:656
170
+ #: gallery-plugin.php:682
171
  msgid "Activated plugins"
172
  msgstr "Extensions activées"
173
 
174
+ #: gallery-plugin.php:658
175
+ #: gallery-plugin.php:666
176
+ #: gallery-plugin.php:674
177
+ #: gallery-plugin.php:684
178
+ #: gallery-plugin.php:692
179
+ #: gallery-plugin.php:700
180
  msgid "Read more"
181
  msgstr "Lire plus..."
182
 
183
+ #: gallery-plugin.php:658
184
+ #: gallery-plugin.php:684
185
+ #: gallery-plugin.php:1047
186
+ #: gallery-plugin.php:1062
187
  msgid "Settings"
188
  msgstr "Paramètres"
189
 
190
+ #: gallery-plugin.php:664
191
+ #: gallery-plugin.php:690
192
  msgid "Installed plugins"
193
  msgstr "Extensions installées"
194
 
195
+ #: gallery-plugin.php:672
196
+ #: gallery-plugin.php:698
197
  msgid "Recommended plugins"
198
  msgstr "Extensions recommandées"
199
 
200
+ #: gallery-plugin.php:674
201
  msgid "Purchase"
202
+ msgstr "Acheter"
203
 
204
+ #: gallery-plugin.php:679
 
205
  msgid "Free plugins"
206
+ msgstr "Extensions gratuites"
207
 
208
+ #: gallery-plugin.php:700
209
  msgid "Download"
210
  msgstr "Télécharger"
211
 
212
+ #: gallery-plugin.php:700
213
  #, php-format
214
  msgid "Install %s"
215
  msgstr "Installation %s"
216
 
217
+ #: gallery-plugin.php:700
218
  msgid "Install now from wordpress.org"
219
  msgstr "Installation à partir de wordpress.org"
220
 
221
+ #: gallery-plugin.php:705
222
  msgid "If you have any questions, please contact us via"
223
+ msgstr "Si vous avez des questions, merci de nous contacter via "
224
 
225
+ #: gallery-plugin.php:740
226
  msgid "See images &raquo;"
227
  msgstr "Voir les images &raquo;"
228
 
229
+ #: gallery-plugin.php:839
230
  msgid "Settings are saved"
231
  msgstr "Paramètres sauvegardés."
232
 
233
+ #: gallery-plugin.php:853
234
  msgid "Gallery Settings"
235
  msgstr "Paramètres de la galerie"
236
 
237
+ #: gallery-plugin.php:856
238
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
239
  msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
240
 
241
+ #: gallery-plugin.php:860
242
  msgid "Image size for the album cover"
243
  msgstr "Taille de la vignette de l'album"
244
 
245
+ #: gallery-plugin.php:862
246
+ #: gallery-plugin.php:870
247
+ #: gallery-plugin.php:883
248
  msgid "Image size"
249
  msgstr "Taille de l'image"
250
 
251
+ #: gallery-plugin.php:863
252
+ #: gallery-plugin.php:871
253
  msgid "Width (in px)"
254
  msgstr "Largeur (en pixels)"
255
 
256
+ #: gallery-plugin.php:864
257
+ #: gallery-plugin.php:872
258
  msgid "Height (in px)"
259
  msgstr "Hauteur (en pixels)"
260
 
261
+ #: gallery-plugin.php:868
262
  msgid "Gallery image size"
263
  msgstr "Taille de l'image de la galerie"
264
 
265
+ #: gallery-plugin.php:876
266
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
267
  msgstr "WordPress créera une copie de la miniature avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
268
 
269
+ #: gallery-plugin.php:881
270
  msgid "Gallery image size in the lightbox"
271
  msgstr "Taille de l'image de la galerie"
272
 
273
+ #: gallery-plugin.php:884
274
  msgid "Max width (in px)"
275
  msgstr "Largeur maximum (en pixels)"
276
 
277
+ #: gallery-plugin.php:885
278
  msgid "Max height (in px)"
279
  msgstr "Hauteur maximum (en pixels)"
280
 
281
+ #: gallery-plugin.php:886
282
  msgid "Display a full size image in the lightbox"
283
  msgstr "Afficher une image en taille normale dans le boite"
284
 
285
+ #: gallery-plugin.php:890
286
  msgid "Crop position"
287
  msgstr "Point de base"
288
 
289
+ #: gallery-plugin.php:892
290
  msgid "Horizontal"
291
  msgstr "Horizontale"
292
 
293
+ #: gallery-plugin.php:894
294
  msgid "left"
295
  msgstr "gauche"
296
 
297
+ #: gallery-plugin.php:895
298
+ #: gallery-plugin.php:902
299
  msgid "center"
300
  msgstr "centré"
301
 
302
+ #: gallery-plugin.php:896
303
  msgid "right"
304
  msgstr "droite"
305
 
306
+ #: gallery-plugin.php:899
307
  msgid "Vertical"
308
  msgstr "Verticale"
309
 
310
+ #: gallery-plugin.php:901
311
  msgid "top"
312
  msgstr "haut"
313
 
314
+ #: gallery-plugin.php:903
315
  msgid "bottom"
316
  msgstr "bas"
317
 
318
+ #: gallery-plugin.php:908
319
  msgid "Lightbox background"
320
  msgstr "Fond de la boite"
321
 
322
+ #: gallery-plugin.php:910
323
  msgid "Default"
324
  msgstr "Défaut"
325
 
326
+ #: gallery-plugin.php:911
327
  msgid "Background transparency (from 0 to 1)"
328
  msgstr "Transparence du fond (de 0 à 1)"
329
 
330
+ #: gallery-plugin.php:913
331
  msgid "Select a background color"
332
  msgstr "Choisir une couleur pour le fond"
333
 
334
+ #: gallery-plugin.php:915
335
  msgid "Background color"
336
  msgstr "Couleur du fond"
337
 
338
+ #: gallery-plugin.php:922
339
+ #: gallery-plugin.php:1027
340
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
341
  msgstr "Cette fonction est disponible dans le version pro de ce plugin. Pour plus de détails, suivre le lien"
342
 
343
+ #: gallery-plugin.php:929
344
  msgid "Images with border"
345
  msgstr "Image avec bordure"
346
 
347
+ #: gallery-plugin.php:932
348
  msgid "Border width in px, just numbers"
349
  msgstr "Taille de la bordure en pixel, juste le nombre"
350
 
351
+ #: gallery-plugin.php:934
352
+ #: gallery-plugin.php:936
353
  msgid "Select a border color"
354
  msgstr "Choisir une couleur pour la bordure"
355
 
356
+ #: gallery-plugin.php:942
357
  msgid "Number of images in the row"
358
  msgstr "Nombre d'images par ligne"
359
 
360
+ #: gallery-plugin.php:948
361
  msgid "Start slideshow"
362
  msgstr "Démarer le diaporama"
363
 
364
+ #: gallery-plugin.php:954
365
  msgid "Slideshow interval"
366
  msgstr "Interval de transition pour le diaporama"
367
 
368
+ #: gallery-plugin.php:962
369
  msgid "Attachment ID"
370
  msgstr "ID du fichier"
371
 
372
+ #: gallery-plugin.php:963
373
  msgid "Image Name"
374
  msgstr "Nom de l'image "
375
 
376
+ #: gallery-plugin.php:965
377
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
378
  msgstr "Ordre de tri (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
379
 
380
+ #: gallery-plugin.php:966
381
  msgid "Random"
382
  msgstr "Aléatoire"
383
 
384
+ #: gallery-plugin.php:970
385
  msgid "Sort images"
386
  msgstr "Trier les images"
387
 
388
+ #: gallery-plugin.php:972
389
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
390
  msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
391
 
392
+ #: gallery-plugin.php:973
393
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
394
  msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
395
 
396
+ #: gallery-plugin.php:977
397
  msgid "Display text above the image"
398
  msgstr "Aficher le texte au dessus de l'image"
399
 
400
+ #: gallery-plugin.php:979
401
  msgid "If you want to display text just in a lightbox"
402
  msgstr "Si vous voulez juste afficher du texte dans un boite"
403
 
404
+ #: gallery-plugin.php:983
405
  msgid "Display the Back link"
406
  msgstr "Afficher le lien de retour"
407
 
408
+ #: gallery-plugin.php:989
409
  msgid "Display the Back link in the shortcode"
410
  msgstr "Afficher le lien de retour dans le code court"
411
 
412
+ #: gallery-plugin.php:995
413
  msgid "The Back link text"
414
  msgstr "Le text pour le lien de retour"
415
 
416
+ #: gallery-plugin.php:1001
417
  msgid "The Back link URL"
418
  msgstr "L'URL pour le lien de retour"
419
 
420
+ #: gallery-plugin.php:1003
421
  msgid "Gallery page (Page with Gallery Template)"
422
  msgstr "Page de la galerie (Page avec le modèle de galerie)"
423
 
424
+ #: gallery-plugin.php:1005
425
  msgid "(Full URL to custom page)"
426
  msgstr "(URL complète pour la page spécifique)"
427
 
428
+ #: gallery-plugin.php:1009
429
  msgid "The Read More link text"
430
  msgstr "Texte pour le lien \"Read More\""
431
 
432
+ #: gallery-plugin.php:1017
433
+ #, fuzzy
434
+ msgid "Display Like buttons in the lightbox"
435
+ msgstr "Afficher une image en taille normale dans le boite"
436
+
437
+ #: gallery-plugin.php:1019
438
+ msgid "FaceBook"
439
+ msgstr ""
440
+
441
+ #: gallery-plugin.php:1020
442
+ #, fuzzy
443
+ msgid "Twitter"
444
+ msgstr "Titre"
445
+
446
+ #: gallery-plugin.php:1021
447
+ msgid "Pinterest"
448
+ msgstr ""
449
+
450
+ #: gallery-plugin.php:1022
451
+ msgid "Google +1"
452
+ msgstr ""
453
+
454
+ #: gallery-plugin.php:1035
455
  msgid "Save Changes"
456
  msgstr "Sauvegarder"
457
 
458
+ #: gallery-plugin.php:1048
459
  msgid "FAQ"
460
  msgstr "FAQ"
461
 
462
+ #: gallery-plugin.php:1049
463
  msgid "Support"
464
  msgstr "Soutien"
465
 
466
+ #: gallery-plugin.php:1256
467
  #: template/gallery-single-template.php:76
468
  msgid "Sorry, nothing found."
469
  msgstr "Désolé, rien n'a été trouvé"
470
 
471
+ #: gallery-plugin.php:1278
472
  #: template/gallery-single-template.php:101
473
  msgid "Download high resolution image"
474
  msgstr "Télécharger l'image en haute résolution"
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: 2013-05-28 16:01+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
20
 
21
  # @ gallery
22
  #: gallery-plugin.php:103
23
- #: gallery-plugin.php:845
24
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
25
  msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
26
 
@@ -32,7 +32,7 @@ msgstr "גלריות"
32
 
33
  # @ gallery
34
  #: gallery-plugin.php:128
35
- #: gallery-plugin.php:712
36
  msgid "Gallery"
37
  msgstr "גלריה"
38
 
@@ -115,7 +115,7 @@ msgstr ""
115
 
116
  # @ gallery
117
  #: gallery-plugin.php:228
118
- #: gallery-plugin.php:959
119
  #, fuzzy
120
  msgid "Sort images by"
121
  msgstr "מספר תמונות בשורה"
@@ -192,355 +192,378 @@ msgstr "ציבורי"
192
 
193
  # @ gallery
194
  #: gallery-plugin.php:483
195
- #: gallery-plugin.php:963
196
  msgid "Date"
197
  msgstr "תאריך"
198
 
199
  # @ gallery
200
- #: gallery-plugin.php:652
201
  #, fuzzy
202
  msgid "Pro plugins"
203
  msgstr "תוספים מומלצים"
204
 
205
  # @ gallery
206
- #: gallery-plugin.php:655
207
- #: gallery-plugin.php:681
208
  msgid "Activated plugins"
209
  msgstr "תוספים פעילים"
210
 
211
  # @ gallery
212
- #: gallery-plugin.php:657
213
- #: gallery-plugin.php:665
214
- #: gallery-plugin.php:673
215
- #: gallery-plugin.php:683
216
- #: gallery-plugin.php:691
217
- #: gallery-plugin.php:699
218
  msgid "Read more"
219
  msgstr "קרא עוד"
220
 
221
  # @ gallery
222
- #: gallery-plugin.php:657
223
- #: gallery-plugin.php:683
224
- #: gallery-plugin.php:1028
225
- #: gallery-plugin.php:1043
226
  msgid "Settings"
227
  msgstr "הגדרות"
228
 
229
  # @ gallery
230
- #: gallery-plugin.php:663
231
- #: gallery-plugin.php:689
232
  msgid "Installed plugins"
233
  msgstr "תוספים מותקנים"
234
 
235
  # @ gallery
236
- #: gallery-plugin.php:671
237
- #: gallery-plugin.php:697
238
  msgid "Recommended plugins"
239
  msgstr "תוספים מומלצים"
240
 
241
- #: gallery-plugin.php:673
242
  msgid "Purchase"
243
  msgstr ""
244
 
245
  # @ gallery
246
- #: gallery-plugin.php:678
247
  #, fuzzy
248
  msgid "Free plugins"
249
  msgstr "תוספים מומלצים"
250
 
251
  # @ gallery
252
- #: gallery-plugin.php:699
253
  msgid "Download"
254
  msgstr "הורד"
255
 
256
  # @ default
257
- #: gallery-plugin.php:699
258
  #, php-format
259
  msgid "Install %s"
260
  msgstr "התקן %s"
261
 
262
  # @ gallery
263
- #: gallery-plugin.php:699
264
  msgid "Install now from wordpress.org"
265
  msgstr "הורד כעת מ wordpress.org"
266
 
267
  # @ gallery
268
- #: gallery-plugin.php:704
269
  #, fuzzy
270
  msgid "If you have any questions, please contact us via"
271
  msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
272
 
273
  # @ gallery
274
- #: gallery-plugin.php:739
275
  #, fuzzy
276
  msgid "See images &raquo;"
277
  msgstr "ראו תמונה »"
278
 
279
  # @ gallery
280
- #: gallery-plugin.php:838
281
  #, fuzzy
282
  msgid "Settings are saved"
283
  msgstr "האפשרויות נשמרו."
284
 
285
  # @ gallery
286
- #: gallery-plugin.php:852
287
  #, fuzzy
288
  msgid "Gallery Settings"
289
  msgstr "אפשרויות גלריה"
290
 
291
  # @ gallery
292
- #: gallery-plugin.php:855
293
  #, fuzzy
294
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
295
  msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
296
 
297
  # @ gallery
298
- #: gallery-plugin.php:859
299
  #, fuzzy
300
  msgid "Image size for the album cover"
301
  msgstr "גודל הכריכה של האלבום של הגלריה"
302
 
303
  # @ gallery
304
- #: gallery-plugin.php:861
305
- #: gallery-plugin.php:869
306
- #: gallery-plugin.php:882
307
  #, fuzzy
308
  msgid "Image size"
309
  msgstr "שם גודל תמונה"
310
 
311
  # @ gallery
312
- #: gallery-plugin.php:862
313
- #: gallery-plugin.php:870
314
  msgid "Width (in px)"
315
  msgstr "רוחב (בפיקסלים)"
316
 
317
  # @ gallery
318
- #: gallery-plugin.php:863
319
- #: gallery-plugin.php:871
320
  msgid "Height (in px)"
321
  msgstr "גובה (בפיקסלים)"
322
 
323
  # @ gallery
324
- #: gallery-plugin.php:867
325
  #, fuzzy
326
  msgid "Gallery image size"
327
  msgstr "גלריות"
328
 
329
  # @ gallery
330
- #: gallery-plugin.php:875
331
  #, fuzzy
332
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
333
  msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
334
 
335
- #: gallery-plugin.php:880
336
  msgid "Gallery image size in the lightbox"
337
  msgstr ""
338
 
339
  # @ gallery
340
- #: gallery-plugin.php:883
341
  #, fuzzy
342
  msgid "Max width (in px)"
343
  msgstr "רוחב (בפיקסלים)"
344
 
345
  # @ gallery
346
- #: gallery-plugin.php:884
347
  #, fuzzy
348
  msgid "Max height (in px)"
349
  msgstr "גובה (בפיקסלים)"
350
 
351
- #: gallery-plugin.php:885
352
  msgid "Display a full size image in the lightbox"
353
  msgstr ""
354
 
355
- #: gallery-plugin.php:889
356
  msgid "Crop position"
357
  msgstr ""
358
 
359
- #: gallery-plugin.php:891
360
  msgid "Horizontal"
361
  msgstr ""
362
 
363
- #: gallery-plugin.php:893
364
  msgid "left"
365
  msgstr ""
366
 
367
- #: gallery-plugin.php:894
368
- #: gallery-plugin.php:901
369
  msgid "center"
370
  msgstr ""
371
 
372
- #: gallery-plugin.php:895
373
  msgid "right"
374
  msgstr ""
375
 
376
- #: gallery-plugin.php:898
377
  msgid "Vertical"
378
  msgstr ""
379
 
380
- #: gallery-plugin.php:900
381
  msgid "top"
382
  msgstr ""
383
 
384
- #: gallery-plugin.php:902
385
  msgid "bottom"
386
  msgstr ""
387
 
388
- #: gallery-plugin.php:907
389
  msgid "Lightbox background"
390
  msgstr ""
391
 
392
- #: gallery-plugin.php:909
393
  msgid "Default"
394
  msgstr ""
395
 
396
- #: gallery-plugin.php:910
397
  msgid "Background transparency (from 0 to 1)"
398
  msgstr ""
399
 
400
- #: gallery-plugin.php:912
401
  msgid "Select a background color"
402
  msgstr ""
403
 
404
- #: gallery-plugin.php:914
405
  msgid "Background color"
406
  msgstr ""
407
 
408
- #: gallery-plugin.php:921
 
409
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
410
  msgstr ""
411
 
412
- #: gallery-plugin.php:928
413
  msgid "Images with border"
414
  msgstr ""
415
 
416
- #: gallery-plugin.php:931
417
  msgid "Border width in px, just numbers"
418
  msgstr ""
419
 
420
- #: gallery-plugin.php:933
421
- #: gallery-plugin.php:935
422
  msgid "Select a border color"
423
  msgstr ""
424
 
425
  # @ gallery
426
- #: gallery-plugin.php:941
427
  #, fuzzy
428
  msgid "Number of images in the row"
429
  msgstr "מספר תמונות בשורה"
430
 
431
  # @ gallery
432
- #: gallery-plugin.php:947
433
  msgid "Start slideshow"
434
  msgstr "התחל מצגת"
435
 
436
  # @ gallery
437
- #: gallery-plugin.php:953
438
  msgid "Slideshow interval"
439
  msgstr "מרווח מצגת"
440
 
441
  # @ gallery
442
- #: gallery-plugin.php:961
443
  #, fuzzy
444
  msgid "Attachment ID"
445
  msgstr "מזהה קובץ מצורף"
446
 
447
  # @ gallery
448
- #: gallery-plugin.php:962
449
  #, fuzzy
450
  msgid "Image Name"
451
  msgstr "תמונה "
452
 
453
  # @ gallery
454
- #: gallery-plugin.php:964
455
  #, fuzzy
456
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
457
  msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
458
 
459
  # @ gallery
460
- #: gallery-plugin.php:965
461
  #, fuzzy
462
  msgid "Random"
463
  msgstr "אקראי"
464
 
465
  # @ gallery
466
- #: gallery-plugin.php:969
467
  #, fuzzy
468
  msgid "Sort images"
469
  msgstr "מספר תמונות בשורה"
470
 
471
  # @ gallery
472
- #: gallery-plugin.php:971
473
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
474
  msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
475
 
476
  # @ gallery
477
- #: gallery-plugin.php:972
478
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
479
  msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
480
 
481
- #: gallery-plugin.php:976
482
  msgid "Display text above the image"
483
  msgstr ""
484
 
485
- #: gallery-plugin.php:978
486
  msgid "If you want to display text just in a lightbox"
487
  msgstr ""
488
 
489
  # @ gallery
490
- #: gallery-plugin.php:982
491
  #, fuzzy
492
  msgid "Display the Back link"
493
  msgstr "הצג קישור חזרה"
494
 
495
  # @ gallery
496
- #: gallery-plugin.php:988
497
  #, fuzzy
498
  msgid "Display the Back link in the shortcode"
499
  msgstr "הצג קישור חזרה בקיצור הקוד"
500
 
501
- #: gallery-plugin.php:994
502
  msgid "The Back link text"
503
  msgstr ""
504
 
505
- #: gallery-plugin.php:1000
506
  msgid "The Back link URL"
507
  msgstr ""
508
 
509
- #: gallery-plugin.php:1002
510
  msgid "Gallery page (Page with Gallery Template)"
511
  msgstr ""
512
 
513
- #: gallery-plugin.php:1004
514
  msgid "(Full URL to custom page)"
515
  msgstr ""
516
 
517
- #: gallery-plugin.php:1008
518
  msgid "The Read More link text"
519
  msgstr ""
520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
521
  # @ default
522
- #: gallery-plugin.php:1016
523
  msgid "Save Changes"
524
  msgstr "שמור שינויים"
525
 
526
  # @ gallery
527
- #: gallery-plugin.php:1029
528
  msgid "FAQ"
529
  msgstr "שאלות ותשובות"
530
 
531
  # @ gallery
532
- #: gallery-plugin.php:1030
533
  msgid "Support"
534
  msgstr "תמיכה"
535
 
536
  # @ gallery
537
- #: gallery-plugin.php:1237
538
  #: template/gallery-single-template.php:76
539
  #, fuzzy
540
  msgid "Sorry, nothing found."
541
  msgstr "מצטערים, אין מה למצוא."
542
 
543
- #: gallery-plugin.php:1259
544
  #: template/gallery-single-template.php:101
545
  msgid "Download high resolution image"
546
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery Plugin v3.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:13+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
 
21
  # @ gallery
22
  #: gallery-plugin.php:103
23
+ #: gallery-plugin.php:846
24
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
25
  msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
26
 
32
 
33
  # @ gallery
34
  #: gallery-plugin.php:128
35
+ #: gallery-plugin.php:713
36
  msgid "Gallery"
37
  msgstr "גלריה"
38
 
115
 
116
  # @ gallery
117
  #: gallery-plugin.php:228
118
+ #: gallery-plugin.php:960
119
  #, fuzzy
120
  msgid "Sort images by"
121
  msgstr "מספר תמונות בשורה"
192
 
193
  # @ gallery
194
  #: gallery-plugin.php:483
195
+ #: gallery-plugin.php:964
196
  msgid "Date"
197
  msgstr "תאריך"
198
 
199
  # @ gallery
200
+ #: gallery-plugin.php:653
201
  #, fuzzy
202
  msgid "Pro plugins"
203
  msgstr "תוספים מומלצים"
204
 
205
  # @ gallery
206
+ #: gallery-plugin.php:656
207
+ #: gallery-plugin.php:682
208
  msgid "Activated plugins"
209
  msgstr "תוספים פעילים"
210
 
211
  # @ gallery
212
+ #: gallery-plugin.php:658
213
+ #: gallery-plugin.php:666
214
+ #: gallery-plugin.php:674
215
+ #: gallery-plugin.php:684
216
+ #: gallery-plugin.php:692
217
+ #: gallery-plugin.php:700
218
  msgid "Read more"
219
  msgstr "קרא עוד"
220
 
221
  # @ gallery
222
+ #: gallery-plugin.php:658
223
+ #: gallery-plugin.php:684
224
+ #: gallery-plugin.php:1047
225
+ #: gallery-plugin.php:1062
226
  msgid "Settings"
227
  msgstr "הגדרות"
228
 
229
  # @ gallery
230
+ #: gallery-plugin.php:664
231
+ #: gallery-plugin.php:690
232
  msgid "Installed plugins"
233
  msgstr "תוספים מותקנים"
234
 
235
  # @ gallery
236
+ #: gallery-plugin.php:672
237
+ #: gallery-plugin.php:698
238
  msgid "Recommended plugins"
239
  msgstr "תוספים מומלצים"
240
 
241
+ #: gallery-plugin.php:674
242
  msgid "Purchase"
243
  msgstr ""
244
 
245
  # @ gallery
246
+ #: gallery-plugin.php:679
247
  #, fuzzy
248
  msgid "Free plugins"
249
  msgstr "תוספים מומלצים"
250
 
251
  # @ gallery
252
+ #: gallery-plugin.php:700
253
  msgid "Download"
254
  msgstr "הורד"
255
 
256
  # @ default
257
+ #: gallery-plugin.php:700
258
  #, php-format
259
  msgid "Install %s"
260
  msgstr "התקן %s"
261
 
262
  # @ gallery
263
+ #: gallery-plugin.php:700
264
  msgid "Install now from wordpress.org"
265
  msgstr "הורד כעת מ wordpress.org"
266
 
267
  # @ gallery
268
+ #: gallery-plugin.php:705
269
  #, fuzzy
270
  msgid "If you have any questions, please contact us via"
271
  msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
272
 
273
  # @ gallery
274
+ #: gallery-plugin.php:740
275
  #, fuzzy
276
  msgid "See images &raquo;"
277
  msgstr "ראו תמונה »"
278
 
279
  # @ gallery
280
+ #: gallery-plugin.php:839
281
  #, fuzzy
282
  msgid "Settings are saved"
283
  msgstr "האפשרויות נשמרו."
284
 
285
  # @ gallery
286
+ #: gallery-plugin.php:853
287
  #, fuzzy
288
  msgid "Gallery Settings"
289
  msgstr "אפשרויות גלריה"
290
 
291
  # @ gallery
292
+ #: gallery-plugin.php:856
293
  #, fuzzy
294
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
295
  msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
296
 
297
  # @ gallery
298
+ #: gallery-plugin.php:860
299
  #, fuzzy
300
  msgid "Image size for the album cover"
301
  msgstr "גודל הכריכה של האלבום של הגלריה"
302
 
303
  # @ gallery
304
+ #: gallery-plugin.php:862
305
+ #: gallery-plugin.php:870
306
+ #: gallery-plugin.php:883
307
  #, fuzzy
308
  msgid "Image size"
309
  msgstr "שם גודל תמונה"
310
 
311
  # @ gallery
312
+ #: gallery-plugin.php:863
313
+ #: gallery-plugin.php:871
314
  msgid "Width (in px)"
315
  msgstr "רוחב (בפיקסלים)"
316
 
317
  # @ gallery
318
+ #: gallery-plugin.php:864
319
+ #: gallery-plugin.php:872
320
  msgid "Height (in px)"
321
  msgstr "גובה (בפיקסלים)"
322
 
323
  # @ gallery
324
+ #: gallery-plugin.php:868
325
  #, fuzzy
326
  msgid "Gallery image size"
327
  msgstr "גלריות"
328
 
329
  # @ gallery
330
+ #: gallery-plugin.php:876
331
  #, fuzzy
332
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
333
  msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
334
 
335
+ #: gallery-plugin.php:881
336
  msgid "Gallery image size in the lightbox"
337
  msgstr ""
338
 
339
  # @ gallery
340
+ #: gallery-plugin.php:884
341
  #, fuzzy
342
  msgid "Max width (in px)"
343
  msgstr "רוחב (בפיקסלים)"
344
 
345
  # @ gallery
346
+ #: gallery-plugin.php:885
347
  #, fuzzy
348
  msgid "Max height (in px)"
349
  msgstr "גובה (בפיקסלים)"
350
 
351
+ #: gallery-plugin.php:886
352
  msgid "Display a full size image in the lightbox"
353
  msgstr ""
354
 
355
+ #: gallery-plugin.php:890
356
  msgid "Crop position"
357
  msgstr ""
358
 
359
+ #: gallery-plugin.php:892
360
  msgid "Horizontal"
361
  msgstr ""
362
 
363
+ #: gallery-plugin.php:894
364
  msgid "left"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:895
368
+ #: gallery-plugin.php:902
369
  msgid "center"
370
  msgstr ""
371
 
372
+ #: gallery-plugin.php:896
373
  msgid "right"
374
  msgstr ""
375
 
376
+ #: gallery-plugin.php:899
377
  msgid "Vertical"
378
  msgstr ""
379
 
380
+ #: gallery-plugin.php:901
381
  msgid "top"
382
  msgstr ""
383
 
384
+ #: gallery-plugin.php:903
385
  msgid "bottom"
386
  msgstr ""
387
 
388
+ #: gallery-plugin.php:908
389
  msgid "Lightbox background"
390
  msgstr ""
391
 
392
+ #: gallery-plugin.php:910
393
  msgid "Default"
394
  msgstr ""
395
 
396
+ #: gallery-plugin.php:911
397
  msgid "Background transparency (from 0 to 1)"
398
  msgstr ""
399
 
400
+ #: gallery-plugin.php:913
401
  msgid "Select a background color"
402
  msgstr ""
403
 
404
+ #: gallery-plugin.php:915
405
  msgid "Background color"
406
  msgstr ""
407
 
408
+ #: gallery-plugin.php:922
409
+ #: gallery-plugin.php:1027
410
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
411
  msgstr ""
412
 
413
+ #: gallery-plugin.php:929
414
  msgid "Images with border"
415
  msgstr ""
416
 
417
+ #: gallery-plugin.php:932
418
  msgid "Border width in px, just numbers"
419
  msgstr ""
420
 
421
+ #: gallery-plugin.php:934
422
+ #: gallery-plugin.php:936
423
  msgid "Select a border color"
424
  msgstr ""
425
 
426
  # @ gallery
427
+ #: gallery-plugin.php:942
428
  #, fuzzy
429
  msgid "Number of images in the row"
430
  msgstr "מספר תמונות בשורה"
431
 
432
  # @ gallery
433
+ #: gallery-plugin.php:948
434
  msgid "Start slideshow"
435
  msgstr "התחל מצגת"
436
 
437
  # @ gallery
438
+ #: gallery-plugin.php:954
439
  msgid "Slideshow interval"
440
  msgstr "מרווח מצגת"
441
 
442
  # @ gallery
443
+ #: gallery-plugin.php:962
444
  #, fuzzy
445
  msgid "Attachment ID"
446
  msgstr "מזהה קובץ מצורף"
447
 
448
  # @ gallery
449
+ #: gallery-plugin.php:963
450
  #, fuzzy
451
  msgid "Image Name"
452
  msgstr "תמונה "
453
 
454
  # @ gallery
455
+ #: gallery-plugin.php:965
456
  #, fuzzy
457
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
458
  msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
459
 
460
  # @ gallery
461
+ #: gallery-plugin.php:966
462
  #, fuzzy
463
  msgid "Random"
464
  msgstr "אקראי"
465
 
466
  # @ gallery
467
+ #: gallery-plugin.php:970
468
  #, fuzzy
469
  msgid "Sort images"
470
  msgstr "מספר תמונות בשורה"
471
 
472
  # @ gallery
473
+ #: gallery-plugin.php:972
474
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
475
  msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
476
 
477
  # @ gallery
478
+ #: gallery-plugin.php:973
479
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
480
  msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
481
 
482
+ #: gallery-plugin.php:977
483
  msgid "Display text above the image"
484
  msgstr ""
485
 
486
+ #: gallery-plugin.php:979
487
  msgid "If you want to display text just in a lightbox"
488
  msgstr ""
489
 
490
  # @ gallery
491
+ #: gallery-plugin.php:983
492
  #, fuzzy
493
  msgid "Display the Back link"
494
  msgstr "הצג קישור חזרה"
495
 
496
  # @ gallery
497
+ #: gallery-plugin.php:989
498
  #, fuzzy
499
  msgid "Display the Back link in the shortcode"
500
  msgstr "הצג קישור חזרה בקיצור הקוד"
501
 
502
+ #: gallery-plugin.php:995
503
  msgid "The Back link text"
504
  msgstr ""
505
 
506
+ #: gallery-plugin.php:1001
507
  msgid "The Back link URL"
508
  msgstr ""
509
 
510
+ #: gallery-plugin.php:1003
511
  msgid "Gallery page (Page with Gallery Template)"
512
  msgstr ""
513
 
514
+ #: gallery-plugin.php:1005
515
  msgid "(Full URL to custom page)"
516
  msgstr ""
517
 
518
+ #: gallery-plugin.php:1009
519
  msgid "The Read More link text"
520
  msgstr ""
521
 
522
+ #: gallery-plugin.php:1017
523
+ msgid "Display Like buttons in the lightbox"
524
+ msgstr ""
525
+
526
+ #: gallery-plugin.php:1019
527
+ msgid "FaceBook"
528
+ msgstr ""
529
+
530
+ # @ gallery
531
+ #: gallery-plugin.php:1020
532
+ #, fuzzy
533
+ msgid "Twitter"
534
+ msgstr "כותרת"
535
+
536
+ #: gallery-plugin.php:1021
537
+ msgid "Pinterest"
538
+ msgstr ""
539
+
540
+ #: gallery-plugin.php:1022
541
+ msgid "Google +1"
542
+ msgstr ""
543
+
544
  # @ default
545
+ #: gallery-plugin.php:1035
546
  msgid "Save Changes"
547
  msgstr "שמור שינויים"
548
 
549
  # @ gallery
550
+ #: gallery-plugin.php:1048
551
  msgid "FAQ"
552
  msgstr "שאלות ותשובות"
553
 
554
  # @ gallery
555
+ #: gallery-plugin.php:1049
556
  msgid "Support"
557
  msgstr "תמיכה"
558
 
559
  # @ gallery
560
+ #: gallery-plugin.php:1256
561
  #: template/gallery-single-template.php:76
562
  #, fuzzy
563
  msgid "Sorry, nothing found."
564
  msgstr "מצטערים, אין מה למצוא."
565
 
566
+ #: gallery-plugin.php:1278
567
  #: template/gallery-single-template.php:101
568
  msgid "Download high resolution image"
569
  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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galériák"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galéria"
33
 
@@ -97,7 +97,7 @@ msgid "Please make a choice"
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
- #: gallery-plugin.php:959
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Képek száma egy sorban"
@@ -166,310 +166,332 @@ msgid "Publishing"
166
  msgstr "Publikus"
167
 
168
  #: gallery-plugin.php:483
169
- #: gallery-plugin.php:963
170
  msgid "Date"
171
  msgstr "Dátum"
172
 
173
- #: gallery-plugin.php:652
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Javasolt bővítmények"
177
 
178
- #: gallery-plugin.php:655
179
- #: gallery-plugin.php:681
180
  msgid "Activated plugins"
181
  msgstr "Aktivált bővítmények"
182
 
183
- #: gallery-plugin.php:657
184
- #: gallery-plugin.php:665
185
- #: gallery-plugin.php:673
186
- #: gallery-plugin.php:683
187
- #: gallery-plugin.php:691
188
- #: gallery-plugin.php:699
189
  msgid "Read more"
190
  msgstr "Bővebben"
191
 
192
- #: gallery-plugin.php:657
193
- #: gallery-plugin.php:683
194
- #: gallery-plugin.php:1028
195
- #: gallery-plugin.php:1043
196
  msgid "Settings"
197
  msgstr "Beállítások"
198
 
199
- #: gallery-plugin.php:663
200
- #: gallery-plugin.php:689
201
  msgid "Installed plugins"
202
  msgstr "Telepített bővítmények"
203
 
204
- #: gallery-plugin.php:671
205
- #: gallery-plugin.php:697
206
  msgid "Recommended plugins"
207
  msgstr "Javasolt bővítmények"
208
 
209
- #: gallery-plugin.php:673
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:678
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "Javasolt bővítmények"
217
 
218
- #: gallery-plugin.php:699
219
  msgid "Download"
220
  msgstr "Letöltés"
221
 
222
- #: gallery-plugin.php:699
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Telepítés %s"
226
 
227
- #: gallery-plugin.php:699
228
  msgid "Install now from wordpress.org"
229
  msgstr "Telepítés a wordpress.org -ról"
230
 
231
- #: gallery-plugin.php:704
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
235
 
236
- #: gallery-plugin.php:739
237
  #, fuzzy
238
  msgid "See images &raquo;"
239
  msgstr "Fotó megtekintése &raquo;"
240
 
241
- #: gallery-plugin.php:838
242
  #, fuzzy
243
  msgid "Settings are saved"
244
  msgstr "Beállítások elmentve."
245
 
246
- #: gallery-plugin.php:852
247
  #, fuzzy
248
  msgid "Gallery Settings"
249
  msgstr "Galéria beállítások"
250
 
251
- #: gallery-plugin.php:855
252
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
253
  msgstr ""
254
 
255
- #: gallery-plugin.php:859
256
  #, fuzzy
257
  msgid "Image size for the album cover"
258
  msgstr "Размер для "
259
 
260
- #: gallery-plugin.php:861
261
- #: gallery-plugin.php:869
262
- #: gallery-plugin.php:882
263
  #, fuzzy
264
  msgid "Image size"
265
  msgstr "Kép méret neve"
266
 
267
- #: gallery-plugin.php:862
268
- #: gallery-plugin.php:870
269
  msgid "Width (in px)"
270
  msgstr "Szélesség (px-ben)"
271
 
272
- #: gallery-plugin.php:863
273
- #: gallery-plugin.php:871
274
  msgid "Height (in px)"
275
  msgstr "Magasság (px-ben)"
276
 
277
- #: gallery-plugin.php:867
278
  #, fuzzy
279
  msgid "Gallery image size"
280
  msgstr "Galériák"
281
 
282
- #: gallery-plugin.php:875
283
  #, fuzzy
284
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
285
  msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
286
 
287
- #: gallery-plugin.php:880
288
  msgid "Gallery image size in the lightbox"
289
  msgstr ""
290
 
291
- #: gallery-plugin.php:883
292
  #, fuzzy
293
  msgid "Max width (in px)"
294
  msgstr "Szélesség (px-ben)"
295
 
296
- #: gallery-plugin.php:884
297
  #, fuzzy
298
  msgid "Max height (in px)"
299
  msgstr "Magasság (px-ben)"
300
 
301
- #: gallery-plugin.php:885
302
  msgid "Display a full size image in the lightbox"
303
  msgstr ""
304
 
305
- #: gallery-plugin.php:889
306
  msgid "Crop position"
307
  msgstr ""
308
 
309
- #: gallery-plugin.php:891
310
  msgid "Horizontal"
311
  msgstr ""
312
 
313
- #: gallery-plugin.php:893
314
  msgid "left"
315
  msgstr ""
316
 
317
- #: gallery-plugin.php:894
318
- #: gallery-plugin.php:901
319
  msgid "center"
320
  msgstr ""
321
 
322
- #: gallery-plugin.php:895
323
  msgid "right"
324
  msgstr ""
325
 
326
- #: gallery-plugin.php:898
327
  msgid "Vertical"
328
  msgstr ""
329
 
330
- #: gallery-plugin.php:900
331
  msgid "top"
332
  msgstr ""
333
 
334
- #: gallery-plugin.php:902
335
  msgid "bottom"
336
  msgstr ""
337
 
338
- #: gallery-plugin.php:907
339
  msgid "Lightbox background"
340
  msgstr ""
341
 
342
- #: gallery-plugin.php:909
343
  msgid "Default"
344
  msgstr ""
345
 
346
- #: gallery-plugin.php:910
347
  msgid "Background transparency (from 0 to 1)"
348
  msgstr ""
349
 
350
- #: gallery-plugin.php:912
351
  msgid "Select a background color"
352
  msgstr ""
353
 
354
- #: gallery-plugin.php:914
355
  msgid "Background color"
356
  msgstr ""
357
 
358
- #: gallery-plugin.php:921
 
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
- #: gallery-plugin.php:928
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
- #: gallery-plugin.php:931
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
- #: gallery-plugin.php:933
371
- #: gallery-plugin.php:935
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
- #: gallery-plugin.php:941
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "Képek száma egy sorban"
379
 
380
- #: gallery-plugin.php:947
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
- #: gallery-plugin.php:953
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
- #: gallery-plugin.php:961
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
- #: gallery-plugin.php:962
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "Kép méret neve"
396
 
397
- #: gallery-plugin.php:964
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
- #: gallery-plugin.php:965
402
  msgid "Random"
403
  msgstr ""
404
 
405
- #: gallery-plugin.php:969
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "Képek száma egy sorban"
409
 
410
- #: gallery-plugin.php:971
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
- #: gallery-plugin.php:972
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
- #: gallery-plugin.php:976
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
- #: gallery-plugin.php:978
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
- #: gallery-plugin.php:982
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
- #: gallery-plugin.php:988
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
- #: gallery-plugin.php:994
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
- #: gallery-plugin.php:1000
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
- #: gallery-plugin.php:1002
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
- #: gallery-plugin.php:1004
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
- #: gallery-plugin.php:1008
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  msgid "Save Changes"
456
  msgstr "Változások mentése"
457
 
458
- #: gallery-plugin.php:1029
459
  msgid "FAQ"
460
  msgstr "Gy.I.K."
461
 
462
- #: gallery-plugin.php:1030
463
  msgid "Support"
464
  msgstr "Támogatás"
465
 
466
- #: gallery-plugin.php:1237
467
  #: template/gallery-single-template.php:76
468
  #, fuzzy
469
  msgid "Sorry, nothing found."
470
  msgstr "Sajnáljuk - nincs megjelenítendő elem."
471
 
472
- #: gallery-plugin.php:1259
473
  #: template/gallery-single-template.php:101
474
  msgid "Download high resolution image"
475
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:13+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:13+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galériák"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galéria"
33
 
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
+ #: gallery-plugin.php:960
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Képek száma egy sorban"
166
  msgstr "Publikus"
167
 
168
  #: gallery-plugin.php:483
169
+ #: gallery-plugin.php:964
170
  msgid "Date"
171
  msgstr "Dátum"
172
 
173
+ #: gallery-plugin.php:653
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Javasolt bővítmények"
177
 
178
+ #: gallery-plugin.php:656
179
+ #: gallery-plugin.php:682
180
  msgid "Activated plugins"
181
  msgstr "Aktivált bővítmények"
182
 
183
+ #: gallery-plugin.php:658
184
+ #: gallery-plugin.php:666
185
+ #: gallery-plugin.php:674
186
+ #: gallery-plugin.php:684
187
+ #: gallery-plugin.php:692
188
+ #: gallery-plugin.php:700
189
  msgid "Read more"
190
  msgstr "Bővebben"
191
 
192
+ #: gallery-plugin.php:658
193
+ #: gallery-plugin.php:684
194
+ #: gallery-plugin.php:1047
195
+ #: gallery-plugin.php:1062
196
  msgid "Settings"
197
  msgstr "Beállítások"
198
 
199
+ #: gallery-plugin.php:664
200
+ #: gallery-plugin.php:690
201
  msgid "Installed plugins"
202
  msgstr "Telepített bővítmények"
203
 
204
+ #: gallery-plugin.php:672
205
+ #: gallery-plugin.php:698
206
  msgid "Recommended plugins"
207
  msgstr "Javasolt bővítmények"
208
 
209
+ #: gallery-plugin.php:674
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:679
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "Javasolt bővítmények"
217
 
218
+ #: gallery-plugin.php:700
219
  msgid "Download"
220
  msgstr "Letöltés"
221
 
222
+ #: gallery-plugin.php:700
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Telepítés %s"
226
 
227
+ #: gallery-plugin.php:700
228
  msgid "Install now from wordpress.org"
229
  msgstr "Telepítés a wordpress.org -ról"
230
 
231
+ #: gallery-plugin.php:705
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
235
 
236
+ #: gallery-plugin.php:740
237
  #, fuzzy
238
  msgid "See images &raquo;"
239
  msgstr "Fotó megtekintése &raquo;"
240
 
241
+ #: gallery-plugin.php:839
242
  #, fuzzy
243
  msgid "Settings are saved"
244
  msgstr "Beállítások elmentve."
245
 
246
+ #: gallery-plugin.php:853
247
  #, fuzzy
248
  msgid "Gallery Settings"
249
  msgstr "Galéria beállítások"
250
 
251
+ #: gallery-plugin.php:856
252
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:860
256
  #, fuzzy
257
  msgid "Image size for the album cover"
258
  msgstr "Размер для "
259
 
260
+ #: gallery-plugin.php:862
261
+ #: gallery-plugin.php:870
262
+ #: gallery-plugin.php:883
263
  #, fuzzy
264
  msgid "Image size"
265
  msgstr "Kép méret neve"
266
 
267
+ #: gallery-plugin.php:863
268
+ #: gallery-plugin.php:871
269
  msgid "Width (in px)"
270
  msgstr "Szélesség (px-ben)"
271
 
272
+ #: gallery-plugin.php:864
273
+ #: gallery-plugin.php:872
274
  msgid "Height (in px)"
275
  msgstr "Magasság (px-ben)"
276
 
277
+ #: gallery-plugin.php:868
278
  #, fuzzy
279
  msgid "Gallery image size"
280
  msgstr "Galériák"
281
 
282
+ #: gallery-plugin.php:876
283
  #, fuzzy
284
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
285
  msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
286
 
287
+ #: gallery-plugin.php:881
288
  msgid "Gallery image size in the lightbox"
289
  msgstr ""
290
 
291
+ #: gallery-plugin.php:884
292
  #, fuzzy
293
  msgid "Max width (in px)"
294
  msgstr "Szélesség (px-ben)"
295
 
296
+ #: gallery-plugin.php:885
297
  #, fuzzy
298
  msgid "Max height (in px)"
299
  msgstr "Magasság (px-ben)"
300
 
301
+ #: gallery-plugin.php:886
302
  msgid "Display a full size image in the lightbox"
303
  msgstr ""
304
 
305
+ #: gallery-plugin.php:890
306
  msgid "Crop position"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:892
310
  msgid "Horizontal"
311
  msgstr ""
312
 
313
+ #: gallery-plugin.php:894
314
  msgid "left"
315
  msgstr ""
316
 
317
+ #: gallery-plugin.php:895
318
+ #: gallery-plugin.php:902
319
  msgid "center"
320
  msgstr ""
321
 
322
+ #: gallery-plugin.php:896
323
  msgid "right"
324
  msgstr ""
325
 
326
+ #: gallery-plugin.php:899
327
  msgid "Vertical"
328
  msgstr ""
329
 
330
+ #: gallery-plugin.php:901
331
  msgid "top"
332
  msgstr ""
333
 
334
+ #: gallery-plugin.php:903
335
  msgid "bottom"
336
  msgstr ""
337
 
338
+ #: gallery-plugin.php:908
339
  msgid "Lightbox background"
340
  msgstr ""
341
 
342
+ #: gallery-plugin.php:910
343
  msgid "Default"
344
  msgstr ""
345
 
346
+ #: gallery-plugin.php:911
347
  msgid "Background transparency (from 0 to 1)"
348
  msgstr ""
349
 
350
+ #: gallery-plugin.php:913
351
  msgid "Select a background color"
352
  msgstr ""
353
 
354
+ #: gallery-plugin.php:915
355
  msgid "Background color"
356
  msgstr ""
357
 
358
+ #: gallery-plugin.php:922
359
+ #: gallery-plugin.php:1027
360
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
361
  msgstr ""
362
 
363
+ #: gallery-plugin.php:929
364
  msgid "Images with border"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:932
368
  msgid "Border width in px, just numbers"
369
  msgstr ""
370
 
371
+ #: gallery-plugin.php:934
372
+ #: gallery-plugin.php:936
373
  msgid "Select a border color"
374
  msgstr ""
375
 
376
+ #: gallery-plugin.php:942
377
  #, fuzzy
378
  msgid "Number of images in the row"
379
  msgstr "Képek száma egy sorban"
380
 
381
+ #: gallery-plugin.php:948
382
  msgid "Start slideshow"
383
  msgstr ""
384
 
385
+ #: gallery-plugin.php:954
386
  msgid "Slideshow interval"
387
  msgstr ""
388
 
389
+ #: gallery-plugin.php:962
390
  msgid "Attachment ID"
391
  msgstr ""
392
 
393
+ #: gallery-plugin.php:963
394
  #, fuzzy
395
  msgid "Image Name"
396
  msgstr "Kép méret neve"
397
 
398
+ #: gallery-plugin.php:965
399
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
400
  msgstr ""
401
 
402
+ #: gallery-plugin.php:966
403
  msgid "Random"
404
  msgstr ""
405
 
406
+ #: gallery-plugin.php:970
407
  #, fuzzy
408
  msgid "Sort images"
409
  msgstr "Képek száma egy sorban"
410
 
411
+ #: gallery-plugin.php:972
412
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
413
  msgstr ""
414
 
415
+ #: gallery-plugin.php:973
416
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
417
  msgstr ""
418
 
419
+ #: gallery-plugin.php:977
420
  msgid "Display text above the image"
421
  msgstr ""
422
 
423
+ #: gallery-plugin.php:979
424
  msgid "If you want to display text just in a lightbox"
425
  msgstr ""
426
 
427
+ #: gallery-plugin.php:983
428
  msgid "Display the Back link"
429
  msgstr ""
430
 
431
+ #: gallery-plugin.php:989
432
  msgid "Display the Back link in the shortcode"
433
  msgstr ""
434
 
435
+ #: gallery-plugin.php:995
436
  msgid "The Back link text"
437
  msgstr ""
438
 
439
+ #: gallery-plugin.php:1001
440
  msgid "The Back link URL"
441
  msgstr ""
442
 
443
+ #: gallery-plugin.php:1003
444
  msgid "Gallery page (Page with Gallery Template)"
445
  msgstr ""
446
 
447
+ #: gallery-plugin.php:1005
448
  msgid "(Full URL to custom page)"
449
  msgstr ""
450
 
451
+ #: gallery-plugin.php:1009
452
  msgid "The Read More link text"
453
  msgstr ""
454
 
455
+ #: gallery-plugin.php:1017
456
+ msgid "Display Like buttons in the lightbox"
457
+ msgstr ""
458
+
459
+ #: gallery-plugin.php:1019
460
+ msgid "FaceBook"
461
+ msgstr ""
462
+
463
+ #: gallery-plugin.php:1020
464
+ #, fuzzy
465
+ msgid "Twitter"
466
+ msgstr "Cím"
467
+
468
+ #: gallery-plugin.php:1021
469
+ msgid "Pinterest"
470
+ msgstr ""
471
+
472
+ #: gallery-plugin.php:1022
473
+ msgid "Google +1"
474
+ msgstr ""
475
+
476
+ #: gallery-plugin.php:1035
477
  msgid "Save Changes"
478
  msgstr "Változások mentése"
479
 
480
+ #: gallery-plugin.php:1048
481
  msgid "FAQ"
482
  msgstr "Gy.I.K."
483
 
484
+ #: gallery-plugin.php:1049
485
  msgid "Support"
486
  msgstr "Támogatás"
487
 
488
+ #: gallery-plugin.php:1256
489
  #: template/gallery-single-template.php:76
490
  #, fuzzy
491
  msgid "Sorry, nothing found."
492
  msgstr "Sajnáljuk - nincs megjelenítendő elem."
493
 
494
+ #: gallery-plugin.php:1278
495
  #: template/gallery-single-template.php:101
496
  msgid "Download high resolution image"
497
  msgstr ""
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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Gallerie"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galleria"
33
 
@@ -97,7 +97,7 @@ msgid "Please make a choice"
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
- #: gallery-plugin.php:959
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Conta immagini"
@@ -167,316 +167,338 @@ msgid "Publishing"
167
  msgstr "Pubblico"
168
 
169
  #: gallery-plugin.php:483
170
- #: gallery-plugin.php:963
171
  msgid "Date"
172
  msgstr "Data"
173
 
174
- #: gallery-plugin.php:652
175
  #, fuzzy
176
  msgid "Pro plugins"
177
  msgstr "Plugin consigliati"
178
 
179
- #: gallery-plugin.php:655
180
- #: gallery-plugin.php:681
181
  msgid "Activated plugins"
182
  msgstr "Attivare plugin"
183
 
184
- #: gallery-plugin.php:657
185
- #: gallery-plugin.php:665
186
- #: gallery-plugin.php:673
187
- #: gallery-plugin.php:683
188
- #: gallery-plugin.php:691
189
- #: gallery-plugin.php:699
190
  msgid "Read more"
191
  msgstr "Leggi altro"
192
 
193
- #: gallery-plugin.php:657
194
- #: gallery-plugin.php:683
195
- #: gallery-plugin.php:1028
196
- #: gallery-plugin.php:1043
197
  msgid "Settings"
198
  msgstr "Impostazioni"
199
 
200
- #: gallery-plugin.php:663
201
- #: gallery-plugin.php:689
202
  msgid "Installed plugins"
203
  msgstr "Plugin installati"
204
 
205
- #: gallery-plugin.php:671
206
- #: gallery-plugin.php:697
207
  msgid "Recommended plugins"
208
  msgstr "Plugin consigliati"
209
 
210
- #: gallery-plugin.php:673
211
  msgid "Purchase"
212
  msgstr ""
213
 
214
- #: gallery-plugin.php:678
215
  #, fuzzy
216
  msgid "Free plugins"
217
  msgstr "Plugin consigliati"
218
 
219
- #: gallery-plugin.php:699
220
  msgid "Download"
221
  msgstr "Download"
222
 
223
- #: gallery-plugin.php:699
224
  #, php-format
225
  msgid "Install %s"
226
  msgstr "Installа %s"
227
 
228
- #: gallery-plugin.php:699
229
  msgid "Install now from wordpress.org"
230
  msgstr "Installa ora da wordpress.org"
231
 
232
- #: gallery-plugin.php:704
233
  #, fuzzy
234
  msgid "If you have any questions, please contact us via"
235
  msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
236
 
237
- #: gallery-plugin.php:739
238
  #, fuzzy
239
  msgid "See images &raquo;"
240
  msgstr "Guarda foto &raquo;"
241
 
242
- #: gallery-plugin.php:838
243
  #, fuzzy
244
  msgid "Settings are saved"
245
  msgstr "Opzioni salvate."
246
 
247
- #: gallery-plugin.php:852
248
  #, fuzzy
249
  msgid "Gallery Settings"
250
  msgstr "Opzioni gallerie"
251
 
252
- #: gallery-plugin.php:855
253
  #, fuzzy
254
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
255
  msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
256
 
257
- #: gallery-plugin.php:859
258
  #, fuzzy
259
  msgid "Image size for the album cover"
260
  msgstr "Размер для "
261
 
262
- #: gallery-plugin.php:861
263
- #: gallery-plugin.php:869
264
- #: gallery-plugin.php:882
265
  #, fuzzy
266
  msgid "Image size"
267
  msgstr "Image size name"
268
 
269
- #: gallery-plugin.php:862
270
- #: gallery-plugin.php:870
271
  msgid "Width (in px)"
272
  msgstr "Larghezza in px"
273
 
274
- #: gallery-plugin.php:863
275
- #: gallery-plugin.php:871
276
  msgid "Height (in px)"
277
  msgstr "Altezza in px"
278
 
279
- #: gallery-plugin.php:867
280
  #, fuzzy
281
  msgid "Gallery image size"
282
  msgstr "Gallerie"
283
 
284
- #: gallery-plugin.php:875
285
  #, fuzzy
286
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
287
  msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
288
 
289
- #: gallery-plugin.php:880
290
  msgid "Gallery image size in the lightbox"
291
  msgstr ""
292
 
293
- #: gallery-plugin.php:883
294
  #, fuzzy
295
  msgid "Max width (in px)"
296
  msgstr "Larghezza in px"
297
 
298
- #: gallery-plugin.php:884
299
  #, fuzzy
300
  msgid "Max height (in px)"
301
  msgstr "Altezza in px"
302
 
303
- #: gallery-plugin.php:885
304
  msgid "Display a full size image in the lightbox"
305
  msgstr ""
306
 
307
- #: gallery-plugin.php:889
308
  msgid "Crop position"
309
  msgstr ""
310
 
311
- #: gallery-plugin.php:891
312
  msgid "Horizontal"
313
  msgstr ""
314
 
315
- #: gallery-plugin.php:893
316
  msgid "left"
317
  msgstr ""
318
 
319
- #: gallery-plugin.php:894
320
- #: gallery-plugin.php:901
321
  msgid "center"
322
  msgstr ""
323
 
324
- #: gallery-plugin.php:895
325
  msgid "right"
326
  msgstr ""
327
 
328
- #: gallery-plugin.php:898
329
  msgid "Vertical"
330
  msgstr ""
331
 
332
- #: gallery-plugin.php:900
333
  msgid "top"
334
  msgstr ""
335
 
336
- #: gallery-plugin.php:902
337
  msgid "bottom"
338
  msgstr ""
339
 
340
- #: gallery-plugin.php:907
341
  msgid "Lightbox background"
342
  msgstr ""
343
 
344
- #: gallery-plugin.php:909
345
  msgid "Default"
346
  msgstr ""
347
 
348
- #: gallery-plugin.php:910
349
  msgid "Background transparency (from 0 to 1)"
350
  msgstr ""
351
 
352
- #: gallery-plugin.php:912
353
  msgid "Select a background color"
354
  msgstr ""
355
 
356
- #: gallery-plugin.php:914
357
  msgid "Background color"
358
  msgstr ""
359
 
360
- #: gallery-plugin.php:921
 
361
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
362
  msgstr ""
363
 
364
- #: gallery-plugin.php:928
365
  msgid "Images with border"
366
  msgstr ""
367
 
368
- #: gallery-plugin.php:931
369
  msgid "Border width in px, just numbers"
370
  msgstr ""
371
 
372
- #: gallery-plugin.php:933
373
- #: gallery-plugin.php:935
374
  msgid "Select a border color"
375
  msgstr ""
376
 
377
- #: gallery-plugin.php:941
378
  #, fuzzy
379
  msgid "Number of images in the row"
380
  msgstr "Conta immagini"
381
 
382
- #: gallery-plugin.php:947
383
  msgid "Start slideshow"
384
  msgstr "Avvia presentazione"
385
 
386
- #: gallery-plugin.php:953
387
  msgid "Slideshow interval"
388
  msgstr "Intervallo presentazione"
389
 
390
- #: gallery-plugin.php:961
391
  #, fuzzy
392
  msgid "Attachment ID"
393
  msgstr "Id di visualizzazione"
394
 
395
- #: gallery-plugin.php:962
396
  #, fuzzy
397
  msgid "Image Name"
398
  msgstr "Immagine"
399
 
400
- #: gallery-plugin.php:964
401
  #, fuzzy
402
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
403
  msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
404
 
405
- #: gallery-plugin.php:965
406
  #, fuzzy
407
  msgid "Random"
408
  msgstr "Casuale"
409
 
410
- #: gallery-plugin.php:969
411
  #, fuzzy
412
  msgid "Sort images"
413
  msgstr "Conta immagini"
414
 
415
- #: gallery-plugin.php:971
416
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
417
  msgstr "ASC(ordine ascendente dal pi&ugrave; basso al pi&ugrave; alto - 1, 2, 3; a, b, c,)"
418
 
419
- #: gallery-plugin.php:972
420
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
421
  msgstr "DESC(ordine discendente dal pi&ugrave; alto al pi&ugrave; basso - 3, 2, 1; c, b, a,)"
422
 
423
- #: gallery-plugin.php:976
424
  msgid "Display text above the image"
425
  msgstr ""
426
 
427
- #: gallery-plugin.php:978
428
  msgid "If you want to display text just in a lightbox"
429
  msgstr ""
430
 
431
- #: gallery-plugin.php:982
432
  #, fuzzy
433
  msgid "Display the Back link"
434
  msgstr "Mostra lin di ritorno"
435
 
436
- #: gallery-plugin.php:988
437
  #, fuzzy
438
  msgid "Display the Back link in the shortcode"
439
  msgstr "Mostra il link di ritorno col codice"
440
 
441
- #: gallery-plugin.php:994
442
  msgid "The Back link text"
443
  msgstr ""
444
 
445
- #: gallery-plugin.php:1000
446
  msgid "The Back link URL"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1002
450
  msgid "Gallery page (Page with Gallery Template)"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1004
454
  msgid "(Full URL to custom page)"
455
  msgstr ""
456
 
457
- #: gallery-plugin.php:1008
458
  msgid "The Read More link text"
459
  msgstr ""
460
 
461
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  msgid "Save Changes"
463
  msgstr "Salva cambiamenti"
464
 
465
- #: gallery-plugin.php:1029
466
  msgid "FAQ"
467
  msgstr "FAQ "
468
 
469
- #: gallery-plugin.php:1030
470
  msgid "Support"
471
  msgstr "Supporto"
472
 
473
- #: gallery-plugin.php:1237
474
  #: template/gallery-single-template.php:76
475
  #, fuzzy
476
  msgid "Sorry, nothing found."
477
  msgstr "Spiacente - non è stato trovato nulla."
478
 
479
- #: gallery-plugin.php:1259
480
  #: template/gallery-single-template.php:101
481
  msgid "Download high resolution image"
482
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
23
 
27
  msgstr "Gallerie"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galleria"
33
 
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
+ #: gallery-plugin.php:960
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Conta immagini"
167
  msgstr "Pubblico"
168
 
169
  #: gallery-plugin.php:483
170
+ #: gallery-plugin.php:964
171
  msgid "Date"
172
  msgstr "Data"
173
 
174
+ #: gallery-plugin.php:653
175
  #, fuzzy
176
  msgid "Pro plugins"
177
  msgstr "Plugin consigliati"
178
 
179
+ #: gallery-plugin.php:656
180
+ #: gallery-plugin.php:682
181
  msgid "Activated plugins"
182
  msgstr "Attivare plugin"
183
 
184
+ #: gallery-plugin.php:658
185
+ #: gallery-plugin.php:666
186
+ #: gallery-plugin.php:674
187
+ #: gallery-plugin.php:684
188
+ #: gallery-plugin.php:692
189
+ #: gallery-plugin.php:700
190
  msgid "Read more"
191
  msgstr "Leggi altro"
192
 
193
+ #: gallery-plugin.php:658
194
+ #: gallery-plugin.php:684
195
+ #: gallery-plugin.php:1047
196
+ #: gallery-plugin.php:1062
197
  msgid "Settings"
198
  msgstr "Impostazioni"
199
 
200
+ #: gallery-plugin.php:664
201
+ #: gallery-plugin.php:690
202
  msgid "Installed plugins"
203
  msgstr "Plugin installati"
204
 
205
+ #: gallery-plugin.php:672
206
+ #: gallery-plugin.php:698
207
  msgid "Recommended plugins"
208
  msgstr "Plugin consigliati"
209
 
210
+ #: gallery-plugin.php:674
211
  msgid "Purchase"
212
  msgstr ""
213
 
214
+ #: gallery-plugin.php:679
215
  #, fuzzy
216
  msgid "Free plugins"
217
  msgstr "Plugin consigliati"
218
 
219
+ #: gallery-plugin.php:700
220
  msgid "Download"
221
  msgstr "Download"
222
 
223
+ #: gallery-plugin.php:700
224
  #, php-format
225
  msgid "Install %s"
226
  msgstr "Installа %s"
227
 
228
+ #: gallery-plugin.php:700
229
  msgid "Install now from wordpress.org"
230
  msgstr "Installa ora da wordpress.org"
231
 
232
+ #: gallery-plugin.php:705
233
  #, fuzzy
234
  msgid "If you have any questions, please contact us via"
235
  msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
236
 
237
+ #: gallery-plugin.php:740
238
  #, fuzzy
239
  msgid "See images &raquo;"
240
  msgstr "Guarda foto &raquo;"
241
 
242
+ #: gallery-plugin.php:839
243
  #, fuzzy
244
  msgid "Settings are saved"
245
  msgstr "Opzioni salvate."
246
 
247
+ #: gallery-plugin.php:853
248
  #, fuzzy
249
  msgid "Gallery Settings"
250
  msgstr "Opzioni gallerie"
251
 
252
+ #: gallery-plugin.php:856
253
  #, fuzzy
254
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
255
  msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
256
 
257
+ #: gallery-plugin.php:860
258
  #, fuzzy
259
  msgid "Image size for the album cover"
260
  msgstr "Размер для "
261
 
262
+ #: gallery-plugin.php:862
263
+ #: gallery-plugin.php:870
264
+ #: gallery-plugin.php:883
265
  #, fuzzy
266
  msgid "Image size"
267
  msgstr "Image size name"
268
 
269
+ #: gallery-plugin.php:863
270
+ #: gallery-plugin.php:871
271
  msgid "Width (in px)"
272
  msgstr "Larghezza in px"
273
 
274
+ #: gallery-plugin.php:864
275
+ #: gallery-plugin.php:872
276
  msgid "Height (in px)"
277
  msgstr "Altezza in px"
278
 
279
+ #: gallery-plugin.php:868
280
  #, fuzzy
281
  msgid "Gallery image size"
282
  msgstr "Gallerie"
283
 
284
+ #: gallery-plugin.php:876
285
  #, fuzzy
286
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
287
  msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
288
 
289
+ #: gallery-plugin.php:881
290
  msgid "Gallery image size in the lightbox"
291
  msgstr ""
292
 
293
+ #: gallery-plugin.php:884
294
  #, fuzzy
295
  msgid "Max width (in px)"
296
  msgstr "Larghezza in px"
297
 
298
+ #: gallery-plugin.php:885
299
  #, fuzzy
300
  msgid "Max height (in px)"
301
  msgstr "Altezza in px"
302
 
303
+ #: gallery-plugin.php:886
304
  msgid "Display a full size image in the lightbox"
305
  msgstr ""
306
 
307
+ #: gallery-plugin.php:890
308
  msgid "Crop position"
309
  msgstr ""
310
 
311
+ #: gallery-plugin.php:892
312
  msgid "Horizontal"
313
  msgstr ""
314
 
315
+ #: gallery-plugin.php:894
316
  msgid "left"
317
  msgstr ""
318
 
319
+ #: gallery-plugin.php:895
320
+ #: gallery-plugin.php:902
321
  msgid "center"
322
  msgstr ""
323
 
324
+ #: gallery-plugin.php:896
325
  msgid "right"
326
  msgstr ""
327
 
328
+ #: gallery-plugin.php:899
329
  msgid "Vertical"
330
  msgstr ""
331
 
332
+ #: gallery-plugin.php:901
333
  msgid "top"
334
  msgstr ""
335
 
336
+ #: gallery-plugin.php:903
337
  msgid "bottom"
338
  msgstr ""
339
 
340
+ #: gallery-plugin.php:908
341
  msgid "Lightbox background"
342
  msgstr ""
343
 
344
+ #: gallery-plugin.php:910
345
  msgid "Default"
346
  msgstr ""
347
 
348
+ #: gallery-plugin.php:911
349
  msgid "Background transparency (from 0 to 1)"
350
  msgstr ""
351
 
352
+ #: gallery-plugin.php:913
353
  msgid "Select a background color"
354
  msgstr ""
355
 
356
+ #: gallery-plugin.php:915
357
  msgid "Background color"
358
  msgstr ""
359
 
360
+ #: gallery-plugin.php:922
361
+ #: gallery-plugin.php:1027
362
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
363
  msgstr ""
364
 
365
+ #: gallery-plugin.php:929
366
  msgid "Images with border"
367
  msgstr ""
368
 
369
+ #: gallery-plugin.php:932
370
  msgid "Border width in px, just numbers"
371
  msgstr ""
372
 
373
+ #: gallery-plugin.php:934
374
+ #: gallery-plugin.php:936
375
  msgid "Select a border color"
376
  msgstr ""
377
 
378
+ #: gallery-plugin.php:942
379
  #, fuzzy
380
  msgid "Number of images in the row"
381
  msgstr "Conta immagini"
382
 
383
+ #: gallery-plugin.php:948
384
  msgid "Start slideshow"
385
  msgstr "Avvia presentazione"
386
 
387
+ #: gallery-plugin.php:954
388
  msgid "Slideshow interval"
389
  msgstr "Intervallo presentazione"
390
 
391
+ #: gallery-plugin.php:962
392
  #, fuzzy
393
  msgid "Attachment ID"
394
  msgstr "Id di visualizzazione"
395
 
396
+ #: gallery-plugin.php:963
397
  #, fuzzy
398
  msgid "Image Name"
399
  msgstr "Immagine"
400
 
401
+ #: gallery-plugin.php:965
402
  #, fuzzy
403
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
404
  msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
405
 
406
+ #: gallery-plugin.php:966
407
  #, fuzzy
408
  msgid "Random"
409
  msgstr "Casuale"
410
 
411
+ #: gallery-plugin.php:970
412
  #, fuzzy
413
  msgid "Sort images"
414
  msgstr "Conta immagini"
415
 
416
+ #: gallery-plugin.php:972
417
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
418
  msgstr "ASC(ordine ascendente dal pi&ugrave; basso al pi&ugrave; alto - 1, 2, 3; a, b, c,)"
419
 
420
+ #: gallery-plugin.php:973
421
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
422
  msgstr "DESC(ordine discendente dal pi&ugrave; alto al pi&ugrave; basso - 3, 2, 1; c, b, a,)"
423
 
424
+ #: gallery-plugin.php:977
425
  msgid "Display text above the image"
426
  msgstr ""
427
 
428
+ #: gallery-plugin.php:979
429
  msgid "If you want to display text just in a lightbox"
430
  msgstr ""
431
 
432
+ #: gallery-plugin.php:983
433
  #, fuzzy
434
  msgid "Display the Back link"
435
  msgstr "Mostra lin di ritorno"
436
 
437
+ #: gallery-plugin.php:989
438
  #, fuzzy
439
  msgid "Display the Back link in the shortcode"
440
  msgstr "Mostra il link di ritorno col codice"
441
 
442
+ #: gallery-plugin.php:995
443
  msgid "The Back link text"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:1001
447
  msgid "The Back link URL"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1003
451
  msgid "Gallery page (Page with Gallery Template)"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1005
455
  msgid "(Full URL to custom page)"
456
  msgstr ""
457
 
458
+ #: gallery-plugin.php:1009
459
  msgid "The Read More link text"
460
  msgstr ""
461
 
462
+ #: gallery-plugin.php:1017
463
+ msgid "Display Like buttons in the lightbox"
464
+ msgstr ""
465
+
466
+ #: gallery-plugin.php:1019
467
+ msgid "FaceBook"
468
+ msgstr ""
469
+
470
+ #: gallery-plugin.php:1020
471
+ #, fuzzy
472
+ msgid "Twitter"
473
+ msgstr "Titolo"
474
+
475
+ #: gallery-plugin.php:1021
476
+ msgid "Pinterest"
477
+ msgstr ""
478
+
479
+ #: gallery-plugin.php:1022
480
+ msgid "Google +1"
481
+ msgstr ""
482
+
483
+ #: gallery-plugin.php:1035
484
  msgid "Save Changes"
485
  msgstr "Salva cambiamenti"
486
 
487
+ #: gallery-plugin.php:1048
488
  msgid "FAQ"
489
  msgstr "FAQ "
490
 
491
+ #: gallery-plugin.php:1049
492
  msgid "Support"
493
  msgstr "Supporto"
494
 
495
+ #: gallery-plugin.php:1256
496
  #: template/gallery-single-template.php:76
497
  #, fuzzy
498
  msgid "Sorry, nothing found."
499
  msgstr "Spiacente - non è stato trovato nulla."
500
 
501
+ #: gallery-plugin.php:1278
502
  #: template/gallery-single-template.php:101
503
  msgid "Download high resolution image"
504
  msgstr ""
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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "გალერეა"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "გალერეა"
33
 
@@ -97,7 +97,7 @@ msgid "Please make a choice"
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
- #: gallery-plugin.php:959
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "სურათების რაოდენობა მწკრივში"
@@ -166,309 +166,331 @@ msgid "Publishing"
166
  msgstr "საჯარო"
167
 
168
  #: gallery-plugin.php:483
169
- #: gallery-plugin.php:963
170
  msgid "Date"
171
  msgstr "თარიღი"
172
 
173
- #: gallery-plugin.php:652
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "რეკომენდირებული დანამატები"
177
 
178
- #: gallery-plugin.php:655
179
- #: gallery-plugin.php:681
180
  msgid "Activated plugins"
181
  msgstr "გააქტიურებული დანამატები:"
182
 
183
- #: gallery-plugin.php:657
184
- #: gallery-plugin.php:665
185
- #: gallery-plugin.php:673
186
- #: gallery-plugin.php:683
187
- #: gallery-plugin.php:691
188
- #: gallery-plugin.php:699
189
  msgid "Read more"
190
  msgstr "სრულად ნახვა"
191
 
192
- #: gallery-plugin.php:657
193
- #: gallery-plugin.php:683
194
- #: gallery-plugin.php:1028
195
- #: gallery-plugin.php:1043
196
  msgid "Settings"
197
  msgstr "პარამეტრები"
198
 
199
- #: gallery-plugin.php:663
200
- #: gallery-plugin.php:689
201
  msgid "Installed plugins"
202
  msgstr "დაყენებული დანამატები"
203
 
204
- #: gallery-plugin.php:671
205
- #: gallery-plugin.php:697
206
  msgid "Recommended plugins"
207
  msgstr "რეკომენდირებული დანამატები"
208
 
209
- #: gallery-plugin.php:673
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:678
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "რეკომენდირებული დანამატები"
217
 
218
- #: gallery-plugin.php:699
219
  msgid "Download"
220
  msgstr "გადმოტვირთვა"
221
 
222
- #: gallery-plugin.php:699
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "დაყენებულია %s"
226
 
227
- #: gallery-plugin.php:699
228
  msgid "Install now from wordpress.org"
229
  msgstr "დააყენეთ wordpress.org-იდან"
230
 
231
- #: gallery-plugin.php:704
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
235
 
236
- #: gallery-plugin.php:739
237
  msgid "See images &raquo;"
238
  msgstr ""
239
 
240
- #: gallery-plugin.php:838
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "პარამეტრები შენახულია"
244
 
245
- #: gallery-plugin.php:852
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "გალერეის პარამეტრები"
249
 
250
- #: gallery-plugin.php:855
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
- #: gallery-plugin.php:859
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
- #: gallery-plugin.php:861
260
- #: gallery-plugin.php:869
261
- #: gallery-plugin.php:882
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "ზომის სახელი"
265
 
266
- #: gallery-plugin.php:862
267
- #: gallery-plugin.php:870
268
  msgid "Width (in px)"
269
  msgstr "სიგანე(პიქსელებში)"
270
 
271
- #: gallery-plugin.php:863
272
- #: gallery-plugin.php:871
273
  msgid "Height (in px)"
274
  msgstr "სიმაღლე(პიქსელებში)"
275
 
276
- #: gallery-plugin.php:867
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "გალერეა"
280
 
281
- #: gallery-plugin.php:875
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
285
 
286
- #: gallery-plugin.php:880
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
- #: gallery-plugin.php:883
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "სიგანე(პიქსელებში)"
294
 
295
- #: gallery-plugin.php:884
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "სიმაღლე(პიქსელებში)"
299
 
300
- #: gallery-plugin.php:885
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
- #: gallery-plugin.php:889
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
- #: gallery-plugin.php:891
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
- #: gallery-plugin.php:893
313
  msgid "left"
314
  msgstr ""
315
 
316
- #: gallery-plugin.php:894
317
- #: gallery-plugin.php:901
318
  msgid "center"
319
  msgstr ""
320
 
321
- #: gallery-plugin.php:895
322
  msgid "right"
323
  msgstr ""
324
 
325
- #: gallery-plugin.php:898
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
- #: gallery-plugin.php:900
330
  msgid "top"
331
  msgstr ""
332
 
333
- #: gallery-plugin.php:902
334
  msgid "bottom"
335
  msgstr ""
336
 
337
- #: gallery-plugin.php:907
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
- #: gallery-plugin.php:909
342
  msgid "Default"
343
  msgstr ""
344
 
345
- #: gallery-plugin.php:910
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
- #: gallery-plugin.php:912
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
- #: gallery-plugin.php:914
354
  msgid "Background color"
355
  msgstr ""
356
 
357
- #: gallery-plugin.php:921
 
358
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
359
  msgstr ""
360
 
361
- #: gallery-plugin.php:928
362
  msgid "Images with border"
363
  msgstr ""
364
 
365
- #: gallery-plugin.php:931
366
  msgid "Border width in px, just numbers"
367
  msgstr ""
368
 
369
- #: gallery-plugin.php:933
370
- #: gallery-plugin.php:935
371
  msgid "Select a border color"
372
  msgstr ""
373
 
374
- #: gallery-plugin.php:941
375
  #, fuzzy
376
  msgid "Number of images in the row"
377
  msgstr "სურათების რაოდენობა მწკრივში"
378
 
379
- #: gallery-plugin.php:947
380
  msgid "Start slideshow"
381
  msgstr ""
382
 
383
- #: gallery-plugin.php:953
384
  msgid "Slideshow interval"
385
  msgstr ""
386
 
387
- #: gallery-plugin.php:961
388
  msgid "Attachment ID"
389
  msgstr ""
390
 
391
- #: gallery-plugin.php:962
392
  #, fuzzy
393
  msgid "Image Name"
394
  msgstr "ზომის სახელი"
395
 
396
- #: gallery-plugin.php:964
397
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
398
  msgstr ""
399
 
400
- #: gallery-plugin.php:965
401
  msgid "Random"
402
  msgstr ""
403
 
404
- #: gallery-plugin.php:969
405
  #, fuzzy
406
  msgid "Sort images"
407
  msgstr "სურათების რაოდენობა მწკრივში"
408
 
409
- #: gallery-plugin.php:971
410
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:972
414
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
415
  msgstr ""
416
 
417
- #: gallery-plugin.php:976
418
  msgid "Display text above the image"
419
  msgstr ""
420
 
421
- #: gallery-plugin.php:978
422
  msgid "If you want to display text just in a lightbox"
423
  msgstr ""
424
 
425
- #: gallery-plugin.php:982
426
  msgid "Display the Back link"
427
  msgstr ""
428
 
429
- #: gallery-plugin.php:988
430
  msgid "Display the Back link in the shortcode"
431
  msgstr ""
432
 
433
- #: gallery-plugin.php:994
434
  msgid "The Back link text"
435
  msgstr ""
436
 
437
- #: gallery-plugin.php:1000
438
  msgid "The Back link URL"
439
  msgstr ""
440
 
441
- #: gallery-plugin.php:1002
442
  msgid "Gallery page (Page with Gallery Template)"
443
  msgstr ""
444
 
445
- #: gallery-plugin.php:1004
446
  msgid "(Full URL to custom page)"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1008
450
  msgid "The Read More link text"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid "Save Changes"
455
  msgstr "ცვლილებების შენახვა"
456
 
457
- #: gallery-plugin.php:1029
458
  msgid "FAQ"
459
  msgstr "FAQ"
460
 
461
- #: gallery-plugin.php:1030
462
  msgid "Support"
463
  msgstr "Support"
464
 
465
- #: gallery-plugin.php:1237
466
  #: template/gallery-single-template.php:76
467
  #, fuzzy
468
  msgid "Sorry, nothing found."
469
  msgstr "მაპატიეთ - არაფერია ნაპოვნი."
470
 
471
- #: gallery-plugin.php:1259
472
  #: template/gallery-single-template.php:101
473
  msgid "Download high resolution image"
474
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "გალერეა"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "გალერეა"
33
 
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
+ #: gallery-plugin.php:960
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "სურათების რაოდენობა მწკრივში"
166
  msgstr "საჯარო"
167
 
168
  #: gallery-plugin.php:483
169
+ #: gallery-plugin.php:964
170
  msgid "Date"
171
  msgstr "თარიღი"
172
 
173
+ #: gallery-plugin.php:653
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "რეკომენდირებული დანამატები"
177
 
178
+ #: gallery-plugin.php:656
179
+ #: gallery-plugin.php:682
180
  msgid "Activated plugins"
181
  msgstr "გააქტიურებული დანამატები:"
182
 
183
+ #: gallery-plugin.php:658
184
+ #: gallery-plugin.php:666
185
+ #: gallery-plugin.php:674
186
+ #: gallery-plugin.php:684
187
+ #: gallery-plugin.php:692
188
+ #: gallery-plugin.php:700
189
  msgid "Read more"
190
  msgstr "სრულად ნახვა"
191
 
192
+ #: gallery-plugin.php:658
193
+ #: gallery-plugin.php:684
194
+ #: gallery-plugin.php:1047
195
+ #: gallery-plugin.php:1062
196
  msgid "Settings"
197
  msgstr "პარამეტრები"
198
 
199
+ #: gallery-plugin.php:664
200
+ #: gallery-plugin.php:690
201
  msgid "Installed plugins"
202
  msgstr "დაყენებული დანამატები"
203
 
204
+ #: gallery-plugin.php:672
205
+ #: gallery-plugin.php:698
206
  msgid "Recommended plugins"
207
  msgstr "რეკომენდირებული დანამატები"
208
 
209
+ #: gallery-plugin.php:674
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:679
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "რეკომენდირებული დანამატები"
217
 
218
+ #: gallery-plugin.php:700
219
  msgid "Download"
220
  msgstr "გადმოტვირთვა"
221
 
222
+ #: gallery-plugin.php:700
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "დაყენებულია %s"
226
 
227
+ #: gallery-plugin.php:700
228
  msgid "Install now from wordpress.org"
229
  msgstr "დააყენეთ wordpress.org-იდან"
230
 
231
+ #: gallery-plugin.php:705
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
235
 
236
+ #: gallery-plugin.php:740
237
  msgid "See images &raquo;"
238
  msgstr ""
239
 
240
+ #: gallery-plugin.php:839
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "პარამეტრები შენახულია"
244
 
245
+ #: gallery-plugin.php:853
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "გალერეის პარამეტრები"
249
 
250
+ #: gallery-plugin.php:856
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
+ #: gallery-plugin.php:860
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
+ #: gallery-plugin.php:862
260
+ #: gallery-plugin.php:870
261
+ #: gallery-plugin.php:883
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "ზომის სახელი"
265
 
266
+ #: gallery-plugin.php:863
267
+ #: gallery-plugin.php:871
268
  msgid "Width (in px)"
269
  msgstr "სიგანე(პიქსელებში)"
270
 
271
+ #: gallery-plugin.php:864
272
+ #: gallery-plugin.php:872
273
  msgid "Height (in px)"
274
  msgstr "სიმაღლე(პიქსელებში)"
275
 
276
+ #: gallery-plugin.php:868
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "გალერეა"
280
 
281
+ #: gallery-plugin.php:876
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
285
 
286
+ #: gallery-plugin.php:881
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:884
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "სიგანე(პიქსელებში)"
294
 
295
+ #: gallery-plugin.php:885
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "სიმაღლე(პიქსელებში)"
299
 
300
+ #: gallery-plugin.php:886
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
+ #: gallery-plugin.php:890
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
+ #: gallery-plugin.php:892
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
+ #: gallery-plugin.php:894
313
  msgid "left"
314
  msgstr ""
315
 
316
+ #: gallery-plugin.php:895
317
+ #: gallery-plugin.php:902
318
  msgid "center"
319
  msgstr ""
320
 
321
+ #: gallery-plugin.php:896
322
  msgid "right"
323
  msgstr ""
324
 
325
+ #: gallery-plugin.php:899
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
+ #: gallery-plugin.php:901
330
  msgid "top"
331
  msgstr ""
332
 
333
+ #: gallery-plugin.php:903
334
  msgid "bottom"
335
  msgstr ""
336
 
337
+ #: gallery-plugin.php:908
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
+ #: gallery-plugin.php:910
342
  msgid "Default"
343
  msgstr ""
344
 
345
+ #: gallery-plugin.php:911
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
+ #: gallery-plugin.php:913
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
+ #: gallery-plugin.php:915
354
  msgid "Background color"
355
  msgstr ""
356
 
357
+ #: gallery-plugin.php:922
358
+ #: gallery-plugin.php:1027
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
+ #: gallery-plugin.php:929
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
+ #: gallery-plugin.php:932
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
+ #: gallery-plugin.php:934
371
+ #: gallery-plugin.php:936
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
+ #: gallery-plugin.php:942
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "სურათების რაოდენობა მწკრივში"
379
 
380
+ #: gallery-plugin.php:948
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
+ #: gallery-plugin.php:954
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
+ #: gallery-plugin.php:962
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
+ #: gallery-plugin.php:963
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "ზომის სახელი"
396
 
397
+ #: gallery-plugin.php:965
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
+ #: gallery-plugin.php:966
402
  msgid "Random"
403
  msgstr ""
404
 
405
+ #: gallery-plugin.php:970
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "სურათების რაოდენობა მწკრივში"
409
 
410
+ #: gallery-plugin.php:972
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
+ #: gallery-plugin.php:973
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
+ #: gallery-plugin.php:977
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
+ #: gallery-plugin.php:979
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
+ #: gallery-plugin.php:983
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
+ #: gallery-plugin.php:989
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
+ #: gallery-plugin.php:995
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
+ #: gallery-plugin.php:1001
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
+ #: gallery-plugin.php:1003
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:1005
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1009
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1017
455
+ msgid "Display Like buttons in the lightbox"
456
+ msgstr ""
457
+
458
+ #: gallery-plugin.php:1019
459
+ msgid "FaceBook"
460
+ msgstr ""
461
+
462
+ #: gallery-plugin.php:1020
463
+ #, fuzzy
464
+ msgid "Twitter"
465
+ msgstr "სათაური"
466
+
467
+ #: gallery-plugin.php:1021
468
+ msgid "Pinterest"
469
+ msgstr ""
470
+
471
+ #: gallery-plugin.php:1022
472
+ msgid "Google +1"
473
+ msgstr ""
474
+
475
+ #: gallery-plugin.php:1035
476
  msgid "Save Changes"
477
  msgstr "ცვლილებების შენახვა"
478
 
479
+ #: gallery-plugin.php:1048
480
  msgid "FAQ"
481
  msgstr "FAQ"
482
 
483
+ #: gallery-plugin.php:1049
484
  msgid "Support"
485
  msgstr "Support"
486
 
487
+ #: gallery-plugin.php:1256
488
  #: template/gallery-single-template.php:76
489
  #, fuzzy
490
  msgid "Sorry, nothing found."
491
  msgstr "მაპატიეთ - არაფერია ნაპოვნი."
492
 
493
+ #: gallery-plugin.php:1278
494
  #: template/gallery-single-template.php:101
495
  msgid "Download high resolution image"
496
  msgstr ""
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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Jūsų temos aplanke nėra failų \"gallery-template.php\" bei \"gallery-single-template.php\". Jei norite, kad galerijos įskiepis tinkamai veiktų, prašome nukopijuoti juos iš `/wp-content/plugins/gallery-plugin/template/` aplanko į savo temos aplanką."
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerijos"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galerija"
33
 
@@ -97,7 +97,7 @@ msgid "Please make a choice"
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
- #: gallery-plugin.php:959
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Paveikslėlių eilėje kiekis"
@@ -167,316 +167,338 @@ msgid "Publishing"
167
  msgstr "Vieša"
168
 
169
  #: gallery-plugin.php:483
170
- #: gallery-plugin.php:963
171
  msgid "Date"
172
  msgstr "Data"
173
 
174
- #: gallery-plugin.php:652
175
  #, fuzzy
176
  msgid "Pro plugins"
177
  msgstr "Rekomenduojami įskiepiai"
178
 
179
- #: gallery-plugin.php:655
180
- #: gallery-plugin.php:681
181
  msgid "Activated plugins"
182
  msgstr "Įjungti įskiepiai"
183
 
184
- #: gallery-plugin.php:657
185
- #: gallery-plugin.php:665
186
- #: gallery-plugin.php:673
187
- #: gallery-plugin.php:683
188
- #: gallery-plugin.php:691
189
- #: gallery-plugin.php:699
190
  msgid "Read more"
191
  msgstr "Skaityti daugiau"
192
 
193
- #: gallery-plugin.php:657
194
- #: gallery-plugin.php:683
195
- #: gallery-plugin.php:1028
196
- #: gallery-plugin.php:1043
197
  msgid "Settings"
198
  msgstr "Nustatymai"
199
 
200
- #: gallery-plugin.php:663
201
- #: gallery-plugin.php:689
202
  msgid "Installed plugins"
203
  msgstr "Įdiegti įskiepiai"
204
 
205
- #: gallery-plugin.php:671
206
- #: gallery-plugin.php:697
207
  msgid "Recommended plugins"
208
  msgstr "Rekomenduojami įskiepiai"
209
 
210
- #: gallery-plugin.php:673
211
  msgid "Purchase"
212
  msgstr ""
213
 
214
- #: gallery-plugin.php:678
215
  #, fuzzy
216
  msgid "Free plugins"
217
  msgstr "Rekomenduojami įskiepiai"
218
 
219
- #: gallery-plugin.php:699
220
  msgid "Download"
221
  msgstr "Atsisiųsti"
222
 
223
- #: gallery-plugin.php:699
224
  #, php-format
225
  msgid "Install %s"
226
  msgstr "Įdiegti %s"
227
 
228
- #: gallery-plugin.php:699
229
  msgid "Install now from wordpress.org"
230
  msgstr "Įdiegti tiesiai iš wordpress.org"
231
 
232
- #: gallery-plugin.php:704
233
  #, fuzzy
234
  msgid "If you have any questions, please contact us via"
235
  msgstr "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, arba užpildykite susisiekimo formą mūsų tinklalapyje"
236
 
237
- #: gallery-plugin.php:739
238
  #, fuzzy
239
  msgid "See images &raquo;"
240
  msgstr "Peržiūrėti nuotrauką &raquo;"
241
 
242
- #: gallery-plugin.php:838
243
  #, fuzzy
244
  msgid "Settings are saved"
245
  msgstr "Pasirinktys išsaugotos."
246
 
247
- #: gallery-plugin.php:852
248
  #, fuzzy
249
  msgid "Gallery Settings"
250
  msgstr "Galerijų pasirinktys"
251
 
252
- #: gallery-plugin.php:855
253
  #, fuzzy
254
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
255
  msgstr "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
256
 
257
- #: gallery-plugin.php:859
258
  #, fuzzy
259
  msgid "Image size for the album cover"
260
  msgstr "Размер для "
261
 
262
- #: gallery-plugin.php:861
263
- #: gallery-plugin.php:869
264
- #: gallery-plugin.php:882
265
  #, fuzzy
266
  msgid "Image size"
267
  msgstr "Paveikslėlio matmenų klasės vardas"
268
 
269
- #: gallery-plugin.php:862
270
- #: gallery-plugin.php:870
271
  msgid "Width (in px)"
272
  msgstr "Plotis (pikseliais)"
273
 
274
- #: gallery-plugin.php:863
275
- #: gallery-plugin.php:871
276
  msgid "Height (in px)"
277
  msgstr "Aukštis (pikseliais)"
278
 
279
- #: gallery-plugin.php:867
280
  #, fuzzy
281
  msgid "Gallery image size"
282
  msgstr "Galerijos"
283
 
284
- #: gallery-plugin.php:875
285
  #, fuzzy
286
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
287
  msgstr "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite naują paveikslėlį."
288
 
289
- #: gallery-plugin.php:880
290
  msgid "Gallery image size in the lightbox"
291
  msgstr ""
292
 
293
- #: gallery-plugin.php:883
294
  #, fuzzy
295
  msgid "Max width (in px)"
296
  msgstr "Plotis (pikseliais)"
297
 
298
- #: gallery-plugin.php:884
299
  #, fuzzy
300
  msgid "Max height (in px)"
301
  msgstr "Aukštis (pikseliais)"
302
 
303
- #: gallery-plugin.php:885
304
  msgid "Display a full size image in the lightbox"
305
  msgstr ""
306
 
307
- #: gallery-plugin.php:889
308
  msgid "Crop position"
309
  msgstr ""
310
 
311
- #: gallery-plugin.php:891
312
  msgid "Horizontal"
313
  msgstr ""
314
 
315
- #: gallery-plugin.php:893
316
  msgid "left"
317
  msgstr ""
318
 
319
- #: gallery-plugin.php:894
320
- #: gallery-plugin.php:901
321
  msgid "center"
322
  msgstr ""
323
 
324
- #: gallery-plugin.php:895
325
  msgid "right"
326
  msgstr ""
327
 
328
- #: gallery-plugin.php:898
329
  msgid "Vertical"
330
  msgstr ""
331
 
332
- #: gallery-plugin.php:900
333
  msgid "top"
334
  msgstr ""
335
 
336
- #: gallery-plugin.php:902
337
  msgid "bottom"
338
  msgstr ""
339
 
340
- #: gallery-plugin.php:907
341
  msgid "Lightbox background"
342
  msgstr ""
343
 
344
- #: gallery-plugin.php:909
345
  msgid "Default"
346
  msgstr ""
347
 
348
- #: gallery-plugin.php:910
349
  msgid "Background transparency (from 0 to 1)"
350
  msgstr ""
351
 
352
- #: gallery-plugin.php:912
353
  msgid "Select a background color"
354
  msgstr ""
355
 
356
- #: gallery-plugin.php:914
357
  msgid "Background color"
358
  msgstr ""
359
 
360
- #: gallery-plugin.php:921
 
361
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
362
  msgstr ""
363
 
364
- #: gallery-plugin.php:928
365
  msgid "Images with border"
366
  msgstr ""
367
 
368
- #: gallery-plugin.php:931
369
  msgid "Border width in px, just numbers"
370
  msgstr ""
371
 
372
- #: gallery-plugin.php:933
373
- #: gallery-plugin.php:935
374
  msgid "Select a border color"
375
  msgstr ""
376
 
377
- #: gallery-plugin.php:941
378
  #, fuzzy
379
  msgid "Number of images in the row"
380
  msgstr "Paveikslėlių eilėje kiekis"
381
 
382
- #: gallery-plugin.php:947
383
  msgid "Start slideshow"
384
  msgstr "Pradėti demonstraciją"
385
 
386
- #: gallery-plugin.php:953
387
  msgid "Slideshow interval"
388
  msgstr "Demonstracijos trukmė"
389
 
390
- #: gallery-plugin.php:961
391
  #, fuzzy
392
  msgid "Attachment ID"
393
  msgstr "prisegtuko ID"
394
 
395
- #: gallery-plugin.php:962
396
  #, fuzzy
397
  msgid "Image Name"
398
  msgstr "Paveikslėlis"
399
 
400
- #: gallery-plugin.php:964
401
  #, fuzzy
402
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
403
  msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
404
 
405
- #: gallery-plugin.php:965
406
  #, fuzzy
407
  msgid "Random"
408
  msgstr "atsitiktine tvarka"
409
 
410
- #: gallery-plugin.php:969
411
  #, fuzzy
412
  msgid "Sort images"
413
  msgstr "Paveikslėlių eilėje kiekis"
414
 
415
- #: gallery-plugin.php:971
416
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
417
  msgstr "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, c)"
418
 
419
- #: gallery-plugin.php:972
420
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
421
  msgstr "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, a)"
422
 
423
- #: gallery-plugin.php:976
424
  msgid "Display text above the image"
425
  msgstr ""
426
 
427
- #: gallery-plugin.php:978
428
  msgid "If you want to display text just in a lightbox"
429
  msgstr ""
430
 
431
- #: gallery-plugin.php:982
432
  #, fuzzy
433
  msgid "Display the Back link"
434
  msgstr "Rodyti Sugrįžimo nuorodą"
435
 
436
- #: gallery-plugin.php:988
437
  #, fuzzy
438
  msgid "Display the Back link in the shortcode"
439
  msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
440
 
441
- #: gallery-plugin.php:994
442
  msgid "The Back link text"
443
  msgstr ""
444
 
445
- #: gallery-plugin.php:1000
446
  msgid "The Back link URL"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1002
450
  msgid "Gallery page (Page with Gallery Template)"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1004
454
  msgid "(Full URL to custom page)"
455
  msgstr ""
456
 
457
- #: gallery-plugin.php:1008
458
  msgid "The Read More link text"
459
  msgstr ""
460
 
461
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  msgid "Save Changes"
463
  msgstr "Išsaugoti pakeitimus"
464
 
465
- #: gallery-plugin.php:1029
466
  msgid "FAQ"
467
  msgstr "D. U. K."
468
 
469
- #: gallery-plugin.php:1030
470
  msgid "Support"
471
  msgstr "Palaikymas"
472
 
473
- #: gallery-plugin.php:1237
474
  #: template/gallery-single-template.php:76
475
  #, fuzzy
476
  msgid "Sorry, nothing found."
477
  msgstr "Deja, nieko nerasta."
478
 
479
- #: gallery-plugin.php:1259
480
  #: template/gallery-single-template.php:101
481
  msgid "Download high resolution image"
482
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Jūsų temos aplanke nėra failų \"gallery-template.php\" bei \"gallery-single-template.php\". Jei norite, kad galerijos įskiepis tinkamai veiktų, prašome nukopijuoti juos iš `/wp-content/plugins/gallery-plugin/template/` aplanko į savo temos aplanką."
23
 
27
  msgstr "Galerijos"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galerija"
33
 
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
+ #: gallery-plugin.php:960
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Paveikslėlių eilėje kiekis"
167
  msgstr "Vieša"
168
 
169
  #: gallery-plugin.php:483
170
+ #: gallery-plugin.php:964
171
  msgid "Date"
172
  msgstr "Data"
173
 
174
+ #: gallery-plugin.php:653
175
  #, fuzzy
176
  msgid "Pro plugins"
177
  msgstr "Rekomenduojami įskiepiai"
178
 
179
+ #: gallery-plugin.php:656
180
+ #: gallery-plugin.php:682
181
  msgid "Activated plugins"
182
  msgstr "Įjungti įskiepiai"
183
 
184
+ #: gallery-plugin.php:658
185
+ #: gallery-plugin.php:666
186
+ #: gallery-plugin.php:674
187
+ #: gallery-plugin.php:684
188
+ #: gallery-plugin.php:692
189
+ #: gallery-plugin.php:700
190
  msgid "Read more"
191
  msgstr "Skaityti daugiau"
192
 
193
+ #: gallery-plugin.php:658
194
+ #: gallery-plugin.php:684
195
+ #: gallery-plugin.php:1047
196
+ #: gallery-plugin.php:1062
197
  msgid "Settings"
198
  msgstr "Nustatymai"
199
 
200
+ #: gallery-plugin.php:664
201
+ #: gallery-plugin.php:690
202
  msgid "Installed plugins"
203
  msgstr "Įdiegti įskiepiai"
204
 
205
+ #: gallery-plugin.php:672
206
+ #: gallery-plugin.php:698
207
  msgid "Recommended plugins"
208
  msgstr "Rekomenduojami įskiepiai"
209
 
210
+ #: gallery-plugin.php:674
211
  msgid "Purchase"
212
  msgstr ""
213
 
214
+ #: gallery-plugin.php:679
215
  #, fuzzy
216
  msgid "Free plugins"
217
  msgstr "Rekomenduojami įskiepiai"
218
 
219
+ #: gallery-plugin.php:700
220
  msgid "Download"
221
  msgstr "Atsisiųsti"
222
 
223
+ #: gallery-plugin.php:700
224
  #, php-format
225
  msgid "Install %s"
226
  msgstr "Įdiegti %s"
227
 
228
+ #: gallery-plugin.php:700
229
  msgid "Install now from wordpress.org"
230
  msgstr "Įdiegti tiesiai iš wordpress.org"
231
 
232
+ #: gallery-plugin.php:705
233
  #, fuzzy
234
  msgid "If you have any questions, please contact us via"
235
  msgstr "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, arba užpildykite susisiekimo formą mūsų tinklalapyje"
236
 
237
+ #: gallery-plugin.php:740
238
  #, fuzzy
239
  msgid "See images &raquo;"
240
  msgstr "Peržiūrėti nuotrauką &raquo;"
241
 
242
+ #: gallery-plugin.php:839
243
  #, fuzzy
244
  msgid "Settings are saved"
245
  msgstr "Pasirinktys išsaugotos."
246
 
247
+ #: gallery-plugin.php:853
248
  #, fuzzy
249
  msgid "Gallery Settings"
250
  msgstr "Galerijų pasirinktys"
251
 
252
+ #: gallery-plugin.php:856
253
  #, fuzzy
254
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
255
  msgstr "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
256
 
257
+ #: gallery-plugin.php:860
258
  #, fuzzy
259
  msgid "Image size for the album cover"
260
  msgstr "Размер для "
261
 
262
+ #: gallery-plugin.php:862
263
+ #: gallery-plugin.php:870
264
+ #: gallery-plugin.php:883
265
  #, fuzzy
266
  msgid "Image size"
267
  msgstr "Paveikslėlio matmenų klasės vardas"
268
 
269
+ #: gallery-plugin.php:863
270
+ #: gallery-plugin.php:871
271
  msgid "Width (in px)"
272
  msgstr "Plotis (pikseliais)"
273
 
274
+ #: gallery-plugin.php:864
275
+ #: gallery-plugin.php:872
276
  msgid "Height (in px)"
277
  msgstr "Aukštis (pikseliais)"
278
 
279
+ #: gallery-plugin.php:868
280
  #, fuzzy
281
  msgid "Gallery image size"
282
  msgstr "Galerijos"
283
 
284
+ #: gallery-plugin.php:876
285
  #, fuzzy
286
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
287
  msgstr "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite naują paveikslėlį."
288
 
289
+ #: gallery-plugin.php:881
290
  msgid "Gallery image size in the lightbox"
291
  msgstr ""
292
 
293
+ #: gallery-plugin.php:884
294
  #, fuzzy
295
  msgid "Max width (in px)"
296
  msgstr "Plotis (pikseliais)"
297
 
298
+ #: gallery-plugin.php:885
299
  #, fuzzy
300
  msgid "Max height (in px)"
301
  msgstr "Aukštis (pikseliais)"
302
 
303
+ #: gallery-plugin.php:886
304
  msgid "Display a full size image in the lightbox"
305
  msgstr ""
306
 
307
+ #: gallery-plugin.php:890
308
  msgid "Crop position"
309
  msgstr ""
310
 
311
+ #: gallery-plugin.php:892
312
  msgid "Horizontal"
313
  msgstr ""
314
 
315
+ #: gallery-plugin.php:894
316
  msgid "left"
317
  msgstr ""
318
 
319
+ #: gallery-plugin.php:895
320
+ #: gallery-plugin.php:902
321
  msgid "center"
322
  msgstr ""
323
 
324
+ #: gallery-plugin.php:896
325
  msgid "right"
326
  msgstr ""
327
 
328
+ #: gallery-plugin.php:899
329
  msgid "Vertical"
330
  msgstr ""
331
 
332
+ #: gallery-plugin.php:901
333
  msgid "top"
334
  msgstr ""
335
 
336
+ #: gallery-plugin.php:903
337
  msgid "bottom"
338
  msgstr ""
339
 
340
+ #: gallery-plugin.php:908
341
  msgid "Lightbox background"
342
  msgstr ""
343
 
344
+ #: gallery-plugin.php:910
345
  msgid "Default"
346
  msgstr ""
347
 
348
+ #: gallery-plugin.php:911
349
  msgid "Background transparency (from 0 to 1)"
350
  msgstr ""
351
 
352
+ #: gallery-plugin.php:913
353
  msgid "Select a background color"
354
  msgstr ""
355
 
356
+ #: gallery-plugin.php:915
357
  msgid "Background color"
358
  msgstr ""
359
 
360
+ #: gallery-plugin.php:922
361
+ #: gallery-plugin.php:1027
362
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
363
  msgstr ""
364
 
365
+ #: gallery-plugin.php:929
366
  msgid "Images with border"
367
  msgstr ""
368
 
369
+ #: gallery-plugin.php:932
370
  msgid "Border width in px, just numbers"
371
  msgstr ""
372
 
373
+ #: gallery-plugin.php:934
374
+ #: gallery-plugin.php:936
375
  msgid "Select a border color"
376
  msgstr ""
377
 
378
+ #: gallery-plugin.php:942
379
  #, fuzzy
380
  msgid "Number of images in the row"
381
  msgstr "Paveikslėlių eilėje kiekis"
382
 
383
+ #: gallery-plugin.php:948
384
  msgid "Start slideshow"
385
  msgstr "Pradėti demonstraciją"
386
 
387
+ #: gallery-plugin.php:954
388
  msgid "Slideshow interval"
389
  msgstr "Demonstracijos trukmė"
390
 
391
+ #: gallery-plugin.php:962
392
  #, fuzzy
393
  msgid "Attachment ID"
394
  msgstr "prisegtuko ID"
395
 
396
+ #: gallery-plugin.php:963
397
  #, fuzzy
398
  msgid "Image Name"
399
  msgstr "Paveikslėlis"
400
 
401
+ #: gallery-plugin.php:965
402
  #, fuzzy
403
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
404
  msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
405
 
406
+ #: gallery-plugin.php:966
407
  #, fuzzy
408
  msgid "Random"
409
  msgstr "atsitiktine tvarka"
410
 
411
+ #: gallery-plugin.php:970
412
  #, fuzzy
413
  msgid "Sort images"
414
  msgstr "Paveikslėlių eilėje kiekis"
415
 
416
+ #: gallery-plugin.php:972
417
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
418
  msgstr "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, c)"
419
 
420
+ #: gallery-plugin.php:973
421
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
422
  msgstr "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, a)"
423
 
424
+ #: gallery-plugin.php:977
425
  msgid "Display text above the image"
426
  msgstr ""
427
 
428
+ #: gallery-plugin.php:979
429
  msgid "If you want to display text just in a lightbox"
430
  msgstr ""
431
 
432
+ #: gallery-plugin.php:983
433
  #, fuzzy
434
  msgid "Display the Back link"
435
  msgstr "Rodyti Sugrįžimo nuorodą"
436
 
437
+ #: gallery-plugin.php:989
438
  #, fuzzy
439
  msgid "Display the Back link in the shortcode"
440
  msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
441
 
442
+ #: gallery-plugin.php:995
443
  msgid "The Back link text"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:1001
447
  msgid "The Back link URL"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1003
451
  msgid "Gallery page (Page with Gallery Template)"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1005
455
  msgid "(Full URL to custom page)"
456
  msgstr ""
457
 
458
+ #: gallery-plugin.php:1009
459
  msgid "The Read More link text"
460
  msgstr ""
461
 
462
+ #: gallery-plugin.php:1017
463
+ msgid "Display Like buttons in the lightbox"
464
+ msgstr ""
465
+
466
+ #: gallery-plugin.php:1019
467
+ msgid "FaceBook"
468
+ msgstr ""
469
+
470
+ #: gallery-plugin.php:1020
471
+ #, fuzzy
472
+ msgid "Twitter"
473
+ msgstr "Pavadinimas"
474
+
475
+ #: gallery-plugin.php:1021
476
+ msgid "Pinterest"
477
+ msgstr ""
478
+
479
+ #: gallery-plugin.php:1022
480
+ msgid "Google +1"
481
+ msgstr ""
482
+
483
+ #: gallery-plugin.php:1035
484
  msgid "Save Changes"
485
  msgstr "Išsaugoti pakeitimus"
486
 
487
+ #: gallery-plugin.php:1048
488
  msgid "FAQ"
489
  msgstr "D. U. K."
490
 
491
+ #: gallery-plugin.php:1049
492
  msgid "Support"
493
  msgstr "Palaikymas"
494
 
495
+ #: gallery-plugin.php:1256
496
  #: template/gallery-single-template.php:76
497
  #, fuzzy
498
  msgid "Sorry, nothing found."
499
  msgstr "Deja, nieko nerasta."
500
 
501
+ #: gallery-plugin.php:1278
502
  #: template/gallery-single-template.php:101
503
  msgid "Download high resolution image"
504
  msgstr ""
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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Fotoalbum's"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Fotoalbum"
33
 
@@ -97,7 +97,7 @@ msgid "Please make a choice"
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
- #: gallery-plugin.php:959
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Aantal afbeeldingen op een rij"
@@ -166,310 +166,332 @@ msgid "Publishing"
166
  msgstr "Gepubliceerd"
167
 
168
  #: gallery-plugin.php:483
169
- #: gallery-plugin.php:963
170
  msgid "Date"
171
  msgstr "Datum"
172
 
173
- #: gallery-plugin.php:652
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Aanbevolen plugins"
177
 
178
- #: gallery-plugin.php:655
179
- #: gallery-plugin.php:681
180
  msgid "Activated plugins"
181
  msgstr "Geactiveerde plugins"
182
 
183
- #: gallery-plugin.php:657
184
- #: gallery-plugin.php:665
185
- #: gallery-plugin.php:673
186
- #: gallery-plugin.php:683
187
- #: gallery-plugin.php:691
188
- #: gallery-plugin.php:699
189
  msgid "Read more"
190
  msgstr "Lees verder"
191
 
192
- #: gallery-plugin.php:657
193
- #: gallery-plugin.php:683
194
- #: gallery-plugin.php:1028
195
- #: gallery-plugin.php:1043
196
  msgid "Settings"
197
  msgstr "Instellingen"
198
 
199
- #: gallery-plugin.php:663
200
- #: gallery-plugin.php:689
201
  msgid "Installed plugins"
202
  msgstr "Geinstalleerde plugins"
203
 
204
- #: gallery-plugin.php:671
205
- #: gallery-plugin.php:697
206
  msgid "Recommended plugins"
207
  msgstr "Aanbevolen plugins"
208
 
209
- #: gallery-plugin.php:673
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:678
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "Aanbevolen plugins"
217
 
218
- #: gallery-plugin.php:699
219
  msgid "Download"
220
  msgstr "Download"
221
 
222
- #: gallery-plugin.php:699
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Install %s"
226
 
227
- #: gallery-plugin.php:699
228
  msgid "Install now from wordpress.org"
229
  msgstr "Installeer nu vanaf wordpress.org"
230
 
231
- #: gallery-plugin.php:704
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
235
 
236
- #: gallery-plugin.php:739
237
  #, fuzzy
238
  msgid "See images &raquo;"
239
  msgstr "Bekijk foto &raquo;"
240
 
241
- #: gallery-plugin.php:838
242
  #, fuzzy
243
  msgid "Settings are saved"
244
  msgstr "Opties opgeslagen"
245
 
246
- #: gallery-plugin.php:852
247
  #, fuzzy
248
  msgid "Gallery Settings"
249
  msgstr "Fotoalbum opties"
250
 
251
- #: gallery-plugin.php:855
252
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
253
  msgstr ""
254
 
255
- #: gallery-plugin.php:859
256
  #, fuzzy
257
  msgid "Image size for the album cover"
258
  msgstr "De afmetingen voor de cover van het album"
259
 
260
- #: gallery-plugin.php:861
261
- #: gallery-plugin.php:869
262
- #: gallery-plugin.php:882
263
  #, fuzzy
264
  msgid "Image size"
265
  msgstr "Afbeelding grootte"
266
 
267
- #: gallery-plugin.php:862
268
- #: gallery-plugin.php:870
269
  msgid "Width (in px)"
270
  msgstr "Breedte (in px)"
271
 
272
- #: gallery-plugin.php:863
273
- #: gallery-plugin.php:871
274
  msgid "Height (in px)"
275
  msgstr "Hoogte (in px)"
276
 
277
- #: gallery-plugin.php:867
278
  #, fuzzy
279
  msgid "Gallery image size"
280
  msgstr "Fotoalbum's"
281
 
282
- #: gallery-plugin.php:875
283
  #, fuzzy
284
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
285
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
286
 
287
- #: gallery-plugin.php:880
288
  msgid "Gallery image size in the lightbox"
289
  msgstr ""
290
 
291
- #: gallery-plugin.php:883
292
  #, fuzzy
293
  msgid "Max width (in px)"
294
  msgstr "Breedte (in px)"
295
 
296
- #: gallery-plugin.php:884
297
  #, fuzzy
298
  msgid "Max height (in px)"
299
  msgstr "Hoogte (in px)"
300
 
301
- #: gallery-plugin.php:885
302
  msgid "Display a full size image in the lightbox"
303
  msgstr ""
304
 
305
- #: gallery-plugin.php:889
306
  msgid "Crop position"
307
  msgstr ""
308
 
309
- #: gallery-plugin.php:891
310
  msgid "Horizontal"
311
  msgstr ""
312
 
313
- #: gallery-plugin.php:893
314
  msgid "left"
315
  msgstr ""
316
 
317
- #: gallery-plugin.php:894
318
- #: gallery-plugin.php:901
319
  msgid "center"
320
  msgstr ""
321
 
322
- #: gallery-plugin.php:895
323
  msgid "right"
324
  msgstr ""
325
 
326
- #: gallery-plugin.php:898
327
  msgid "Vertical"
328
  msgstr ""
329
 
330
- #: gallery-plugin.php:900
331
  msgid "top"
332
  msgstr ""
333
 
334
- #: gallery-plugin.php:902
335
  msgid "bottom"
336
  msgstr ""
337
 
338
- #: gallery-plugin.php:907
339
  msgid "Lightbox background"
340
  msgstr ""
341
 
342
- #: gallery-plugin.php:909
343
  msgid "Default"
344
  msgstr ""
345
 
346
- #: gallery-plugin.php:910
347
  msgid "Background transparency (from 0 to 1)"
348
  msgstr ""
349
 
350
- #: gallery-plugin.php:912
351
  msgid "Select a background color"
352
  msgstr ""
353
 
354
- #: gallery-plugin.php:914
355
  msgid "Background color"
356
  msgstr ""
357
 
358
- #: gallery-plugin.php:921
 
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
- #: gallery-plugin.php:928
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
- #: gallery-plugin.php:931
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
- #: gallery-plugin.php:933
371
- #: gallery-plugin.php:935
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
- #: gallery-plugin.php:941
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "Aantal afbeeldingen op een rij"
379
 
380
- #: gallery-plugin.php:947
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
- #: gallery-plugin.php:953
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
- #: gallery-plugin.php:961
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
- #: gallery-plugin.php:962
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "Afbeelding grootte"
396
 
397
- #: gallery-plugin.php:964
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
- #: gallery-plugin.php:965
402
  msgid "Random"
403
  msgstr ""
404
 
405
- #: gallery-plugin.php:969
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "Aantal afbeeldingen op een rij"
409
 
410
- #: gallery-plugin.php:971
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
- #: gallery-plugin.php:972
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
- #: gallery-plugin.php:976
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
- #: gallery-plugin.php:978
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
- #: gallery-plugin.php:982
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
- #: gallery-plugin.php:988
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
- #: gallery-plugin.php:994
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
- #: gallery-plugin.php:1000
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
- #: gallery-plugin.php:1002
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
- #: gallery-plugin.php:1004
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
- #: gallery-plugin.php:1008
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  msgid "Save Changes"
456
  msgstr "Bewaar veranderingen"
457
 
458
- #: gallery-plugin.php:1029
459
  msgid "FAQ"
460
  msgstr "FAQ"
461
 
462
- #: gallery-plugin.php:1030
463
  msgid "Support"
464
  msgstr "Support"
465
 
466
- #: gallery-plugin.php:1237
467
  #: template/gallery-single-template.php:76
468
  #, fuzzy
469
  msgid "Sorry, nothing found."
470
  msgstr "Helaas - niets gevonden"
471
 
472
- #: gallery-plugin.php:1259
473
  #: template/gallery-single-template.php:101
474
  msgid "Download high resolution image"
475
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
 
27
  msgstr "Fotoalbum's"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Fotoalbum"
33
 
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
+ #: gallery-plugin.php:960
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Aantal afbeeldingen op een rij"
166
  msgstr "Gepubliceerd"
167
 
168
  #: gallery-plugin.php:483
169
+ #: gallery-plugin.php:964
170
  msgid "Date"
171
  msgstr "Datum"
172
 
173
+ #: gallery-plugin.php:653
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Aanbevolen plugins"
177
 
178
+ #: gallery-plugin.php:656
179
+ #: gallery-plugin.php:682
180
  msgid "Activated plugins"
181
  msgstr "Geactiveerde plugins"
182
 
183
+ #: gallery-plugin.php:658
184
+ #: gallery-plugin.php:666
185
+ #: gallery-plugin.php:674
186
+ #: gallery-plugin.php:684
187
+ #: gallery-plugin.php:692
188
+ #: gallery-plugin.php:700
189
  msgid "Read more"
190
  msgstr "Lees verder"
191
 
192
+ #: gallery-plugin.php:658
193
+ #: gallery-plugin.php:684
194
+ #: gallery-plugin.php:1047
195
+ #: gallery-plugin.php:1062
196
  msgid "Settings"
197
  msgstr "Instellingen"
198
 
199
+ #: gallery-plugin.php:664
200
+ #: gallery-plugin.php:690
201
  msgid "Installed plugins"
202
  msgstr "Geinstalleerde plugins"
203
 
204
+ #: gallery-plugin.php:672
205
+ #: gallery-plugin.php:698
206
  msgid "Recommended plugins"
207
  msgstr "Aanbevolen plugins"
208
 
209
+ #: gallery-plugin.php:674
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:679
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "Aanbevolen plugins"
217
 
218
+ #: gallery-plugin.php:700
219
  msgid "Download"
220
  msgstr "Download"
221
 
222
+ #: gallery-plugin.php:700
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Install %s"
226
 
227
+ #: gallery-plugin.php:700
228
  msgid "Install now from wordpress.org"
229
  msgstr "Installeer nu vanaf wordpress.org"
230
 
231
+ #: gallery-plugin.php:705
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
235
 
236
+ #: gallery-plugin.php:740
237
  #, fuzzy
238
  msgid "See images &raquo;"
239
  msgstr "Bekijk foto &raquo;"
240
 
241
+ #: gallery-plugin.php:839
242
  #, fuzzy
243
  msgid "Settings are saved"
244
  msgstr "Opties opgeslagen"
245
 
246
+ #: gallery-plugin.php:853
247
  #, fuzzy
248
  msgid "Gallery Settings"
249
  msgstr "Fotoalbum opties"
250
 
251
+ #: gallery-plugin.php:856
252
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:860
256
  #, fuzzy
257
  msgid "Image size for the album cover"
258
  msgstr "De afmetingen voor de cover van het album"
259
 
260
+ #: gallery-plugin.php:862
261
+ #: gallery-plugin.php:870
262
+ #: gallery-plugin.php:883
263
  #, fuzzy
264
  msgid "Image size"
265
  msgstr "Afbeelding grootte"
266
 
267
+ #: gallery-plugin.php:863
268
+ #: gallery-plugin.php:871
269
  msgid "Width (in px)"
270
  msgstr "Breedte (in px)"
271
 
272
+ #: gallery-plugin.php:864
273
+ #: gallery-plugin.php:872
274
  msgid "Height (in px)"
275
  msgstr "Hoogte (in px)"
276
 
277
+ #: gallery-plugin.php:868
278
  #, fuzzy
279
  msgid "Gallery image size"
280
  msgstr "Fotoalbum's"
281
 
282
+ #: gallery-plugin.php:876
283
  #, fuzzy
284
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
285
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
286
 
287
+ #: gallery-plugin.php:881
288
  msgid "Gallery image size in the lightbox"
289
  msgstr ""
290
 
291
+ #: gallery-plugin.php:884
292
  #, fuzzy
293
  msgid "Max width (in px)"
294
  msgstr "Breedte (in px)"
295
 
296
+ #: gallery-plugin.php:885
297
  #, fuzzy
298
  msgid "Max height (in px)"
299
  msgstr "Hoogte (in px)"
300
 
301
+ #: gallery-plugin.php:886
302
  msgid "Display a full size image in the lightbox"
303
  msgstr ""
304
 
305
+ #: gallery-plugin.php:890
306
  msgid "Crop position"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:892
310
  msgid "Horizontal"
311
  msgstr ""
312
 
313
+ #: gallery-plugin.php:894
314
  msgid "left"
315
  msgstr ""
316
 
317
+ #: gallery-plugin.php:895
318
+ #: gallery-plugin.php:902
319
  msgid "center"
320
  msgstr ""
321
 
322
+ #: gallery-plugin.php:896
323
  msgid "right"
324
  msgstr ""
325
 
326
+ #: gallery-plugin.php:899
327
  msgid "Vertical"
328
  msgstr ""
329
 
330
+ #: gallery-plugin.php:901
331
  msgid "top"
332
  msgstr ""
333
 
334
+ #: gallery-plugin.php:903
335
  msgid "bottom"
336
  msgstr ""
337
 
338
+ #: gallery-plugin.php:908
339
  msgid "Lightbox background"
340
  msgstr ""
341
 
342
+ #: gallery-plugin.php:910
343
  msgid "Default"
344
  msgstr ""
345
 
346
+ #: gallery-plugin.php:911
347
  msgid "Background transparency (from 0 to 1)"
348
  msgstr ""
349
 
350
+ #: gallery-plugin.php:913
351
  msgid "Select a background color"
352
  msgstr ""
353
 
354
+ #: gallery-plugin.php:915
355
  msgid "Background color"
356
  msgstr ""
357
 
358
+ #: gallery-plugin.php:922
359
+ #: gallery-plugin.php:1027
360
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
361
  msgstr ""
362
 
363
+ #: gallery-plugin.php:929
364
  msgid "Images with border"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:932
368
  msgid "Border width in px, just numbers"
369
  msgstr ""
370
 
371
+ #: gallery-plugin.php:934
372
+ #: gallery-plugin.php:936
373
  msgid "Select a border color"
374
  msgstr ""
375
 
376
+ #: gallery-plugin.php:942
377
  #, fuzzy
378
  msgid "Number of images in the row"
379
  msgstr "Aantal afbeeldingen op een rij"
380
 
381
+ #: gallery-plugin.php:948
382
  msgid "Start slideshow"
383
  msgstr ""
384
 
385
+ #: gallery-plugin.php:954
386
  msgid "Slideshow interval"
387
  msgstr ""
388
 
389
+ #: gallery-plugin.php:962
390
  msgid "Attachment ID"
391
  msgstr ""
392
 
393
+ #: gallery-plugin.php:963
394
  #, fuzzy
395
  msgid "Image Name"
396
  msgstr "Afbeelding grootte"
397
 
398
+ #: gallery-plugin.php:965
399
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
400
  msgstr ""
401
 
402
+ #: gallery-plugin.php:966
403
  msgid "Random"
404
  msgstr ""
405
 
406
+ #: gallery-plugin.php:970
407
  #, fuzzy
408
  msgid "Sort images"
409
  msgstr "Aantal afbeeldingen op een rij"
410
 
411
+ #: gallery-plugin.php:972
412
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
413
  msgstr ""
414
 
415
+ #: gallery-plugin.php:973
416
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
417
  msgstr ""
418
 
419
+ #: gallery-plugin.php:977
420
  msgid "Display text above the image"
421
  msgstr ""
422
 
423
+ #: gallery-plugin.php:979
424
  msgid "If you want to display text just in a lightbox"
425
  msgstr ""
426
 
427
+ #: gallery-plugin.php:983
428
  msgid "Display the Back link"
429
  msgstr ""
430
 
431
+ #: gallery-plugin.php:989
432
  msgid "Display the Back link in the shortcode"
433
  msgstr ""
434
 
435
+ #: gallery-plugin.php:995
436
  msgid "The Back link text"
437
  msgstr ""
438
 
439
+ #: gallery-plugin.php:1001
440
  msgid "The Back link URL"
441
  msgstr ""
442
 
443
+ #: gallery-plugin.php:1003
444
  msgid "Gallery page (Page with Gallery Template)"
445
  msgstr ""
446
 
447
+ #: gallery-plugin.php:1005
448
  msgid "(Full URL to custom page)"
449
  msgstr ""
450
 
451
+ #: gallery-plugin.php:1009
452
  msgid "The Read More link text"
453
  msgstr ""
454
 
455
+ #: gallery-plugin.php:1017
456
+ msgid "Display Like buttons in the lightbox"
457
+ msgstr ""
458
+
459
+ #: gallery-plugin.php:1019
460
+ msgid "FaceBook"
461
+ msgstr ""
462
+
463
+ #: gallery-plugin.php:1020
464
+ #, fuzzy
465
+ msgid "Twitter"
466
+ msgstr "Titel"
467
+
468
+ #: gallery-plugin.php:1021
469
+ msgid "Pinterest"
470
+ msgstr ""
471
+
472
+ #: gallery-plugin.php:1022
473
+ msgid "Google +1"
474
+ msgstr ""
475
+
476
+ #: gallery-plugin.php:1035
477
  msgid "Save Changes"
478
  msgstr "Bewaar veranderingen"
479
 
480
+ #: gallery-plugin.php:1048
481
  msgid "FAQ"
482
  msgstr "FAQ"
483
 
484
+ #: gallery-plugin.php:1049
485
  msgid "Support"
486
  msgstr "Support"
487
 
488
+ #: gallery-plugin.php:1256
489
  #: template/gallery-single-template.php:76
490
  #, fuzzy
491
  msgid "Sorry, nothing found."
492
  msgstr "Helaas - niets gevonden"
493
 
494
+ #: gallery-plugin.php:1278
495
  #: template/gallery-single-template.php:101
496
  msgid "Download high resolution image"
497
  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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerie zdjęć"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galeria zdjęć"
33
 
@@ -97,7 +97,7 @@ msgid "Please make a choice"
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
- #: gallery-plugin.php:959
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Ilość obrazków w rzędzie"
@@ -166,310 +166,332 @@ msgid "Publishing"
166
  msgstr "Publiczne"
167
 
168
  #: gallery-plugin.php:483
169
- #: gallery-plugin.php:963
170
  msgid "Date"
171
  msgstr "Data"
172
 
173
- #: gallery-plugin.php:652
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Rekomendowane pluginy"
177
 
178
- #: gallery-plugin.php:655
179
- #: gallery-plugin.php:681
180
  msgid "Activated plugins"
181
  msgstr "Aktywny plugin"
182
 
183
- #: gallery-plugin.php:657
184
- #: gallery-plugin.php:665
185
- #: gallery-plugin.php:673
186
- #: gallery-plugin.php:683
187
- #: gallery-plugin.php:691
188
- #: gallery-plugin.php:699
189
  msgid "Read more"
190
  msgstr "Czytaj dalej"
191
 
192
- #: gallery-plugin.php:657
193
- #: gallery-plugin.php:683
194
- #: gallery-plugin.php:1028
195
- #: gallery-plugin.php:1043
196
  msgid "Settings"
197
  msgstr "Ustawienia"
198
 
199
- #: gallery-plugin.php:663
200
- #: gallery-plugin.php:689
201
  msgid "Installed plugins"
202
  msgstr "Zainstalowane pluginy"
203
 
204
- #: gallery-plugin.php:671
205
- #: gallery-plugin.php:697
206
  msgid "Recommended plugins"
207
  msgstr "Rekomendowane pluginy"
208
 
209
- #: gallery-plugin.php:673
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:678
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "Rekomendowane pluginy"
217
 
218
- #: gallery-plugin.php:699
219
  msgid "Download"
220
  msgstr "Pobierz"
221
 
222
- #: gallery-plugin.php:699
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Zainstaluj %s"
226
 
227
- #: gallery-plugin.php:699
228
  msgid "Install now from wordpress.org"
229
  msgstr "Zainstaluj teraz z wordpress.org"
230
 
231
- #: gallery-plugin.php:704
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
235
 
236
- #: gallery-plugin.php:739
237
  #, fuzzy
238
  msgid "See images &raquo;"
239
  msgstr "Zobacz zdjęcia &raquo;"
240
 
241
- #: gallery-plugin.php:838
242
  #, fuzzy
243
  msgid "Settings are saved"
244
  msgstr "Opcje zostały zapisane."
245
 
246
- #: gallery-plugin.php:852
247
  #, fuzzy
248
  msgid "Gallery Settings"
249
  msgstr "Opcje galerii."
250
 
251
- #: gallery-plugin.php:855
252
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
253
  msgstr ""
254
 
255
- #: gallery-plugin.php:859
256
  #, fuzzy
257
  msgid "Image size for the album cover"
258
  msgstr "Размер для "
259
 
260
- #: gallery-plugin.php:861
261
- #: gallery-plugin.php:869
262
- #: gallery-plugin.php:882
263
  #, fuzzy
264
  msgid "Image size"
265
  msgstr "Nazwa rozmiaru obrazka"
266
 
267
- #: gallery-plugin.php:862
268
- #: gallery-plugin.php:870
269
  msgid "Width (in px)"
270
  msgstr "Szerokość (w px)"
271
 
272
- #: gallery-plugin.php:863
273
- #: gallery-plugin.php:871
274
  msgid "Height (in px)"
275
  msgstr "Wysokość (w px)"
276
 
277
- #: gallery-plugin.php:867
278
  #, fuzzy
279
  msgid "Gallery image size"
280
  msgstr "Galerie zdjęć"
281
 
282
- #: gallery-plugin.php:875
283
  #, fuzzy
284
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
285
  msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
286
 
287
- #: gallery-plugin.php:880
288
  msgid "Gallery image size in the lightbox"
289
  msgstr ""
290
 
291
- #: gallery-plugin.php:883
292
  #, fuzzy
293
  msgid "Max width (in px)"
294
  msgstr "Szerokość (w px)"
295
 
296
- #: gallery-plugin.php:884
297
  #, fuzzy
298
  msgid "Max height (in px)"
299
  msgstr "Wysokość (w px)"
300
 
301
- #: gallery-plugin.php:885
302
  msgid "Display a full size image in the lightbox"
303
  msgstr ""
304
 
305
- #: gallery-plugin.php:889
306
  msgid "Crop position"
307
  msgstr ""
308
 
309
- #: gallery-plugin.php:891
310
  msgid "Horizontal"
311
  msgstr ""
312
 
313
- #: gallery-plugin.php:893
314
  msgid "left"
315
  msgstr ""
316
 
317
- #: gallery-plugin.php:894
318
- #: gallery-plugin.php:901
319
  msgid "center"
320
  msgstr ""
321
 
322
- #: gallery-plugin.php:895
323
  msgid "right"
324
  msgstr ""
325
 
326
- #: gallery-plugin.php:898
327
  msgid "Vertical"
328
  msgstr ""
329
 
330
- #: gallery-plugin.php:900
331
  msgid "top"
332
  msgstr ""
333
 
334
- #: gallery-plugin.php:902
335
  msgid "bottom"
336
  msgstr ""
337
 
338
- #: gallery-plugin.php:907
339
  msgid "Lightbox background"
340
  msgstr ""
341
 
342
- #: gallery-plugin.php:909
343
  msgid "Default"
344
  msgstr ""
345
 
346
- #: gallery-plugin.php:910
347
  msgid "Background transparency (from 0 to 1)"
348
  msgstr ""
349
 
350
- #: gallery-plugin.php:912
351
  msgid "Select a background color"
352
  msgstr ""
353
 
354
- #: gallery-plugin.php:914
355
  msgid "Background color"
356
  msgstr ""
357
 
358
- #: gallery-plugin.php:921
 
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
- #: gallery-plugin.php:928
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
- #: gallery-plugin.php:931
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
- #: gallery-plugin.php:933
371
- #: gallery-plugin.php:935
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
- #: gallery-plugin.php:941
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "Ilość obrazków w rzędzie"
379
 
380
- #: gallery-plugin.php:947
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
- #: gallery-plugin.php:953
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
- #: gallery-plugin.php:961
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
- #: gallery-plugin.php:962
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "Nazwa rozmiaru obrazka"
396
 
397
- #: gallery-plugin.php:964
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
- #: gallery-plugin.php:965
402
  msgid "Random"
403
  msgstr ""
404
 
405
- #: gallery-plugin.php:969
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "Ilość obrazków w rzędzie"
409
 
410
- #: gallery-plugin.php:971
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
- #: gallery-plugin.php:972
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
- #: gallery-plugin.php:976
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
- #: gallery-plugin.php:978
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
- #: gallery-plugin.php:982
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
- #: gallery-plugin.php:988
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
- #: gallery-plugin.php:994
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
- #: gallery-plugin.php:1000
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
- #: gallery-plugin.php:1002
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
- #: gallery-plugin.php:1004
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
- #: gallery-plugin.php:1008
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  msgid "Save Changes"
456
  msgstr "Zapisz zmiany"
457
 
458
- #: gallery-plugin.php:1029
459
  msgid "FAQ"
460
  msgstr "FAQ "
461
 
462
- #: gallery-plugin.php:1030
463
  msgid "Support"
464
  msgstr "Wsparcie"
465
 
466
- #: gallery-plugin.php:1237
467
  #: template/gallery-single-template.php:76
468
  #, fuzzy
469
  msgid "Sorry, nothing found."
470
  msgstr "Przykro nam - nic nie znaleziono."
471
 
472
- #: gallery-plugin.php:1259
473
  #: template/gallery-single-template.php:101
474
  msgid "Download high resolution image"
475
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galerie zdjęć"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galeria zdjęć"
33
 
97
  msgstr ""
98
 
99
  #: gallery-plugin.php:228
100
+ #: gallery-plugin.php:960
101
  #, fuzzy
102
  msgid "Sort images by"
103
  msgstr "Ilość obrazków w rzędzie"
166
  msgstr "Publiczne"
167
 
168
  #: gallery-plugin.php:483
169
+ #: gallery-plugin.php:964
170
  msgid "Date"
171
  msgstr "Data"
172
 
173
+ #: gallery-plugin.php:653
174
  #, fuzzy
175
  msgid "Pro plugins"
176
  msgstr "Rekomendowane pluginy"
177
 
178
+ #: gallery-plugin.php:656
179
+ #: gallery-plugin.php:682
180
  msgid "Activated plugins"
181
  msgstr "Aktywny plugin"
182
 
183
+ #: gallery-plugin.php:658
184
+ #: gallery-plugin.php:666
185
+ #: gallery-plugin.php:674
186
+ #: gallery-plugin.php:684
187
+ #: gallery-plugin.php:692
188
+ #: gallery-plugin.php:700
189
  msgid "Read more"
190
  msgstr "Czytaj dalej"
191
 
192
+ #: gallery-plugin.php:658
193
+ #: gallery-plugin.php:684
194
+ #: gallery-plugin.php:1047
195
+ #: gallery-plugin.php:1062
196
  msgid "Settings"
197
  msgstr "Ustawienia"
198
 
199
+ #: gallery-plugin.php:664
200
+ #: gallery-plugin.php:690
201
  msgid "Installed plugins"
202
  msgstr "Zainstalowane pluginy"
203
 
204
+ #: gallery-plugin.php:672
205
+ #: gallery-plugin.php:698
206
  msgid "Recommended plugins"
207
  msgstr "Rekomendowane pluginy"
208
 
209
+ #: gallery-plugin.php:674
210
  msgid "Purchase"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:679
214
  #, fuzzy
215
  msgid "Free plugins"
216
  msgstr "Rekomendowane pluginy"
217
 
218
+ #: gallery-plugin.php:700
219
  msgid "Download"
220
  msgstr "Pobierz"
221
 
222
+ #: gallery-plugin.php:700
223
  #, php-format
224
  msgid "Install %s"
225
  msgstr "Zainstaluj %s"
226
 
227
+ #: gallery-plugin.php:700
228
  msgid "Install now from wordpress.org"
229
  msgstr "Zainstaluj teraz z wordpress.org"
230
 
231
+ #: gallery-plugin.php:705
232
  #, fuzzy
233
  msgid "If you have any questions, please contact us via"
234
  msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
235
 
236
+ #: gallery-plugin.php:740
237
  #, fuzzy
238
  msgid "See images &raquo;"
239
  msgstr "Zobacz zdjęcia &raquo;"
240
 
241
+ #: gallery-plugin.php:839
242
  #, fuzzy
243
  msgid "Settings are saved"
244
  msgstr "Opcje zostały zapisane."
245
 
246
+ #: gallery-plugin.php:853
247
  #, fuzzy
248
  msgid "Gallery Settings"
249
  msgstr "Opcje galerii."
250
 
251
+ #: gallery-plugin.php:856
252
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
253
  msgstr ""
254
 
255
+ #: gallery-plugin.php:860
256
  #, fuzzy
257
  msgid "Image size for the album cover"
258
  msgstr "Размер для "
259
 
260
+ #: gallery-plugin.php:862
261
+ #: gallery-plugin.php:870
262
+ #: gallery-plugin.php:883
263
  #, fuzzy
264
  msgid "Image size"
265
  msgstr "Nazwa rozmiaru obrazka"
266
 
267
+ #: gallery-plugin.php:863
268
+ #: gallery-plugin.php:871
269
  msgid "Width (in px)"
270
  msgstr "Szerokość (w px)"
271
 
272
+ #: gallery-plugin.php:864
273
+ #: gallery-plugin.php:872
274
  msgid "Height (in px)"
275
  msgstr "Wysokość (w px)"
276
 
277
+ #: gallery-plugin.php:868
278
  #, fuzzy
279
  msgid "Gallery image size"
280
  msgstr "Galerie zdjęć"
281
 
282
+ #: gallery-plugin.php:876
283
  #, fuzzy
284
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
285
  msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
286
 
287
+ #: gallery-plugin.php:881
288
  msgid "Gallery image size in the lightbox"
289
  msgstr ""
290
 
291
+ #: gallery-plugin.php:884
292
  #, fuzzy
293
  msgid "Max width (in px)"
294
  msgstr "Szerokość (w px)"
295
 
296
+ #: gallery-plugin.php:885
297
  #, fuzzy
298
  msgid "Max height (in px)"
299
  msgstr "Wysokość (w px)"
300
 
301
+ #: gallery-plugin.php:886
302
  msgid "Display a full size image in the lightbox"
303
  msgstr ""
304
 
305
+ #: gallery-plugin.php:890
306
  msgid "Crop position"
307
  msgstr ""
308
 
309
+ #: gallery-plugin.php:892
310
  msgid "Horizontal"
311
  msgstr ""
312
 
313
+ #: gallery-plugin.php:894
314
  msgid "left"
315
  msgstr ""
316
 
317
+ #: gallery-plugin.php:895
318
+ #: gallery-plugin.php:902
319
  msgid "center"
320
  msgstr ""
321
 
322
+ #: gallery-plugin.php:896
323
  msgid "right"
324
  msgstr ""
325
 
326
+ #: gallery-plugin.php:899
327
  msgid "Vertical"
328
  msgstr ""
329
 
330
+ #: gallery-plugin.php:901
331
  msgid "top"
332
  msgstr ""
333
 
334
+ #: gallery-plugin.php:903
335
  msgid "bottom"
336
  msgstr ""
337
 
338
+ #: gallery-plugin.php:908
339
  msgid "Lightbox background"
340
  msgstr ""
341
 
342
+ #: gallery-plugin.php:910
343
  msgid "Default"
344
  msgstr ""
345
 
346
+ #: gallery-plugin.php:911
347
  msgid "Background transparency (from 0 to 1)"
348
  msgstr ""
349
 
350
+ #: gallery-plugin.php:913
351
  msgid "Select a background color"
352
  msgstr ""
353
 
354
+ #: gallery-plugin.php:915
355
  msgid "Background color"
356
  msgstr ""
357
 
358
+ #: gallery-plugin.php:922
359
+ #: gallery-plugin.php:1027
360
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
361
  msgstr ""
362
 
363
+ #: gallery-plugin.php:929
364
  msgid "Images with border"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:932
368
  msgid "Border width in px, just numbers"
369
  msgstr ""
370
 
371
+ #: gallery-plugin.php:934
372
+ #: gallery-plugin.php:936
373
  msgid "Select a border color"
374
  msgstr ""
375
 
376
+ #: gallery-plugin.php:942
377
  #, fuzzy
378
  msgid "Number of images in the row"
379
  msgstr "Ilość obrazków w rzędzie"
380
 
381
+ #: gallery-plugin.php:948
382
  msgid "Start slideshow"
383
  msgstr ""
384
 
385
+ #: gallery-plugin.php:954
386
  msgid "Slideshow interval"
387
  msgstr ""
388
 
389
+ #: gallery-plugin.php:962
390
  msgid "Attachment ID"
391
  msgstr ""
392
 
393
+ #: gallery-plugin.php:963
394
  #, fuzzy
395
  msgid "Image Name"
396
  msgstr "Nazwa rozmiaru obrazka"
397
 
398
+ #: gallery-plugin.php:965
399
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
400
  msgstr ""
401
 
402
+ #: gallery-plugin.php:966
403
  msgid "Random"
404
  msgstr ""
405
 
406
+ #: gallery-plugin.php:970
407
  #, fuzzy
408
  msgid "Sort images"
409
  msgstr "Ilość obrazków w rzędzie"
410
 
411
+ #: gallery-plugin.php:972
412
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
413
  msgstr ""
414
 
415
+ #: gallery-plugin.php:973
416
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
417
  msgstr ""
418
 
419
+ #: gallery-plugin.php:977
420
  msgid "Display text above the image"
421
  msgstr ""
422
 
423
+ #: gallery-plugin.php:979
424
  msgid "If you want to display text just in a lightbox"
425
  msgstr ""
426
 
427
+ #: gallery-plugin.php:983
428
  msgid "Display the Back link"
429
  msgstr ""
430
 
431
+ #: gallery-plugin.php:989
432
  msgid "Display the Back link in the shortcode"
433
  msgstr ""
434
 
435
+ #: gallery-plugin.php:995
436
  msgid "The Back link text"
437
  msgstr ""
438
 
439
+ #: gallery-plugin.php:1001
440
  msgid "The Back link URL"
441
  msgstr ""
442
 
443
+ #: gallery-plugin.php:1003
444
  msgid "Gallery page (Page with Gallery Template)"
445
  msgstr ""
446
 
447
+ #: gallery-plugin.php:1005
448
  msgid "(Full URL to custom page)"
449
  msgstr ""
450
 
451
+ #: gallery-plugin.php:1009
452
  msgid "The Read More link text"
453
  msgstr ""
454
 
455
+ #: gallery-plugin.php:1017
456
+ msgid "Display Like buttons in the lightbox"
457
+ msgstr ""
458
+
459
+ #: gallery-plugin.php:1019
460
+ msgid "FaceBook"
461
+ msgstr ""
462
+
463
+ #: gallery-plugin.php:1020
464
+ #, fuzzy
465
+ msgid "Twitter"
466
+ msgstr "Tytuł"
467
+
468
+ #: gallery-plugin.php:1021
469
+ msgid "Pinterest"
470
+ msgstr ""
471
+
472
+ #: gallery-plugin.php:1022
473
+ msgid "Google +1"
474
+ msgstr ""
475
+
476
+ #: gallery-plugin.php:1035
477
  msgid "Save Changes"
478
  msgstr "Zapisz zmiany"
479
 
480
+ #: gallery-plugin.php:1048
481
  msgid "FAQ"
482
  msgstr "FAQ "
483
 
484
+ #: gallery-plugin.php:1049
485
  msgid "Support"
486
  msgstr "Wsparcie"
487
 
488
+ #: gallery-plugin.php:1256
489
  #: template/gallery-single-template.php:76
490
  #, fuzzy
491
  msgid "Sorry, nothing found."
492
  msgstr "Przykro nam - nic nie znaleziono."
493
 
494
+ #: gallery-plugin.php:1278
495
  #: template/gallery-single-template.php:101
496
  msgid "Download high resolution image"
497
  msgstr ""
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: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:02+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
9
  "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
20
 
21
  # @ gallery
22
  #: gallery-plugin.php:103
23
- #: gallery-plugin.php:845
24
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
25
  msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
26
 
@@ -32,7 +32,7 @@ msgstr "Galerias"
32
 
33
  # @ gallery
34
  #: gallery-plugin.php:128
35
- #: gallery-plugin.php:712
36
  msgid "Gallery"
37
  msgstr "Galeria"
38
 
@@ -115,7 +115,7 @@ msgstr ""
115
 
116
  # @ gallery
117
  #: gallery-plugin.php:228
118
- #: gallery-plugin.php:959
119
  #, fuzzy
120
  msgid "Sort images by"
121
  msgstr "Quantidade de imagens por linha"
@@ -192,355 +192,378 @@ msgstr "Público"
192
 
193
  # @ gallery
194
  #: gallery-plugin.php:483
195
- #: gallery-plugin.php:963
196
  msgid "Date"
197
  msgstr "Data"
198
 
199
  # @ gallery
200
- #: gallery-plugin.php:652
201
  #, fuzzy
202
  msgid "Pro plugins"
203
  msgstr "Plugins recomendados"
204
 
205
  # @ gallery
206
- #: gallery-plugin.php:655
207
- #: gallery-plugin.php:681
208
  msgid "Activated plugins"
209
  msgstr "Plugins ativados"
210
 
211
  # @ gallery
212
- #: gallery-plugin.php:657
213
- #: gallery-plugin.php:665
214
- #: gallery-plugin.php:673
215
- #: gallery-plugin.php:683
216
- #: gallery-plugin.php:691
217
- #: gallery-plugin.php:699
218
  msgid "Read more"
219
  msgstr "Leia mais"
220
 
221
  # @ gallery
222
- #: gallery-plugin.php:657
223
- #: gallery-plugin.php:683
224
- #: gallery-plugin.php:1028
225
- #: gallery-plugin.php:1043
226
  msgid "Settings"
227
  msgstr "Configurações"
228
 
229
  # @ gallery
230
- #: gallery-plugin.php:663
231
- #: gallery-plugin.php:689
232
  msgid "Installed plugins"
233
  msgstr "Plugins instalados"
234
 
235
  # @ gallery
236
- #: gallery-plugin.php:671
237
- #: gallery-plugin.php:697
238
  msgid "Recommended plugins"
239
  msgstr "Plugins recomendados"
240
 
241
- #: gallery-plugin.php:673
242
  msgid "Purchase"
243
  msgstr ""
244
 
245
  # @ gallery
246
- #: gallery-plugin.php:678
247
  #, fuzzy
248
  msgid "Free plugins"
249
  msgstr "Plugins recomendados"
250
 
251
  # @ gallery
252
- #: gallery-plugin.php:699
253
  msgid "Download"
254
  msgstr "Download"
255
 
256
  # @ default
257
- #: gallery-plugin.php:699
258
  #, php-format
259
  msgid "Install %s"
260
  msgstr "Instalar %s"
261
 
262
  # @ gallery
263
- #: gallery-plugin.php:699
264
  msgid "Install now from wordpress.org"
265
  msgstr "Instale agora via wordpres.org"
266
 
267
  # @ gallery
268
- #: gallery-plugin.php:704
269
  #, fuzzy
270
  msgid "If you have any questions, please contact us via"
271
  msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
272
 
273
  # @ gallery
274
- #: gallery-plugin.php:739
275
  #, fuzzy
276
  msgid "See images &raquo;"
277
  msgstr "Ver foto &raquo;"
278
 
279
  # @ gallery
280
- #: gallery-plugin.php:838
281
  #, fuzzy
282
  msgid "Settings are saved"
283
  msgstr "Opções salvas."
284
 
285
  # @ gallery
286
- #: gallery-plugin.php:852
287
  #, fuzzy
288
  msgid "Gallery Settings"
289
  msgstr "Opções da Galeria"
290
 
291
  # @ gallery
292
- #: gallery-plugin.php:855
293
  #, fuzzy
294
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
295
  msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
296
 
297
  # @ gallery
298
- #: gallery-plugin.php:859
299
  #, fuzzy
300
  msgid "Image size for the album cover"
301
  msgstr "Tamanho da imagem de capa do álbum para as galerias"
302
 
303
  # @ gallery
304
- #: gallery-plugin.php:861
305
- #: gallery-plugin.php:869
306
- #: gallery-plugin.php:882
307
  #, fuzzy
308
  msgid "Image size"
309
  msgstr "Nome do tamanho"
310
 
311
  # @ gallery
312
- #: gallery-plugin.php:862
313
- #: gallery-plugin.php:870
314
  msgid "Width (in px)"
315
  msgstr "Largura (em px)"
316
 
317
  # @ gallery
318
- #: gallery-plugin.php:863
319
- #: gallery-plugin.php:871
320
  msgid "Height (in px)"
321
  msgstr "Altura (em px)"
322
 
323
  # @ gallery
324
- #: gallery-plugin.php:867
325
  #, fuzzy
326
  msgid "Gallery image size"
327
  msgstr "Galerias"
328
 
329
  # @ gallery
330
- #: gallery-plugin.php:875
331
  #, fuzzy
332
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
333
  msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
334
 
335
- #: gallery-plugin.php:880
336
  msgid "Gallery image size in the lightbox"
337
  msgstr ""
338
 
339
  # @ gallery
340
- #: gallery-plugin.php:883
341
  #, fuzzy
342
  msgid "Max width (in px)"
343
  msgstr "Largura (em px)"
344
 
345
  # @ gallery
346
- #: gallery-plugin.php:884
347
  #, fuzzy
348
  msgid "Max height (in px)"
349
  msgstr "Altura (em px)"
350
 
351
- #: gallery-plugin.php:885
352
  msgid "Display a full size image in the lightbox"
353
  msgstr ""
354
 
355
- #: gallery-plugin.php:889
356
  msgid "Crop position"
357
  msgstr ""
358
 
359
- #: gallery-plugin.php:891
360
  msgid "Horizontal"
361
  msgstr ""
362
 
363
- #: gallery-plugin.php:893
364
  msgid "left"
365
  msgstr ""
366
 
367
- #: gallery-plugin.php:894
368
- #: gallery-plugin.php:901
369
  msgid "center"
370
  msgstr ""
371
 
372
- #: gallery-plugin.php:895
373
  msgid "right"
374
  msgstr ""
375
 
376
- #: gallery-plugin.php:898
377
  msgid "Vertical"
378
  msgstr ""
379
 
380
- #: gallery-plugin.php:900
381
  msgid "top"
382
  msgstr ""
383
 
384
- #: gallery-plugin.php:902
385
  msgid "bottom"
386
  msgstr ""
387
 
388
- #: gallery-plugin.php:907
389
  msgid "Lightbox background"
390
  msgstr ""
391
 
392
- #: gallery-plugin.php:909
393
  msgid "Default"
394
  msgstr ""
395
 
396
- #: gallery-plugin.php:910
397
  msgid "Background transparency (from 0 to 1)"
398
  msgstr ""
399
 
400
- #: gallery-plugin.php:912
401
  msgid "Select a background color"
402
  msgstr ""
403
 
404
- #: gallery-plugin.php:914
405
  msgid "Background color"
406
  msgstr ""
407
 
408
- #: gallery-plugin.php:921
 
409
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
410
  msgstr ""
411
 
412
- #: gallery-plugin.php:928
413
  msgid "Images with border"
414
  msgstr ""
415
 
416
- #: gallery-plugin.php:931
417
  msgid "Border width in px, just numbers"
418
  msgstr ""
419
 
420
- #: gallery-plugin.php:933
421
- #: gallery-plugin.php:935
422
  msgid "Select a border color"
423
  msgstr ""
424
 
425
  # @ gallery
426
- #: gallery-plugin.php:941
427
  #, fuzzy
428
  msgid "Number of images in the row"
429
  msgstr "Quantidade de imagens por linha"
430
 
431
  # @ gallery
432
- #: gallery-plugin.php:947
433
  msgid "Start slideshow"
434
  msgstr "Iniciar Apresentação de Slides"
435
 
436
  # @ gallery
437
- #: gallery-plugin.php:953
438
  msgid "Slideshow interval"
439
  msgstr "Intervalo de tempo entre cada Slide"
440
 
441
  # @ gallery
442
- #: gallery-plugin.php:961
443
  #, fuzzy
444
  msgid "Attachment ID"
445
  msgstr "id do anexo"
446
 
447
  # @ gallery
448
- #: gallery-plugin.php:962
449
  #, fuzzy
450
  msgid "Image Name"
451
  msgstr "Imagem "
452
 
453
  # @ gallery
454
- #: gallery-plugin.php:964
455
  #, fuzzy
456
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
457
  msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
458
 
459
  # @ gallery
460
- #: gallery-plugin.php:965
461
  #, fuzzy
462
  msgid "Random"
463
  msgstr "aleatório"
464
 
465
  # @ gallery
466
- #: gallery-plugin.php:969
467
  #, fuzzy
468
  msgid "Sort images"
469
  msgstr "Quantidade de imagens por linha"
470
 
471
  # @ gallery
472
- #: gallery-plugin.php:971
473
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
474
  msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
475
 
476
  # @ gallery
477
- #: gallery-plugin.php:972
478
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
479
  msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
480
 
481
- #: gallery-plugin.php:976
482
  msgid "Display text above the image"
483
  msgstr ""
484
 
485
- #: gallery-plugin.php:978
486
  msgid "If you want to display text just in a lightbox"
487
  msgstr ""
488
 
489
  # @ gallery
490
- #: gallery-plugin.php:982
491
  #, fuzzy
492
  msgid "Display the Back link"
493
  msgstr "Mostrar link de Retorno"
494
 
495
  # @ gallery
496
- #: gallery-plugin.php:988
497
  #, fuzzy
498
  msgid "Display the Back link in the shortcode"
499
  msgstr "Mostrar link de Retorno no shortcode"
500
 
501
- #: gallery-plugin.php:994
502
  msgid "The Back link text"
503
  msgstr ""
504
 
505
- #: gallery-plugin.php:1000
506
  msgid "The Back link URL"
507
  msgstr ""
508
 
509
- #: gallery-plugin.php:1002
510
  msgid "Gallery page (Page with Gallery Template)"
511
  msgstr ""
512
 
513
- #: gallery-plugin.php:1004
514
  msgid "(Full URL to custom page)"
515
  msgstr ""
516
 
517
- #: gallery-plugin.php:1008
518
  msgid "The Read More link text"
519
  msgstr ""
520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
521
  # @ default
522
- #: gallery-plugin.php:1016
523
  msgid "Save Changes"
524
  msgstr "Salvar Alterações"
525
 
526
  # @ gallery
527
- #: gallery-plugin.php:1029
528
  msgid "FAQ"
529
  msgstr "FAQ"
530
 
531
  # @ gallery
532
- #: gallery-plugin.php:1030
533
  msgid "Support"
534
  msgstr "Suporte"
535
 
536
  # @ gallery
537
- #: gallery-plugin.php:1237
538
  #: template/gallery-single-template.php:76
539
  #, fuzzy
540
  msgid "Sorry, nothing found."
541
  msgstr "Desculpe - nada foi encontrado."
542
 
543
- #: gallery-plugin.php:1259
544
  #: template/gallery-single-template.php:101
545
  msgid "Download high resolution image"
546
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Gallery Plugin v3.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:14+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
9
  "MIME-Version: 1.0\n"
20
 
21
  # @ gallery
22
  #: gallery-plugin.php:103
23
+ #: gallery-plugin.php:846
24
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
25
  msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
26
 
32
 
33
  # @ gallery
34
  #: gallery-plugin.php:128
35
+ #: gallery-plugin.php:713
36
  msgid "Gallery"
37
  msgstr "Galeria"
38
 
115
 
116
  # @ gallery
117
  #: gallery-plugin.php:228
118
+ #: gallery-plugin.php:960
119
  #, fuzzy
120
  msgid "Sort images by"
121
  msgstr "Quantidade de imagens por linha"
192
 
193
  # @ gallery
194
  #: gallery-plugin.php:483
195
+ #: gallery-plugin.php:964
196
  msgid "Date"
197
  msgstr "Data"
198
 
199
  # @ gallery
200
+ #: gallery-plugin.php:653
201
  #, fuzzy
202
  msgid "Pro plugins"
203
  msgstr "Plugins recomendados"
204
 
205
  # @ gallery
206
+ #: gallery-plugin.php:656
207
+ #: gallery-plugin.php:682
208
  msgid "Activated plugins"
209
  msgstr "Plugins ativados"
210
 
211
  # @ gallery
212
+ #: gallery-plugin.php:658
213
+ #: gallery-plugin.php:666
214
+ #: gallery-plugin.php:674
215
+ #: gallery-plugin.php:684
216
+ #: gallery-plugin.php:692
217
+ #: gallery-plugin.php:700
218
  msgid "Read more"
219
  msgstr "Leia mais"
220
 
221
  # @ gallery
222
+ #: gallery-plugin.php:658
223
+ #: gallery-plugin.php:684
224
+ #: gallery-plugin.php:1047
225
+ #: gallery-plugin.php:1062
226
  msgid "Settings"
227
  msgstr "Configurações"
228
 
229
  # @ gallery
230
+ #: gallery-plugin.php:664
231
+ #: gallery-plugin.php:690
232
  msgid "Installed plugins"
233
  msgstr "Plugins instalados"
234
 
235
  # @ gallery
236
+ #: gallery-plugin.php:672
237
+ #: gallery-plugin.php:698
238
  msgid "Recommended plugins"
239
  msgstr "Plugins recomendados"
240
 
241
+ #: gallery-plugin.php:674
242
  msgid "Purchase"
243
  msgstr ""
244
 
245
  # @ gallery
246
+ #: gallery-plugin.php:679
247
  #, fuzzy
248
  msgid "Free plugins"
249
  msgstr "Plugins recomendados"
250
 
251
  # @ gallery
252
+ #: gallery-plugin.php:700
253
  msgid "Download"
254
  msgstr "Download"
255
 
256
  # @ default
257
+ #: gallery-plugin.php:700
258
  #, php-format
259
  msgid "Install %s"
260
  msgstr "Instalar %s"
261
 
262
  # @ gallery
263
+ #: gallery-plugin.php:700
264
  msgid "Install now from wordpress.org"
265
  msgstr "Instale agora via wordpres.org"
266
 
267
  # @ gallery
268
+ #: gallery-plugin.php:705
269
  #, fuzzy
270
  msgid "If you have any questions, please contact us via"
271
  msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
272
 
273
  # @ gallery
274
+ #: gallery-plugin.php:740
275
  #, fuzzy
276
  msgid "See images &raquo;"
277
  msgstr "Ver foto &raquo;"
278
 
279
  # @ gallery
280
+ #: gallery-plugin.php:839
281
  #, fuzzy
282
  msgid "Settings are saved"
283
  msgstr "Opções salvas."
284
 
285
  # @ gallery
286
+ #: gallery-plugin.php:853
287
  #, fuzzy
288
  msgid "Gallery Settings"
289
  msgstr "Opções da Galeria"
290
 
291
  # @ gallery
292
+ #: gallery-plugin.php:856
293
  #, fuzzy
294
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
295
  msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
296
 
297
  # @ gallery
298
+ #: gallery-plugin.php:860
299
  #, fuzzy
300
  msgid "Image size for the album cover"
301
  msgstr "Tamanho da imagem de capa do álbum para as galerias"
302
 
303
  # @ gallery
304
+ #: gallery-plugin.php:862
305
+ #: gallery-plugin.php:870
306
+ #: gallery-plugin.php:883
307
  #, fuzzy
308
  msgid "Image size"
309
  msgstr "Nome do tamanho"
310
 
311
  # @ gallery
312
+ #: gallery-plugin.php:863
313
+ #: gallery-plugin.php:871
314
  msgid "Width (in px)"
315
  msgstr "Largura (em px)"
316
 
317
  # @ gallery
318
+ #: gallery-plugin.php:864
319
+ #: gallery-plugin.php:872
320
  msgid "Height (in px)"
321
  msgstr "Altura (em px)"
322
 
323
  # @ gallery
324
+ #: gallery-plugin.php:868
325
  #, fuzzy
326
  msgid "Gallery image size"
327
  msgstr "Galerias"
328
 
329
  # @ gallery
330
+ #: gallery-plugin.php:876
331
  #, fuzzy
332
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
333
  msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
334
 
335
+ #: gallery-plugin.php:881
336
  msgid "Gallery image size in the lightbox"
337
  msgstr ""
338
 
339
  # @ gallery
340
+ #: gallery-plugin.php:884
341
  #, fuzzy
342
  msgid "Max width (in px)"
343
  msgstr "Largura (em px)"
344
 
345
  # @ gallery
346
+ #: gallery-plugin.php:885
347
  #, fuzzy
348
  msgid "Max height (in px)"
349
  msgstr "Altura (em px)"
350
 
351
+ #: gallery-plugin.php:886
352
  msgid "Display a full size image in the lightbox"
353
  msgstr ""
354
 
355
+ #: gallery-plugin.php:890
356
  msgid "Crop position"
357
  msgstr ""
358
 
359
+ #: gallery-plugin.php:892
360
  msgid "Horizontal"
361
  msgstr ""
362
 
363
+ #: gallery-plugin.php:894
364
  msgid "left"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:895
368
+ #: gallery-plugin.php:902
369
  msgid "center"
370
  msgstr ""
371
 
372
+ #: gallery-plugin.php:896
373
  msgid "right"
374
  msgstr ""
375
 
376
+ #: gallery-plugin.php:899
377
  msgid "Vertical"
378
  msgstr ""
379
 
380
+ #: gallery-plugin.php:901
381
  msgid "top"
382
  msgstr ""
383
 
384
+ #: gallery-plugin.php:903
385
  msgid "bottom"
386
  msgstr ""
387
 
388
+ #: gallery-plugin.php:908
389
  msgid "Lightbox background"
390
  msgstr ""
391
 
392
+ #: gallery-plugin.php:910
393
  msgid "Default"
394
  msgstr ""
395
 
396
+ #: gallery-plugin.php:911
397
  msgid "Background transparency (from 0 to 1)"
398
  msgstr ""
399
 
400
+ #: gallery-plugin.php:913
401
  msgid "Select a background color"
402
  msgstr ""
403
 
404
+ #: gallery-plugin.php:915
405
  msgid "Background color"
406
  msgstr ""
407
 
408
+ #: gallery-plugin.php:922
409
+ #: gallery-plugin.php:1027
410
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
411
  msgstr ""
412
 
413
+ #: gallery-plugin.php:929
414
  msgid "Images with border"
415
  msgstr ""
416
 
417
+ #: gallery-plugin.php:932
418
  msgid "Border width in px, just numbers"
419
  msgstr ""
420
 
421
+ #: gallery-plugin.php:934
422
+ #: gallery-plugin.php:936
423
  msgid "Select a border color"
424
  msgstr ""
425
 
426
  # @ gallery
427
+ #: gallery-plugin.php:942
428
  #, fuzzy
429
  msgid "Number of images in the row"
430
  msgstr "Quantidade de imagens por linha"
431
 
432
  # @ gallery
433
+ #: gallery-plugin.php:948
434
  msgid "Start slideshow"
435
  msgstr "Iniciar Apresentação de Slides"
436
 
437
  # @ gallery
438
+ #: gallery-plugin.php:954
439
  msgid "Slideshow interval"
440
  msgstr "Intervalo de tempo entre cada Slide"
441
 
442
  # @ gallery
443
+ #: gallery-plugin.php:962
444
  #, fuzzy
445
  msgid "Attachment ID"
446
  msgstr "id do anexo"
447
 
448
  # @ gallery
449
+ #: gallery-plugin.php:963
450
  #, fuzzy
451
  msgid "Image Name"
452
  msgstr "Imagem "
453
 
454
  # @ gallery
455
+ #: gallery-plugin.php:965
456
  #, fuzzy
457
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
458
  msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
459
 
460
  # @ gallery
461
+ #: gallery-plugin.php:966
462
  #, fuzzy
463
  msgid "Random"
464
  msgstr "aleatório"
465
 
466
  # @ gallery
467
+ #: gallery-plugin.php:970
468
  #, fuzzy
469
  msgid "Sort images"
470
  msgstr "Quantidade de imagens por linha"
471
 
472
  # @ gallery
473
+ #: gallery-plugin.php:972
474
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
475
  msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
476
 
477
  # @ gallery
478
+ #: gallery-plugin.php:973
479
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
480
  msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
481
 
482
+ #: gallery-plugin.php:977
483
  msgid "Display text above the image"
484
  msgstr ""
485
 
486
+ #: gallery-plugin.php:979
487
  msgid "If you want to display text just in a lightbox"
488
  msgstr ""
489
 
490
  # @ gallery
491
+ #: gallery-plugin.php:983
492
  #, fuzzy
493
  msgid "Display the Back link"
494
  msgstr "Mostrar link de Retorno"
495
 
496
  # @ gallery
497
+ #: gallery-plugin.php:989
498
  #, fuzzy
499
  msgid "Display the Back link in the shortcode"
500
  msgstr "Mostrar link de Retorno no shortcode"
501
 
502
+ #: gallery-plugin.php:995
503
  msgid "The Back link text"
504
  msgstr ""
505
 
506
+ #: gallery-plugin.php:1001
507
  msgid "The Back link URL"
508
  msgstr ""
509
 
510
+ #: gallery-plugin.php:1003
511
  msgid "Gallery page (Page with Gallery Template)"
512
  msgstr ""
513
 
514
+ #: gallery-plugin.php:1005
515
  msgid "(Full URL to custom page)"
516
  msgstr ""
517
 
518
+ #: gallery-plugin.php:1009
519
  msgid "The Read More link text"
520
  msgstr ""
521
 
522
+ #: gallery-plugin.php:1017
523
+ msgid "Display Like buttons in the lightbox"
524
+ msgstr ""
525
+
526
+ #: gallery-plugin.php:1019
527
+ msgid "FaceBook"
528
+ msgstr ""
529
+
530
+ # @ gallery
531
+ #: gallery-plugin.php:1020
532
+ #, fuzzy
533
+ msgid "Twitter"
534
+ msgstr "Título"
535
+
536
+ #: gallery-plugin.php:1021
537
+ msgid "Pinterest"
538
+ msgstr ""
539
+
540
+ #: gallery-plugin.php:1022
541
+ msgid "Google +1"
542
+ msgstr ""
543
+
544
  # @ default
545
+ #: gallery-plugin.php:1035
546
  msgid "Save Changes"
547
  msgstr "Salvar Alterações"
548
 
549
  # @ gallery
550
+ #: gallery-plugin.php:1048
551
  msgid "FAQ"
552
  msgstr "FAQ"
553
 
554
  # @ gallery
555
+ #: gallery-plugin.php:1049
556
  msgid "Support"
557
  msgstr "Suporte"
558
 
559
  # @ gallery
560
+ #: gallery-plugin.php:1256
561
  #: template/gallery-single-template.php:76
562
  #, fuzzy
563
  msgid "Sorry, nothing found."
564
  msgstr "Desculpe - nada foi encontrado."
565
 
566
+ #: gallery-plugin.php:1278
567
  #: template/gallery-single-template.php:101
568
  msgid "Download high resolution image"
569
  msgstr ""
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,10 +2,10 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-05-28 16:02+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:03+0300\n"
7
  "Last-Translator: \n"
8
- "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Галереи"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
@@ -92,7 +92,7 @@ msgid "Please make a choice"
92
  msgstr "Пожалуйста, выберите"
93
 
94
  #: gallery-plugin.php:228
95
- #: gallery-plugin.php:959
96
  msgid "Sort images by"
97
  msgstr "Изображения сортируются по"
98
 
@@ -157,294 +157,315 @@ msgid "Publishing"
157
  msgstr "Опубликование"
158
 
159
  #: gallery-plugin.php:483
160
- #: gallery-plugin.php:963
161
  msgid "Date"
162
  msgstr "Дата"
163
 
164
- #: gallery-plugin.php:652
165
  msgid "Pro plugins"
166
  msgstr "Pro плагины"
167
 
168
- #: gallery-plugin.php:655
169
- #: gallery-plugin.php:681
170
  msgid "Activated plugins"
171
  msgstr "Активированные плагины"
172
 
173
- #: gallery-plugin.php:657
174
- #: gallery-plugin.php:665
175
- #: gallery-plugin.php:673
176
- #: gallery-plugin.php:683
177
- #: gallery-plugin.php:691
178
- #: gallery-plugin.php:699
179
  msgid "Read more"
180
  msgstr "Подробнее..."
181
 
182
- #: gallery-plugin.php:657
183
- #: gallery-plugin.php:683
184
- #: gallery-plugin.php:1028
185
- #: gallery-plugin.php:1043
186
  msgid "Settings"
187
  msgstr "Настройки"
188
 
189
- #: gallery-plugin.php:663
190
- #: gallery-plugin.php:689
191
  msgid "Installed plugins"
192
  msgstr "Установленные плагины"
193
 
194
- #: gallery-plugin.php:671
195
- #: gallery-plugin.php:697
196
  msgid "Recommended plugins"
197
  msgstr "Рекомендованные к установке плагины"
198
 
199
- #: gallery-plugin.php:673
200
  msgid "Purchase"
201
  msgstr "Купить"
202
 
203
- #: gallery-plugin.php:678
204
  msgid "Free plugins"
205
  msgstr "Бесплатные плагины"
206
 
207
- #: gallery-plugin.php:699
208
  msgid "Download"
209
  msgstr "Скачать"
210
 
211
- #: gallery-plugin.php:699
212
  #, php-format
213
  msgid "Install %s"
214
  msgstr "Установлено %s"
215
 
216
- #: gallery-plugin.php:699
217
  msgid "Install now from wordpress.org"
218
  msgstr "Установить с wordpress.org"
219
 
220
- #: gallery-plugin.php:704
221
  msgid "If you have any questions, please contact us via"
222
  msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
223
 
224
- #: gallery-plugin.php:739
225
  msgid "See images &raquo;"
226
  msgstr "Смотреть фотографии &raquo;"
227
 
228
- #: gallery-plugin.php:838
229
  msgid "Settings are saved"
230
  msgstr "Опции сохранены"
231
 
232
- #: gallery-plugin.php:852
233
  msgid "Gallery Settings"
234
  msgstr "Настройки Галереи"
235
 
236
- #: gallery-plugin.php:855
237
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
238
  msgstr "Если вы хотели бы добавить Галерею на вашу страницу или пост, просто скопируйте и поместите этот шорткод в контент поста или страницы:"
239
 
240
- #: gallery-plugin.php:859
241
  msgid "Image size for the album cover"
242
  msgstr "Размер изображения для обложки альбома галереи"
243
 
244
- #: gallery-plugin.php:861
245
- #: gallery-plugin.php:869
246
- #: gallery-plugin.php:882
247
  msgid "Image size"
248
  msgstr "Название размера изображения"
249
 
250
- #: gallery-plugin.php:862
251
- #: gallery-plugin.php:870
252
  msgid "Width (in px)"
253
  msgstr "Ширина (в px)"
254
 
255
- #: gallery-plugin.php:863
256
- #: gallery-plugin.php:871
257
  msgid "Height (in px)"
258
  msgstr "Высота (в px)"
259
 
260
- #: gallery-plugin.php:867
261
  msgid "Gallery image size"
262
  msgstr "Размер изображений Галереи"
263
 
264
- #: gallery-plugin.php:875
265
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
266
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
267
 
268
- #: gallery-plugin.php:880
269
  msgid "Gallery image size in the lightbox"
270
  msgstr "Размер изображений Галереи в лайтбоксе"
271
 
272
- #: gallery-plugin.php:883
273
  msgid "Max width (in px)"
274
  msgstr "Макс. ширина (в px)"
275
 
276
- #: gallery-plugin.php:884
277
  msgid "Max height (in px)"
278
  msgstr "Макс. высота (в px)"
279
 
280
- #: gallery-plugin.php:885
281
  msgid "Display a full size image in the lightbox"
282
  msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
283
 
284
- #: gallery-plugin.php:889
285
  msgid "Crop position"
286
  msgstr "Позиция обрезки"
287
 
288
- #: gallery-plugin.php:891
289
  msgid "Horizontal"
290
  msgstr "Горизонтальная"
291
 
292
- #: gallery-plugin.php:893
293
  msgid "left"
294
  msgstr "лево"
295
 
296
- #: gallery-plugin.php:894
297
- #: gallery-plugin.php:901
298
  msgid "center"
299
  msgstr "центр"
300
 
301
- #: gallery-plugin.php:895
302
  msgid "right"
303
  msgstr "право"
304
 
305
- #: gallery-plugin.php:898
306
  msgid "Vertical"
307
  msgstr "Вертикальная"
308
 
309
- #: gallery-plugin.php:900
310
  msgid "top"
311
  msgstr "верх"
312
 
313
- #: gallery-plugin.php:902
314
  msgid "bottom"
315
  msgstr "низ"
316
 
317
- #: gallery-plugin.php:907
318
  msgid "Lightbox background"
319
  msgstr "Фон лайтбокса"
320
 
321
- #: gallery-plugin.php:909
322
  msgid "Default"
323
  msgstr "По-умолчанию"
324
 
325
- #: gallery-plugin.php:910
326
  msgid "Background transparency (from 0 to 1)"
327
  msgstr "Прозрачность для фона (от 0 до 1)"
328
 
329
- #: gallery-plugin.php:912
330
  msgid "Select a background color"
331
  msgstr "Выберите цвет фона"
332
 
333
- #: gallery-plugin.php:914
334
  msgid "Background color"
335
  msgstr "Цвет фона"
336
 
337
- #: gallery-plugin.php:921
 
338
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
339
  msgstr "Этот функционал доступен в Pro версии плагина. Для детального ознакомления, перейдите по ссылке"
340
 
341
- #: gallery-plugin.php:928
342
  msgid "Images with border"
343
  msgstr "Изображения с рамкой"
344
 
345
- #: gallery-plugin.php:931
346
  msgid "Border width in px, just numbers"
347
  msgstr "Ширина рамки в px, только числа"
348
 
349
- #: gallery-plugin.php:933
350
- #: gallery-plugin.php:935
351
  msgid "Select a border color"
352
  msgstr "Выберите цвет рамки"
353
 
354
- #: gallery-plugin.php:941
355
  msgid "Number of images in the row"
356
  msgstr "Количество изображений в строке"
357
 
358
- #: gallery-plugin.php:947
359
  msgid "Start slideshow"
360
  msgstr "Начать слайдшоу"
361
 
362
- #: gallery-plugin.php:953
363
  msgid "Slideshow interval"
364
  msgstr "Интервал времени при показе слайдшоу"
365
 
366
- #: gallery-plugin.php:961
367
  msgid "Attachment ID"
368
  msgstr "id изображения"
369
 
370
- #: gallery-plugin.php:962
371
  msgid "Image Name"
372
  msgstr "названию изображения"
373
 
374
- #: gallery-plugin.php:964
375
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
376
  msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
377
 
378
- #: gallery-plugin.php:965
379
  msgid "Random"
380
  msgstr "произвольно"
381
 
382
- #: gallery-plugin.php:969
383
  msgid "Sort images"
384
  msgstr "Сортировать изображения"
385
 
386
- #: gallery-plugin.php:971
387
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
388
  msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
389
 
390
- #: gallery-plugin.php:972
391
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
392
  msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
393
 
394
- #: gallery-plugin.php:976
395
  msgid "Display text above the image"
396
  msgstr "Отображение текста над изображением"
397
 
398
- #: gallery-plugin.php:978
399
  msgid "If you want to display text just in a lightbox"
400
  msgstr "Если вы хотите отображать текст только в лайтбоксе"
401
 
402
- #: gallery-plugin.php:982
403
  msgid "Display the Back link"
404
  msgstr "Отображать ссылку Вернуться"
405
 
406
- #: gallery-plugin.php:988
407
  msgid "Display the Back link in the shortcode"
408
  msgstr "Отображаться ссылку Вернуться в шорткоде"
409
 
410
- #: gallery-plugin.php:994
411
  msgid "The Back link text"
412
  msgstr "Текст для ссылки Вернуться"
413
 
414
- #: gallery-plugin.php:1000
415
  msgid "The Back link URL"
416
  msgstr "URL для ссылки Вернуться"
417
 
418
- #: gallery-plugin.php:1002
419
  msgid "Gallery page (Page with Gallery Template)"
420
  msgstr "Страница галереи (Страница с Gallery Template)"
421
 
422
- #: gallery-plugin.php:1004
423
  msgid "(Full URL to custom page)"
424
  msgstr "(Полная ссылка на пользовательскую страницу)"
425
 
426
- #: gallery-plugin.php:1008
427
  msgid "The Read More link text"
428
  msgstr "Текст для ссылки Вернуться"
429
 
430
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
  msgid "Save Changes"
432
  msgstr "Сохранить изменения"
433
 
434
- #: gallery-plugin.php:1029
435
  msgid "FAQ"
436
  msgstr "FAQ"
437
 
438
- #: gallery-plugin.php:1030
439
  msgid "Support"
440
  msgstr "Поддержка"
441
 
442
- #: gallery-plugin.php:1237
443
  #: template/gallery-single-template.php:76
444
  msgid "Sorry, nothing found."
445
  msgstr "Извините, ничего не найдено."
446
 
447
- #: gallery-plugin.php:1259
448
  #: template/gallery-single-template.php:101
449
  msgid "Download high resolution image"
450
  msgstr "Скачать изображение в высоком разрешении"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:14+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:17+0300\n"
7
  "Last-Translator: \n"
8
+ "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
23
 
27
  msgstr "Галереи"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
92
  msgstr "Пожалуйста, выберите"
93
 
94
  #: gallery-plugin.php:228
95
+ #: gallery-plugin.php:960
96
  msgid "Sort images by"
97
  msgstr "Изображения сортируются по"
98
 
157
  msgstr "Опубликование"
158
 
159
  #: gallery-plugin.php:483
160
+ #: gallery-plugin.php:964
161
  msgid "Date"
162
  msgstr "Дата"
163
 
164
+ #: gallery-plugin.php:653
165
  msgid "Pro plugins"
166
  msgstr "Pro плагины"
167
 
168
+ #: gallery-plugin.php:656
169
+ #: gallery-plugin.php:682
170
  msgid "Activated plugins"
171
  msgstr "Активированные плагины"
172
 
173
+ #: gallery-plugin.php:658
174
+ #: gallery-plugin.php:666
175
+ #: gallery-plugin.php:674
176
+ #: gallery-plugin.php:684
177
+ #: gallery-plugin.php:692
178
+ #: gallery-plugin.php:700
179
  msgid "Read more"
180
  msgstr "Подробнее..."
181
 
182
+ #: gallery-plugin.php:658
183
+ #: gallery-plugin.php:684
184
+ #: gallery-plugin.php:1047
185
+ #: gallery-plugin.php:1062
186
  msgid "Settings"
187
  msgstr "Настройки"
188
 
189
+ #: gallery-plugin.php:664
190
+ #: gallery-plugin.php:690
191
  msgid "Installed plugins"
192
  msgstr "Установленные плагины"
193
 
194
+ #: gallery-plugin.php:672
195
+ #: gallery-plugin.php:698
196
  msgid "Recommended plugins"
197
  msgstr "Рекомендованные к установке плагины"
198
 
199
+ #: gallery-plugin.php:674
200
  msgid "Purchase"
201
  msgstr "Купить"
202
 
203
+ #: gallery-plugin.php:679
204
  msgid "Free plugins"
205
  msgstr "Бесплатные плагины"
206
 
207
+ #: gallery-plugin.php:700
208
  msgid "Download"
209
  msgstr "Скачать"
210
 
211
+ #: gallery-plugin.php:700
212
  #, php-format
213
  msgid "Install %s"
214
  msgstr "Установлено %s"
215
 
216
+ #: gallery-plugin.php:700
217
  msgid "Install now from wordpress.org"
218
  msgstr "Установить с wordpress.org"
219
 
220
+ #: gallery-plugin.php:705
221
  msgid "If you have any questions, please contact us via"
222
  msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
223
 
224
+ #: gallery-plugin.php:740
225
  msgid "See images &raquo;"
226
  msgstr "Смотреть фотографии &raquo;"
227
 
228
+ #: gallery-plugin.php:839
229
  msgid "Settings are saved"
230
  msgstr "Опции сохранены"
231
 
232
+ #: gallery-plugin.php:853
233
  msgid "Gallery Settings"
234
  msgstr "Настройки Галереи"
235
 
236
+ #: gallery-plugin.php:856
237
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
238
  msgstr "Если вы хотели бы добавить Галерею на вашу страницу или пост, просто скопируйте и поместите этот шорткод в контент поста или страницы:"
239
 
240
+ #: gallery-plugin.php:860
241
  msgid "Image size for the album cover"
242
  msgstr "Размер изображения для обложки альбома галереи"
243
 
244
+ #: gallery-plugin.php:862
245
+ #: gallery-plugin.php:870
246
+ #: gallery-plugin.php:883
247
  msgid "Image size"
248
  msgstr "Название размера изображения"
249
 
250
+ #: gallery-plugin.php:863
251
+ #: gallery-plugin.php:871
252
  msgid "Width (in px)"
253
  msgstr "Ширина (в px)"
254
 
255
+ #: gallery-plugin.php:864
256
+ #: gallery-plugin.php:872
257
  msgid "Height (in px)"
258
  msgstr "Высота (в px)"
259
 
260
+ #: gallery-plugin.php:868
261
  msgid "Gallery image size"
262
  msgstr "Размер изображений Галереи"
263
 
264
+ #: gallery-plugin.php:876
265
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
266
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
267
 
268
+ #: gallery-plugin.php:881
269
  msgid "Gallery image size in the lightbox"
270
  msgstr "Размер изображений Галереи в лайтбоксе"
271
 
272
+ #: gallery-plugin.php:884
273
  msgid "Max width (in px)"
274
  msgstr "Макс. ширина (в px)"
275
 
276
+ #: gallery-plugin.php:885
277
  msgid "Max height (in px)"
278
  msgstr "Макс. высота (в px)"
279
 
280
+ #: gallery-plugin.php:886
281
  msgid "Display a full size image in the lightbox"
282
  msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
283
 
284
+ #: gallery-plugin.php:890
285
  msgid "Crop position"
286
  msgstr "Позиция обрезки"
287
 
288
+ #: gallery-plugin.php:892
289
  msgid "Horizontal"
290
  msgstr "Горизонтальная"
291
 
292
+ #: gallery-plugin.php:894
293
  msgid "left"
294
  msgstr "лево"
295
 
296
+ #: gallery-plugin.php:895
297
+ #: gallery-plugin.php:902
298
  msgid "center"
299
  msgstr "центр"
300
 
301
+ #: gallery-plugin.php:896
302
  msgid "right"
303
  msgstr "право"
304
 
305
+ #: gallery-plugin.php:899
306
  msgid "Vertical"
307
  msgstr "Вертикальная"
308
 
309
+ #: gallery-plugin.php:901
310
  msgid "top"
311
  msgstr "верх"
312
 
313
+ #: gallery-plugin.php:903
314
  msgid "bottom"
315
  msgstr "низ"
316
 
317
+ #: gallery-plugin.php:908
318
  msgid "Lightbox background"
319
  msgstr "Фон лайтбокса"
320
 
321
+ #: gallery-plugin.php:910
322
  msgid "Default"
323
  msgstr "По-умолчанию"
324
 
325
+ #: gallery-plugin.php:911
326
  msgid "Background transparency (from 0 to 1)"
327
  msgstr "Прозрачность для фона (от 0 до 1)"
328
 
329
+ #: gallery-plugin.php:913
330
  msgid "Select a background color"
331
  msgstr "Выберите цвет фона"
332
 
333
+ #: gallery-plugin.php:915
334
  msgid "Background color"
335
  msgstr "Цвет фона"
336
 
337
+ #: gallery-plugin.php:922
338
+ #: gallery-plugin.php:1027
339
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
340
  msgstr "Этот функционал доступен в Pro версии плагина. Для детального ознакомления, перейдите по ссылке"
341
 
342
+ #: gallery-plugin.php:929
343
  msgid "Images with border"
344
  msgstr "Изображения с рамкой"
345
 
346
+ #: gallery-plugin.php:932
347
  msgid "Border width in px, just numbers"
348
  msgstr "Ширина рамки в px, только числа"
349
 
350
+ #: gallery-plugin.php:934
351
+ #: gallery-plugin.php:936
352
  msgid "Select a border color"
353
  msgstr "Выберите цвет рамки"
354
 
355
+ #: gallery-plugin.php:942
356
  msgid "Number of images in the row"
357
  msgstr "Количество изображений в строке"
358
 
359
+ #: gallery-plugin.php:948
360
  msgid "Start slideshow"
361
  msgstr "Начать слайдшоу"
362
 
363
+ #: gallery-plugin.php:954
364
  msgid "Slideshow interval"
365
  msgstr "Интервал времени при показе слайдшоу"
366
 
367
+ #: gallery-plugin.php:962
368
  msgid "Attachment ID"
369
  msgstr "id изображения"
370
 
371
+ #: gallery-plugin.php:963
372
  msgid "Image Name"
373
  msgstr "названию изображения"
374
 
375
+ #: gallery-plugin.php:965
376
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
377
  msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
378
 
379
+ #: gallery-plugin.php:966
380
  msgid "Random"
381
  msgstr "произвольно"
382
 
383
+ #: gallery-plugin.php:970
384
  msgid "Sort images"
385
  msgstr "Сортировать изображения"
386
 
387
+ #: gallery-plugin.php:972
388
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
389
  msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
390
 
391
+ #: gallery-plugin.php:973
392
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
393
  msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
394
 
395
+ #: gallery-plugin.php:977
396
  msgid "Display text above the image"
397
  msgstr "Отображение текста над изображением"
398
 
399
+ #: gallery-plugin.php:979
400
  msgid "If you want to display text just in a lightbox"
401
  msgstr "Если вы хотите отображать текст только в лайтбоксе"
402
 
403
+ #: gallery-plugin.php:983
404
  msgid "Display the Back link"
405
  msgstr "Отображать ссылку Вернуться"
406
 
407
+ #: gallery-plugin.php:989
408
  msgid "Display the Back link in the shortcode"
409
  msgstr "Отображаться ссылку Вернуться в шорткоде"
410
 
411
+ #: gallery-plugin.php:995
412
  msgid "The Back link text"
413
  msgstr "Текст для ссылки Вернуться"
414
 
415
+ #: gallery-plugin.php:1001
416
  msgid "The Back link URL"
417
  msgstr "URL для ссылки Вернуться"
418
 
419
+ #: gallery-plugin.php:1003
420
  msgid "Gallery page (Page with Gallery Template)"
421
  msgstr "Страница галереи (Страница с Gallery Template)"
422
 
423
+ #: gallery-plugin.php:1005
424
  msgid "(Full URL to custom page)"
425
  msgstr "(Полная ссылка на пользовательскую страницу)"
426
 
427
+ #: gallery-plugin.php:1009
428
  msgid "The Read More link text"
429
  msgstr "Текст для ссылки Вернуться"
430
 
431
+ #: gallery-plugin.php:1017
432
+ msgid "Display Like buttons in the lightbox"
433
+ msgstr "Отображать Like кнопки в лайтбоксе"
434
+
435
+ #: gallery-plugin.php:1019
436
+ msgid "FaceBook"
437
+ msgstr "FaceBook"
438
+
439
+ #: gallery-plugin.php:1020
440
+ msgid "Twitter"
441
+ msgstr "Twitter"
442
+
443
+ #: gallery-plugin.php:1021
444
+ msgid "Pinterest"
445
+ msgstr "Pinterest"
446
+
447
+ #: gallery-plugin.php:1022
448
+ msgid "Google +1"
449
+ msgstr "Google +1"
450
+
451
+ #: gallery-plugin.php:1035
452
  msgid "Save Changes"
453
  msgstr "Сохранить изменения"
454
 
455
+ #: gallery-plugin.php:1048
456
  msgid "FAQ"
457
  msgstr "FAQ"
458
 
459
+ #: gallery-plugin.php:1049
460
  msgid "Support"
461
  msgstr "Поддержка"
462
 
463
+ #: gallery-plugin.php:1256
464
  #: template/gallery-single-template.php:76
465
  msgid "Sorry, nothing found."
466
  msgstr "Извините, ничего не найдено."
467
 
468
+ #: gallery-plugin.php:1278
469
  #: template/gallery-single-template.php:101
470
  msgid "Download high resolution image"
471
  msgstr "Скачать изображение в высоком разрешении"
languages/gallery-sr_RS.mo CHANGED
Binary file
languages/gallery-sr_RS.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: 2013-05-28 16:03+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Radovan Georgijevic <http://www.georgijevic.info>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" Nisu pronađeni u direktorijumu teme. Prekopirajte ih iz direktorijuma `/ wp-content/plugins/gallery-plugin/template /` u direktorijum vaše temekako bi dodatak Galerija ispravno funkcionisao"
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerije"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Galerija"
33
 
@@ -99,7 +99,7 @@ msgid "Please make a choice"
99
  msgstr ""
100
 
101
  #: gallery-plugin.php:228
102
- #: gallery-plugin.php:959
103
  #, fuzzy
104
  msgid "Sort images by"
105
  msgstr "Izboj slike u redu"
@@ -171,317 +171,339 @@ msgid "Publishing"
171
  msgstr "Javno"
172
 
173
  #: gallery-plugin.php:483
174
- #: gallery-plugin.php:963
175
  msgid "Date"
176
  msgstr "Datum"
177
 
178
- #: gallery-plugin.php:652
179
  #, fuzzy
180
  msgid "Pro plugins"
181
  msgstr "Preporučeni dodaci"
182
 
183
- #: gallery-plugin.php:655
184
- #: gallery-plugin.php:681
185
  msgid "Activated plugins"
186
  msgstr "Aktivni dodaci"
187
 
188
- #: gallery-plugin.php:657
189
- #: gallery-plugin.php:665
190
- #: gallery-plugin.php:673
191
- #: gallery-plugin.php:683
192
- #: gallery-plugin.php:691
193
- #: gallery-plugin.php:699
194
  msgid "Read more"
195
  msgstr "Čitaj više..."
196
 
197
- #: gallery-plugin.php:657
198
- #: gallery-plugin.php:683
199
- #: gallery-plugin.php:1028
200
- #: gallery-plugin.php:1043
201
  msgid "Settings"
202
  msgstr "Podešavanja"
203
 
204
- #: gallery-plugin.php:663
205
- #: gallery-plugin.php:689
206
  msgid "Installed plugins"
207
  msgstr "Instalirani dodaci"
208
 
209
- #: gallery-plugin.php:671
210
- #: gallery-plugin.php:697
211
  msgid "Recommended plugins"
212
  msgstr "Preporučeni dodaci"
213
 
214
- #: gallery-plugin.php:673
215
  msgid "Purchase"
216
  msgstr ""
217
 
218
- #: gallery-plugin.php:678
219
  #, fuzzy
220
  msgid "Free plugins"
221
  msgstr "Preporučeni dodaci"
222
 
223
- #: gallery-plugin.php:699
224
  msgid "Download"
225
  msgstr "Preuzmi"
226
 
227
- #: gallery-plugin.php:699
228
  #, php-format
229
  msgid "Install %s"
230
  msgstr "Instaliraj %s"
231
 
232
- #: gallery-plugin.php:699
233
  msgid "Install now from wordpress.org"
234
  msgstr "Instaliraj sa wordpress.org"
235
 
236
- #: gallery-plugin.php:704
237
  #, fuzzy
238
  msgid "If you have any questions, please contact us via"
239
  msgstr "Ako imate bilo kakva pitanja, kontaktirajte nas na mejl plugin@bestwebsoft.com ili poopunite kontakt formu na našem sajtu"
240
 
241
- #: gallery-plugin.php:739
242
  #, fuzzy
243
  msgid "See images &raquo;"
244
  msgstr "Vidi sliku &raquo;"
245
 
246
- #: gallery-plugin.php:838
247
  #, fuzzy
248
  msgid "Settings are saved"
249
  msgstr "Opcije sačuvane"
250
 
251
- #: gallery-plugin.php:852
252
  #, fuzzy
253
  msgid "Gallery Settings"
254
  msgstr "Opcje Galerije"
255
 
256
- #: gallery-plugin.php:855
257
  #, fuzzy
258
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
259
  msgstr "Ako želite da dodate Jednu Galeriju na vašu stranicu ili u članak, jednostavno kopirajte i postavite ovaj kratak kod u sadržaj članke ili strane:"
260
 
261
- #: gallery-plugin.php:859
262
  #, fuzzy
263
  msgid "Image size for the album cover"
264
  msgstr "Veličina za naslovnu albuma "
265
 
266
- #: gallery-plugin.php:861
267
- #: gallery-plugin.php:869
268
- #: gallery-plugin.php:882
269
  #, fuzzy
270
  msgid "Image size"
271
  msgstr "Naziv veličine slike"
272
 
273
- #: gallery-plugin.php:862
274
- #: gallery-plugin.php:870
275
  msgid "Width (in px)"
276
  msgstr "Širina (u px)"
277
 
278
- #: gallery-plugin.php:863
279
- #: gallery-plugin.php:871
280
  msgid "Height (in px)"
281
  msgstr "Visina (u px)"
282
 
283
- #: gallery-plugin.php:867
284
  #, fuzzy
285
  msgid "Gallery image size"
286
  msgstr "Galerije"
287
 
288
- #: gallery-plugin.php:875
289
  #, fuzzy
290
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
291
  msgstr "WordPress će napraviti kopiju sažetka posta sa naznačenim dimenzijama kada dodate novu sliku."
292
 
293
- #: gallery-plugin.php:880
294
  msgid "Gallery image size in the lightbox"
295
  msgstr ""
296
 
297
- #: gallery-plugin.php:883
298
  #, fuzzy
299
  msgid "Max width (in px)"
300
  msgstr "Širina (u px)"
301
 
302
- #: gallery-plugin.php:884
303
  #, fuzzy
304
  msgid "Max height (in px)"
305
  msgstr "Visina (u px)"
306
 
307
- #: gallery-plugin.php:885
308
  msgid "Display a full size image in the lightbox"
309
  msgstr ""
310
 
311
- #: gallery-plugin.php:889
312
  msgid "Crop position"
313
  msgstr ""
314
 
315
- #: gallery-plugin.php:891
316
  msgid "Horizontal"
317
  msgstr ""
318
 
319
- #: gallery-plugin.php:893
320
  msgid "left"
321
  msgstr ""
322
 
323
- #: gallery-plugin.php:894
324
- #: gallery-plugin.php:901
325
  msgid "center"
326
  msgstr ""
327
 
328
- #: gallery-plugin.php:895
329
  msgid "right"
330
  msgstr ""
331
 
332
- #: gallery-plugin.php:898
333
  msgid "Vertical"
334
  msgstr ""
335
 
336
- #: gallery-plugin.php:900
337
  msgid "top"
338
  msgstr ""
339
 
340
- #: gallery-plugin.php:902
341
  msgid "bottom"
342
  msgstr ""
343
 
344
- #: gallery-plugin.php:907
345
  msgid "Lightbox background"
346
  msgstr ""
347
 
348
- #: gallery-plugin.php:909
349
  msgid "Default"
350
  msgstr ""
351
 
352
- #: gallery-plugin.php:910
353
  msgid "Background transparency (from 0 to 1)"
354
  msgstr ""
355
 
356
- #: gallery-plugin.php:912
357
  msgid "Select a background color"
358
  msgstr ""
359
 
360
- #: gallery-plugin.php:914
361
  msgid "Background color"
362
  msgstr ""
363
 
364
- #: gallery-plugin.php:921
 
365
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
366
  msgstr ""
367
 
368
- #: gallery-plugin.php:928
369
  msgid "Images with border"
370
  msgstr ""
371
 
372
- #: gallery-plugin.php:931
373
  msgid "Border width in px, just numbers"
374
  msgstr ""
375
 
376
- #: gallery-plugin.php:933
377
- #: gallery-plugin.php:935
378
  msgid "Select a border color"
379
  msgstr ""
380
 
381
- #: gallery-plugin.php:941
382
  #, fuzzy
383
  msgid "Number of images in the row"
384
  msgstr "Izboj slike u redu"
385
 
386
- #: gallery-plugin.php:947
387
  msgid "Start slideshow"
388
  msgstr "Započni prikaz slajdova"
389
 
390
- #: gallery-plugin.php:953
391
  msgid "Slideshow interval"
392
  msgstr "Interval prikaza slajdova"
393
 
394
- #: gallery-plugin.php:961
395
  #, fuzzy
396
  msgid "Attachment ID"
397
  msgstr "id priveska"
398
 
399
- #: gallery-plugin.php:962
400
  #, fuzzy
401
  msgid "Image Name"
402
  msgstr "Slika"
403
 
404
- #: gallery-plugin.php:964
405
  #, fuzzy
406
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
407
  msgstr "redosled privezaka (celobrojna polja Insert / Upload Media Gallery)"
408
 
409
- #: gallery-plugin.php:965
410
  #, fuzzy
411
  msgid "Random"
412
  msgstr "nasumično"
413
 
414
- #: gallery-plugin.php:969
415
  #, fuzzy
416
  msgid "Sort images"
417
  msgstr "Izboj slike u redu"
418
 
419
- #: gallery-plugin.php:971
420
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
421
  msgstr "ASC (rastući raspored od najnižih do najviših vrednosti - 1, 2, 3, a, b, c)"
422
 
423
- #: gallery-plugin.php:972
424
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
425
  msgstr "DESC (opadajući raspored od naviših do najnižih vrednosti do - 3, 2, 1, a, b, c)"
426
 
427
- #: gallery-plugin.php:976
428
  msgid "Display text above the image"
429
  msgstr ""
430
 
431
- #: gallery-plugin.php:978
432
  msgid "If you want to display text just in a lightbox"
433
  msgstr ""
434
 
435
- #: gallery-plugin.php:982
436
  #, fuzzy
437
  msgid "Display the Back link"
438
  msgstr "Prikaži Povratnu vezu"
439
 
440
- #: gallery-plugin.php:988
441
  #, fuzzy
442
  msgid "Display the Back link in the shortcode"
443
  msgstr "Prikaži povratnu vezu ka kratak kod"
444
 
445
- #: gallery-plugin.php:994
446
  msgid "The Back link text"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1000
450
  msgid "The Back link URL"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1002
454
  msgid "Gallery page (Page with Gallery Template)"
455
  msgstr ""
456
 
457
- #: gallery-plugin.php:1004
458
  msgid "(Full URL to custom page)"
459
  msgstr ""
460
 
461
- #: gallery-plugin.php:1008
462
  #, fuzzy
463
  msgid "The Read More link text"
464
  msgstr "Etiketa za Čitaj Više vezu"
465
 
466
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Save Changes"
468
  msgstr "Sačuvaj Promene"
469
 
470
- #: gallery-plugin.php:1029
471
  msgid "FAQ"
472
  msgstr "FAQ"
473
 
474
- #: gallery-plugin.php:1030
475
  msgid "Support"
476
  msgstr "Podrška"
477
 
478
- #: gallery-plugin.php:1237
479
  #: template/gallery-single-template.php:76
480
  #, fuzzy
481
  msgid "Sorry, nothing found."
482
  msgstr "Izvinite - ništa nije pronađeno."
483
 
484
- #: gallery-plugin.php:1259
485
  #: template/gallery-single-template.php:101
486
  #, fuzzy
487
  msgid "Download high resolution image"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:17+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:17+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Radovan Georgijevic <http://www.georgijevic.info>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" Nisu pronađeni u direktorijumu teme. Prekopirajte ih iz direktorijuma `/ wp-content/plugins/gallery-plugin/template /` u direktorijum vaše temekako bi dodatak Galerija ispravno funkcionisao"
23
 
27
  msgstr "Galerije"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Galerija"
33
 
99
  msgstr ""
100
 
101
  #: gallery-plugin.php:228
102
+ #: gallery-plugin.php:960
103
  #, fuzzy
104
  msgid "Sort images by"
105
  msgstr "Izboj slike u redu"
171
  msgstr "Javno"
172
 
173
  #: gallery-plugin.php:483
174
+ #: gallery-plugin.php:964
175
  msgid "Date"
176
  msgstr "Datum"
177
 
178
+ #: gallery-plugin.php:653
179
  #, fuzzy
180
  msgid "Pro plugins"
181
  msgstr "Preporučeni dodaci"
182
 
183
+ #: gallery-plugin.php:656
184
+ #: gallery-plugin.php:682
185
  msgid "Activated plugins"
186
  msgstr "Aktivni dodaci"
187
 
188
+ #: gallery-plugin.php:658
189
+ #: gallery-plugin.php:666
190
+ #: gallery-plugin.php:674
191
+ #: gallery-plugin.php:684
192
+ #: gallery-plugin.php:692
193
+ #: gallery-plugin.php:700
194
  msgid "Read more"
195
  msgstr "Čitaj više..."
196
 
197
+ #: gallery-plugin.php:658
198
+ #: gallery-plugin.php:684
199
+ #: gallery-plugin.php:1047
200
+ #: gallery-plugin.php:1062
201
  msgid "Settings"
202
  msgstr "Podešavanja"
203
 
204
+ #: gallery-plugin.php:664
205
+ #: gallery-plugin.php:690
206
  msgid "Installed plugins"
207
  msgstr "Instalirani dodaci"
208
 
209
+ #: gallery-plugin.php:672
210
+ #: gallery-plugin.php:698
211
  msgid "Recommended plugins"
212
  msgstr "Preporučeni dodaci"
213
 
214
+ #: gallery-plugin.php:674
215
  msgid "Purchase"
216
  msgstr ""
217
 
218
+ #: gallery-plugin.php:679
219
  #, fuzzy
220
  msgid "Free plugins"
221
  msgstr "Preporučeni dodaci"
222
 
223
+ #: gallery-plugin.php:700
224
  msgid "Download"
225
  msgstr "Preuzmi"
226
 
227
+ #: gallery-plugin.php:700
228
  #, php-format
229
  msgid "Install %s"
230
  msgstr "Instaliraj %s"
231
 
232
+ #: gallery-plugin.php:700
233
  msgid "Install now from wordpress.org"
234
  msgstr "Instaliraj sa wordpress.org"
235
 
236
+ #: gallery-plugin.php:705
237
  #, fuzzy
238
  msgid "If you have any questions, please contact us via"
239
  msgstr "Ako imate bilo kakva pitanja, kontaktirajte nas na mejl plugin@bestwebsoft.com ili poopunite kontakt formu na našem sajtu"
240
 
241
+ #: gallery-plugin.php:740
242
  #, fuzzy
243
  msgid "See images &raquo;"
244
  msgstr "Vidi sliku &raquo;"
245
 
246
+ #: gallery-plugin.php:839
247
  #, fuzzy
248
  msgid "Settings are saved"
249
  msgstr "Opcije sačuvane"
250
 
251
+ #: gallery-plugin.php:853
252
  #, fuzzy
253
  msgid "Gallery Settings"
254
  msgstr "Opcje Galerije"
255
 
256
+ #: gallery-plugin.php:856
257
  #, fuzzy
258
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
259
  msgstr "Ako želite da dodate Jednu Galeriju na vašu stranicu ili u članak, jednostavno kopirajte i postavite ovaj kratak kod u sadržaj članke ili strane:"
260
 
261
+ #: gallery-plugin.php:860
262
  #, fuzzy
263
  msgid "Image size for the album cover"
264
  msgstr "Veličina za naslovnu albuma "
265
 
266
+ #: gallery-plugin.php:862
267
+ #: gallery-plugin.php:870
268
+ #: gallery-plugin.php:883
269
  #, fuzzy
270
  msgid "Image size"
271
  msgstr "Naziv veličine slike"
272
 
273
+ #: gallery-plugin.php:863
274
+ #: gallery-plugin.php:871
275
  msgid "Width (in px)"
276
  msgstr "Širina (u px)"
277
 
278
+ #: gallery-plugin.php:864
279
+ #: gallery-plugin.php:872
280
  msgid "Height (in px)"
281
  msgstr "Visina (u px)"
282
 
283
+ #: gallery-plugin.php:868
284
  #, fuzzy
285
  msgid "Gallery image size"
286
  msgstr "Galerije"
287
 
288
+ #: gallery-plugin.php:876
289
  #, fuzzy
290
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
291
  msgstr "WordPress će napraviti kopiju sažetka posta sa naznačenim dimenzijama kada dodate novu sliku."
292
 
293
+ #: gallery-plugin.php:881
294
  msgid "Gallery image size in the lightbox"
295
  msgstr ""
296
 
297
+ #: gallery-plugin.php:884
298
  #, fuzzy
299
  msgid "Max width (in px)"
300
  msgstr "Širina (u px)"
301
 
302
+ #: gallery-plugin.php:885
303
  #, fuzzy
304
  msgid "Max height (in px)"
305
  msgstr "Visina (u px)"
306
 
307
+ #: gallery-plugin.php:886
308
  msgid "Display a full size image in the lightbox"
309
  msgstr ""
310
 
311
+ #: gallery-plugin.php:890
312
  msgid "Crop position"
313
  msgstr ""
314
 
315
+ #: gallery-plugin.php:892
316
  msgid "Horizontal"
317
  msgstr ""
318
 
319
+ #: gallery-plugin.php:894
320
  msgid "left"
321
  msgstr ""
322
 
323
+ #: gallery-plugin.php:895
324
+ #: gallery-plugin.php:902
325
  msgid "center"
326
  msgstr ""
327
 
328
+ #: gallery-plugin.php:896
329
  msgid "right"
330
  msgstr ""
331
 
332
+ #: gallery-plugin.php:899
333
  msgid "Vertical"
334
  msgstr ""
335
 
336
+ #: gallery-plugin.php:901
337
  msgid "top"
338
  msgstr ""
339
 
340
+ #: gallery-plugin.php:903
341
  msgid "bottom"
342
  msgstr ""
343
 
344
+ #: gallery-plugin.php:908
345
  msgid "Lightbox background"
346
  msgstr ""
347
 
348
+ #: gallery-plugin.php:910
349
  msgid "Default"
350
  msgstr ""
351
 
352
+ #: gallery-plugin.php:911
353
  msgid "Background transparency (from 0 to 1)"
354
  msgstr ""
355
 
356
+ #: gallery-plugin.php:913
357
  msgid "Select a background color"
358
  msgstr ""
359
 
360
+ #: gallery-plugin.php:915
361
  msgid "Background color"
362
  msgstr ""
363
 
364
+ #: gallery-plugin.php:922
365
+ #: gallery-plugin.php:1027
366
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
367
  msgstr ""
368
 
369
+ #: gallery-plugin.php:929
370
  msgid "Images with border"
371
  msgstr ""
372
 
373
+ #: gallery-plugin.php:932
374
  msgid "Border width in px, just numbers"
375
  msgstr ""
376
 
377
+ #: gallery-plugin.php:934
378
+ #: gallery-plugin.php:936
379
  msgid "Select a border color"
380
  msgstr ""
381
 
382
+ #: gallery-plugin.php:942
383
  #, fuzzy
384
  msgid "Number of images in the row"
385
  msgstr "Izboj slike u redu"
386
 
387
+ #: gallery-plugin.php:948
388
  msgid "Start slideshow"
389
  msgstr "Započni prikaz slajdova"
390
 
391
+ #: gallery-plugin.php:954
392
  msgid "Slideshow interval"
393
  msgstr "Interval prikaza slajdova"
394
 
395
+ #: gallery-plugin.php:962
396
  #, fuzzy
397
  msgid "Attachment ID"
398
  msgstr "id priveska"
399
 
400
+ #: gallery-plugin.php:963
401
  #, fuzzy
402
  msgid "Image Name"
403
  msgstr "Slika"
404
 
405
+ #: gallery-plugin.php:965
406
  #, fuzzy
407
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
408
  msgstr "redosled privezaka (celobrojna polja Insert / Upload Media Gallery)"
409
 
410
+ #: gallery-plugin.php:966
411
  #, fuzzy
412
  msgid "Random"
413
  msgstr "nasumično"
414
 
415
+ #: gallery-plugin.php:970
416
  #, fuzzy
417
  msgid "Sort images"
418
  msgstr "Izboj slike u redu"
419
 
420
+ #: gallery-plugin.php:972
421
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
422
  msgstr "ASC (rastući raspored od najnižih do najviših vrednosti - 1, 2, 3, a, b, c)"
423
 
424
+ #: gallery-plugin.php:973
425
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
426
  msgstr "DESC (opadajući raspored od naviših do najnižih vrednosti do - 3, 2, 1, a, b, c)"
427
 
428
+ #: gallery-plugin.php:977
429
  msgid "Display text above the image"
430
  msgstr ""
431
 
432
+ #: gallery-plugin.php:979
433
  msgid "If you want to display text just in a lightbox"
434
  msgstr ""
435
 
436
+ #: gallery-plugin.php:983
437
  #, fuzzy
438
  msgid "Display the Back link"
439
  msgstr "Prikaži Povratnu vezu"
440
 
441
+ #: gallery-plugin.php:989
442
  #, fuzzy
443
  msgid "Display the Back link in the shortcode"
444
  msgstr "Prikaži povratnu vezu ka kratak kod"
445
 
446
+ #: gallery-plugin.php:995
447
  msgid "The Back link text"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1001
451
  msgid "The Back link URL"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1003
455
  msgid "Gallery page (Page with Gallery Template)"
456
  msgstr ""
457
 
458
+ #: gallery-plugin.php:1005
459
  msgid "(Full URL to custom page)"
460
  msgstr ""
461
 
462
+ #: gallery-plugin.php:1009
463
  #, fuzzy
464
  msgid "The Read More link text"
465
  msgstr "Etiketa za Čitaj Više vezu"
466
 
467
+ #: gallery-plugin.php:1017
468
+ msgid "Display Like buttons in the lightbox"
469
+ msgstr ""
470
+
471
+ #: gallery-plugin.php:1019
472
+ msgid "FaceBook"
473
+ msgstr ""
474
+
475
+ #: gallery-plugin.php:1020
476
+ #, fuzzy
477
+ msgid "Twitter"
478
+ msgstr "Naslov"
479
+
480
+ #: gallery-plugin.php:1021
481
+ msgid "Pinterest"
482
+ msgstr ""
483
+
484
+ #: gallery-plugin.php:1022
485
+ msgid "Google +1"
486
+ msgstr ""
487
+
488
+ #: gallery-plugin.php:1035
489
  msgid "Save Changes"
490
  msgstr "Sačuvaj Promene"
491
 
492
+ #: gallery-plugin.php:1048
493
  msgid "FAQ"
494
  msgstr "FAQ"
495
 
496
+ #: gallery-plugin.php:1049
497
  msgid "Support"
498
  msgstr "Podrška"
499
 
500
+ #: gallery-plugin.php:1256
501
  #: template/gallery-single-template.php:76
502
  #, fuzzy
503
  msgid "Sorry, nothing found."
504
  msgstr "Izvinite - ništa nije pronađeno."
505
 
506
+ #: gallery-plugin.php:1278
507
  #: template/gallery-single-template.php:101
508
  #, fuzzy
509
  msgid "Download high resolution image"
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: 2013-05-28 16:03+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Галереi"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
@@ -96,7 +96,7 @@ msgid "Please make a choice"
96
  msgstr ""
97
 
98
  #: gallery-plugin.php:228
99
- #: gallery-plugin.php:959
100
  #, fuzzy
101
  msgid "Sort images by"
102
  msgstr "Кількість зображень у рядку"
@@ -165,310 +165,332 @@ msgid "Publishing"
165
  msgstr "Громадськості"
166
 
167
  #: gallery-plugin.php:483
168
- #: gallery-plugin.php:963
169
  msgid "Date"
170
  msgstr "Дата "
171
 
172
- #: gallery-plugin.php:652
173
  #, fuzzy
174
  msgid "Pro plugins"
175
  msgstr "Плагіни Рекомендовані"
176
 
177
- #: gallery-plugin.php:655
178
- #: gallery-plugin.php:681
179
  msgid "Activated plugins"
180
  msgstr "Активоване плагіни"
181
 
182
- #: gallery-plugin.php:657
183
- #: gallery-plugin.php:665
184
- #: gallery-plugin.php:673
185
- #: gallery-plugin.php:683
186
- #: gallery-plugin.php:691
187
- #: gallery-plugin.php:699
188
  msgid "Read more"
189
  msgstr "Читати далі"
190
 
191
- #: gallery-plugin.php:657
192
- #: gallery-plugin.php:683
193
- #: gallery-plugin.php:1028
194
- #: gallery-plugin.php:1043
195
  msgid "Settings"
196
  msgstr "Параметри"
197
 
198
- #: gallery-plugin.php:663
199
- #: gallery-plugin.php:689
200
  msgid "Installed plugins"
201
  msgstr "Встановлених модулів"
202
 
203
- #: gallery-plugin.php:671
204
- #: gallery-plugin.php:697
205
  msgid "Recommended plugins"
206
  msgstr "Плагіни Рекомендовані"
207
 
208
- #: gallery-plugin.php:673
209
  msgid "Purchase"
210
  msgstr ""
211
 
212
- #: gallery-plugin.php:678
213
  #, fuzzy
214
  msgid "Free plugins"
215
  msgstr "Плагіни Рекомендовані"
216
 
217
- #: gallery-plugin.php:699
218
  msgid "Download"
219
  msgstr "Завантажити"
220
 
221
- #: gallery-plugin.php:699
222
  #, php-format
223
  msgid "Install %s"
224
  msgstr "Установка %s"
225
 
226
- #: gallery-plugin.php:699
227
  msgid "Install now from wordpress.org"
228
  msgstr "Установити зараз від wordpress.org"
229
 
230
- #: gallery-plugin.php:704
231
  #, fuzzy
232
  msgid "If you have any questions, please contact us via"
233
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
234
 
235
- #: gallery-plugin.php:739
236
  #, fuzzy
237
  msgid "See images &raquo;"
238
  msgstr "Дивитися фото &raquo;"
239
 
240
- #: gallery-plugin.php:838
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "Параметри зберігаються."
244
 
245
- #: gallery-plugin.php:852
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "Параметри галереї"
249
 
250
- #: gallery-plugin.php:855
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
- #: gallery-plugin.php:859
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
- #: gallery-plugin.php:861
260
- #: gallery-plugin.php:869
261
- #: gallery-plugin.php:882
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "Ім'я розмір зображення"
265
 
266
- #: gallery-plugin.php:862
267
- #: gallery-plugin.php:870
268
  msgid "Width (in px)"
269
  msgstr "Ширина (в px)"
270
 
271
- #: gallery-plugin.php:863
272
- #: gallery-plugin.php:871
273
  msgid "Height (in px)"
274
  msgstr "Висота (в px)"
275
 
276
- #: gallery-plugin.php:867
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "Галереi"
280
 
281
- #: gallery-plugin.php:875
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
285
 
286
- #: gallery-plugin.php:880
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
- #: gallery-plugin.php:883
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "Ширина (в px)"
294
 
295
- #: gallery-plugin.php:884
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "Висота (в px)"
299
 
300
- #: gallery-plugin.php:885
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
- #: gallery-plugin.php:889
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
- #: gallery-plugin.php:891
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
- #: gallery-plugin.php:893
313
  msgid "left"
314
  msgstr ""
315
 
316
- #: gallery-plugin.php:894
317
- #: gallery-plugin.php:901
318
  msgid "center"
319
  msgstr ""
320
 
321
- #: gallery-plugin.php:895
322
  msgid "right"
323
  msgstr ""
324
 
325
- #: gallery-plugin.php:898
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
- #: gallery-plugin.php:900
330
  msgid "top"
331
  msgstr ""
332
 
333
- #: gallery-plugin.php:902
334
  msgid "bottom"
335
  msgstr ""
336
 
337
- #: gallery-plugin.php:907
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
- #: gallery-plugin.php:909
342
  msgid "Default"
343
  msgstr ""
344
 
345
- #: gallery-plugin.php:910
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
- #: gallery-plugin.php:912
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
- #: gallery-plugin.php:914
354
  msgid "Background color"
355
  msgstr ""
356
 
357
- #: gallery-plugin.php:921
 
358
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
359
  msgstr ""
360
 
361
- #: gallery-plugin.php:928
362
  msgid "Images with border"
363
  msgstr ""
364
 
365
- #: gallery-plugin.php:931
366
  msgid "Border width in px, just numbers"
367
  msgstr ""
368
 
369
- #: gallery-plugin.php:933
370
- #: gallery-plugin.php:935
371
  msgid "Select a border color"
372
  msgstr ""
373
 
374
- #: gallery-plugin.php:941
375
  #, fuzzy
376
  msgid "Number of images in the row"
377
  msgstr "Кількість зображень у рядку"
378
 
379
- #: gallery-plugin.php:947
380
  msgid "Start slideshow"
381
  msgstr ""
382
 
383
- #: gallery-plugin.php:953
384
  msgid "Slideshow interval"
385
  msgstr ""
386
 
387
- #: gallery-plugin.php:961
388
  msgid "Attachment ID"
389
  msgstr ""
390
 
391
- #: gallery-plugin.php:962
392
  #, fuzzy
393
  msgid "Image Name"
394
  msgstr "Ім'я розмір зображення"
395
 
396
- #: gallery-plugin.php:964
397
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
398
  msgstr ""
399
 
400
- #: gallery-plugin.php:965
401
  msgid "Random"
402
  msgstr ""
403
 
404
- #: gallery-plugin.php:969
405
  #, fuzzy
406
  msgid "Sort images"
407
  msgstr "Кількість зображень у рядку"
408
 
409
- #: gallery-plugin.php:971
410
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:972
414
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
415
  msgstr ""
416
 
417
- #: gallery-plugin.php:976
418
  msgid "Display text above the image"
419
  msgstr ""
420
 
421
- #: gallery-plugin.php:978
422
  msgid "If you want to display text just in a lightbox"
423
  msgstr ""
424
 
425
- #: gallery-plugin.php:982
426
  msgid "Display the Back link"
427
  msgstr ""
428
 
429
- #: gallery-plugin.php:988
430
  msgid "Display the Back link in the shortcode"
431
  msgstr ""
432
 
433
- #: gallery-plugin.php:994
434
  msgid "The Back link text"
435
  msgstr ""
436
 
437
- #: gallery-plugin.php:1000
438
  msgid "The Back link URL"
439
  msgstr ""
440
 
441
- #: gallery-plugin.php:1002
442
  msgid "Gallery page (Page with Gallery Template)"
443
  msgstr ""
444
 
445
- #: gallery-plugin.php:1004
446
  msgid "(Full URL to custom page)"
447
  msgstr ""
448
 
449
- #: gallery-plugin.php:1008
450
  msgid "The Read More link text"
451
  msgstr ""
452
 
453
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid "Save Changes"
455
  msgstr "Зберегти зміни"
456
 
457
- #: gallery-plugin.php:1029
458
  msgid "FAQ"
459
  msgstr "FAQ "
460
 
461
- #: gallery-plugin.php:1030
462
  msgid "Support"
463
  msgstr "Підтримка"
464
 
465
- #: gallery-plugin.php:1237
466
  #: template/gallery-single-template.php:76
467
  #, fuzzy
468
  msgid "Sorry, nothing found."
469
  msgstr "Вибачте - нічого не знайдено."
470
 
471
- #: gallery-plugin.php:1259
472
  #: template/gallery-single-template.php:101
473
  msgid "Download high resolution image"
474
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:17+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:17+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Галереi"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
96
  msgstr ""
97
 
98
  #: gallery-plugin.php:228
99
+ #: gallery-plugin.php:960
100
  #, fuzzy
101
  msgid "Sort images by"
102
  msgstr "Кількість зображень у рядку"
165
  msgstr "Громадськості"
166
 
167
  #: gallery-plugin.php:483
168
+ #: gallery-plugin.php:964
169
  msgid "Date"
170
  msgstr "Дата "
171
 
172
+ #: gallery-plugin.php:653
173
  #, fuzzy
174
  msgid "Pro plugins"
175
  msgstr "Плагіни Рекомендовані"
176
 
177
+ #: gallery-plugin.php:656
178
+ #: gallery-plugin.php:682
179
  msgid "Activated plugins"
180
  msgstr "Активоване плагіни"
181
 
182
+ #: gallery-plugin.php:658
183
+ #: gallery-plugin.php:666
184
+ #: gallery-plugin.php:674
185
+ #: gallery-plugin.php:684
186
+ #: gallery-plugin.php:692
187
+ #: gallery-plugin.php:700
188
  msgid "Read more"
189
  msgstr "Читати далі"
190
 
191
+ #: gallery-plugin.php:658
192
+ #: gallery-plugin.php:684
193
+ #: gallery-plugin.php:1047
194
+ #: gallery-plugin.php:1062
195
  msgid "Settings"
196
  msgstr "Параметри"
197
 
198
+ #: gallery-plugin.php:664
199
+ #: gallery-plugin.php:690
200
  msgid "Installed plugins"
201
  msgstr "Встановлених модулів"
202
 
203
+ #: gallery-plugin.php:672
204
+ #: gallery-plugin.php:698
205
  msgid "Recommended plugins"
206
  msgstr "Плагіни Рекомендовані"
207
 
208
+ #: gallery-plugin.php:674
209
  msgid "Purchase"
210
  msgstr ""
211
 
212
+ #: gallery-plugin.php:679
213
  #, fuzzy
214
  msgid "Free plugins"
215
  msgstr "Плагіни Рекомендовані"
216
 
217
+ #: gallery-plugin.php:700
218
  msgid "Download"
219
  msgstr "Завантажити"
220
 
221
+ #: gallery-plugin.php:700
222
  #, php-format
223
  msgid "Install %s"
224
  msgstr "Установка %s"
225
 
226
+ #: gallery-plugin.php:700
227
  msgid "Install now from wordpress.org"
228
  msgstr "Установити зараз від wordpress.org"
229
 
230
+ #: gallery-plugin.php:705
231
  #, fuzzy
232
  msgid "If you have any questions, please contact us via"
233
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
234
 
235
+ #: gallery-plugin.php:740
236
  #, fuzzy
237
  msgid "See images &raquo;"
238
  msgstr "Дивитися фото &raquo;"
239
 
240
+ #: gallery-plugin.php:839
241
  #, fuzzy
242
  msgid "Settings are saved"
243
  msgstr "Параметри зберігаються."
244
 
245
+ #: gallery-plugin.php:853
246
  #, fuzzy
247
  msgid "Gallery Settings"
248
  msgstr "Параметри галереї"
249
 
250
+ #: gallery-plugin.php:856
251
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
252
  msgstr ""
253
 
254
+ #: gallery-plugin.php:860
255
  #, fuzzy
256
  msgid "Image size for the album cover"
257
  msgstr "Размер для "
258
 
259
+ #: gallery-plugin.php:862
260
+ #: gallery-plugin.php:870
261
+ #: gallery-plugin.php:883
262
  #, fuzzy
263
  msgid "Image size"
264
  msgstr "Ім'я розмір зображення"
265
 
266
+ #: gallery-plugin.php:863
267
+ #: gallery-plugin.php:871
268
  msgid "Width (in px)"
269
  msgstr "Ширина (в px)"
270
 
271
+ #: gallery-plugin.php:864
272
+ #: gallery-plugin.php:872
273
  msgid "Height (in px)"
274
  msgstr "Висота (в px)"
275
 
276
+ #: gallery-plugin.php:868
277
  #, fuzzy
278
  msgid "Gallery image size"
279
  msgstr "Галереi"
280
 
281
+ #: gallery-plugin.php:876
282
  #, fuzzy
283
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
284
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
285
 
286
+ #: gallery-plugin.php:881
287
  msgid "Gallery image size in the lightbox"
288
  msgstr ""
289
 
290
+ #: gallery-plugin.php:884
291
  #, fuzzy
292
  msgid "Max width (in px)"
293
  msgstr "Ширина (в px)"
294
 
295
+ #: gallery-plugin.php:885
296
  #, fuzzy
297
  msgid "Max height (in px)"
298
  msgstr "Висота (в px)"
299
 
300
+ #: gallery-plugin.php:886
301
  msgid "Display a full size image in the lightbox"
302
  msgstr ""
303
 
304
+ #: gallery-plugin.php:890
305
  msgid "Crop position"
306
  msgstr ""
307
 
308
+ #: gallery-plugin.php:892
309
  msgid "Horizontal"
310
  msgstr ""
311
 
312
+ #: gallery-plugin.php:894
313
  msgid "left"
314
  msgstr ""
315
 
316
+ #: gallery-plugin.php:895
317
+ #: gallery-plugin.php:902
318
  msgid "center"
319
  msgstr ""
320
 
321
+ #: gallery-plugin.php:896
322
  msgid "right"
323
  msgstr ""
324
 
325
+ #: gallery-plugin.php:899
326
  msgid "Vertical"
327
  msgstr ""
328
 
329
+ #: gallery-plugin.php:901
330
  msgid "top"
331
  msgstr ""
332
 
333
+ #: gallery-plugin.php:903
334
  msgid "bottom"
335
  msgstr ""
336
 
337
+ #: gallery-plugin.php:908
338
  msgid "Lightbox background"
339
  msgstr ""
340
 
341
+ #: gallery-plugin.php:910
342
  msgid "Default"
343
  msgstr ""
344
 
345
+ #: gallery-plugin.php:911
346
  msgid "Background transparency (from 0 to 1)"
347
  msgstr ""
348
 
349
+ #: gallery-plugin.php:913
350
  msgid "Select a background color"
351
  msgstr ""
352
 
353
+ #: gallery-plugin.php:915
354
  msgid "Background color"
355
  msgstr ""
356
 
357
+ #: gallery-plugin.php:922
358
+ #: gallery-plugin.php:1027
359
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
360
  msgstr ""
361
 
362
+ #: gallery-plugin.php:929
363
  msgid "Images with border"
364
  msgstr ""
365
 
366
+ #: gallery-plugin.php:932
367
  msgid "Border width in px, just numbers"
368
  msgstr ""
369
 
370
+ #: gallery-plugin.php:934
371
+ #: gallery-plugin.php:936
372
  msgid "Select a border color"
373
  msgstr ""
374
 
375
+ #: gallery-plugin.php:942
376
  #, fuzzy
377
  msgid "Number of images in the row"
378
  msgstr "Кількість зображень у рядку"
379
 
380
+ #: gallery-plugin.php:948
381
  msgid "Start slideshow"
382
  msgstr ""
383
 
384
+ #: gallery-plugin.php:954
385
  msgid "Slideshow interval"
386
  msgstr ""
387
 
388
+ #: gallery-plugin.php:962
389
  msgid "Attachment ID"
390
  msgstr ""
391
 
392
+ #: gallery-plugin.php:963
393
  #, fuzzy
394
  msgid "Image Name"
395
  msgstr "Ім'я розмір зображення"
396
 
397
+ #: gallery-plugin.php:965
398
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
399
  msgstr ""
400
 
401
+ #: gallery-plugin.php:966
402
  msgid "Random"
403
  msgstr ""
404
 
405
+ #: gallery-plugin.php:970
406
  #, fuzzy
407
  msgid "Sort images"
408
  msgstr "Кількість зображень у рядку"
409
 
410
+ #: gallery-plugin.php:972
411
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
412
  msgstr ""
413
 
414
+ #: gallery-plugin.php:973
415
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
416
  msgstr ""
417
 
418
+ #: gallery-plugin.php:977
419
  msgid "Display text above the image"
420
  msgstr ""
421
 
422
+ #: gallery-plugin.php:979
423
  msgid "If you want to display text just in a lightbox"
424
  msgstr ""
425
 
426
+ #: gallery-plugin.php:983
427
  msgid "Display the Back link"
428
  msgstr ""
429
 
430
+ #: gallery-plugin.php:989
431
  msgid "Display the Back link in the shortcode"
432
  msgstr ""
433
 
434
+ #: gallery-plugin.php:995
435
  msgid "The Back link text"
436
  msgstr ""
437
 
438
+ #: gallery-plugin.php:1001
439
  msgid "The Back link URL"
440
  msgstr ""
441
 
442
+ #: gallery-plugin.php:1003
443
  msgid "Gallery page (Page with Gallery Template)"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:1005
447
  msgid "(Full URL to custom page)"
448
  msgstr ""
449
 
450
+ #: gallery-plugin.php:1009
451
  msgid "The Read More link text"
452
  msgstr ""
453
 
454
+ #: gallery-plugin.php:1017
455
+ msgid "Display Like buttons in the lightbox"
456
+ msgstr ""
457
+
458
+ #: gallery-plugin.php:1019
459
+ msgid "FaceBook"
460
+ msgstr ""
461
+
462
+ #: gallery-plugin.php:1020
463
+ #, fuzzy
464
+ msgid "Twitter"
465
+ msgstr "Назва"
466
+
467
+ #: gallery-plugin.php:1021
468
+ msgid "Pinterest"
469
+ msgstr ""
470
+
471
+ #: gallery-plugin.php:1022
472
+ msgid "Google +1"
473
+ msgstr ""
474
+
475
+ #: gallery-plugin.php:1035
476
  msgid "Save Changes"
477
  msgstr "Зберегти зміни"
478
 
479
+ #: gallery-plugin.php:1048
480
  msgid "FAQ"
481
  msgstr "FAQ "
482
 
483
+ #: gallery-plugin.php:1049
484
  msgid "Support"
485
  msgstr "Підтримка"
486
 
487
+ #: gallery-plugin.php:1256
488
  #: template/gallery-single-template.php:76
489
  #, fuzzy
490
  msgid "Sorry, nothing found."
491
  msgstr "Вибачте - нічого не знайдено."
492
 
493
+ #: gallery-plugin.php:1278
494
  #: template/gallery-single-template.php:101
495
  msgid "Download high resolution image"
496
  msgstr ""
languages/gallery-zh_CN.mo CHANGED
Binary file
languages/gallery-zh_CN.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: 2013-05-28 16:03+0300\n"
6
- "PO-Revision-Date: 2013-05-28 16:03+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
- #: gallery-plugin.php:845
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "在您的主题目录中没有找到文件 \"gallery-template.php\" 和 \"gallery-single-template.php\"。为了图集插件的正常运行,请从目录 `/wp-content/plugins/gallery-plugin/template/` 中复制他们到您的主题目录中"
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "图库"
28
 
29
  #: gallery-plugin.php:128
30
- #: gallery-plugin.php:712
31
  msgid "Gallery"
32
  msgstr "图集"
33
 
@@ -99,7 +99,7 @@ msgid "Please make a choice"
99
  msgstr ""
100
 
101
  #: gallery-plugin.php:228
102
- #: gallery-plugin.php:959
103
  #, fuzzy
104
  msgid "Sort images by"
105
  msgstr "一行中图像的数目"
@@ -172,321 +172,343 @@ msgid "Publishing"
172
  msgstr "公共的"
173
 
174
  #: gallery-plugin.php:483
175
- #: gallery-plugin.php:963
176
  msgid "Date"
177
  msgstr "日期"
178
 
179
- #: gallery-plugin.php:652
180
  #, fuzzy
181
  msgid "Pro plugins"
182
  msgstr "推荐的插件"
183
 
184
- #: gallery-plugin.php:655
185
- #: gallery-plugin.php:681
186
  msgid "Activated plugins"
187
  msgstr "已激活的插件"
188
 
189
- #: gallery-plugin.php:657
190
- #: gallery-plugin.php:665
191
- #: gallery-plugin.php:673
192
- #: gallery-plugin.php:683
193
- #: gallery-plugin.php:691
194
- #: gallery-plugin.php:699
195
  msgid "Read more"
196
  msgstr "阅读更多"
197
 
198
- #: gallery-plugin.php:657
199
- #: gallery-plugin.php:683
200
- #: gallery-plugin.php:1028
201
- #: gallery-plugin.php:1043
202
  msgid "Settings"
203
  msgstr "设置"
204
 
205
- #: gallery-plugin.php:663
206
- #: gallery-plugin.php:689
207
  msgid "Installed plugins"
208
  msgstr "安装插件"
209
 
210
- #: gallery-plugin.php:671
211
- #: gallery-plugin.php:697
212
  msgid "Recommended plugins"
213
  msgstr "推荐的插件"
214
 
215
- #: gallery-plugin.php:673
216
  msgid "Purchase"
217
  msgstr ""
218
 
219
- #: gallery-plugin.php:678
220
  #, fuzzy
221
  msgid "Free plugins"
222
  msgstr "推荐的插件"
223
 
224
- #: gallery-plugin.php:699
225
  msgid "Download"
226
  msgstr "下载"
227
 
228
- #: gallery-plugin.php:699
229
  #, php-format
230
  msgid "Install %s"
231
  msgstr "安装 %s"
232
 
233
- #: gallery-plugin.php:699
234
  msgid "Install now from wordpress.org"
235
  msgstr "现在从 wordpress.org 安装"
236
 
237
- #: gallery-plugin.php:704
238
  #, fuzzy
239
  msgid "If you have any questions, please contact us via"
240
  msgstr "如果您有任何问题,请通过 plugin@bestwebsoft.com 或在我们的网站上填写联系表格来联系我们"
241
 
242
- #: gallery-plugin.php:739
243
  #, fuzzy
244
  msgid "See images &raquo;"
245
  msgstr "查看照片 &raquo;"
246
 
247
- #: gallery-plugin.php:838
248
  #, fuzzy
249
  msgid "Settings are saved"
250
  msgstr "选项已保存。"
251
 
252
- #: gallery-plugin.php:852
253
  #, fuzzy
254
  msgid "Gallery Settings"
255
  msgstr "图集选项"
256
 
257
- #: gallery-plugin.php:855
258
  #, fuzzy
259
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
260
  msgstr "如果您想添加一个图集到页面或公告中,仅需要将图集简码放到页面或公告的内容中即可:"
261
 
262
- #: gallery-plugin.php:859
263
  #, fuzzy
264
  msgid "Image size for the album cover"
265
  msgstr "Размер для "
266
 
267
- #: gallery-plugin.php:861
268
- #: gallery-plugin.php:869
269
- #: gallery-plugin.php:882
270
  #, fuzzy
271
  msgid "Image size"
272
  msgstr "图像尺寸名称"
273
 
274
- #: gallery-plugin.php:862
275
- #: gallery-plugin.php:870
276
  msgid "Width (in px)"
277
  msgstr "宽度(像素)"
278
 
279
- #: gallery-plugin.php:863
280
- #: gallery-plugin.php:871
281
  msgid "Height (in px)"
282
  msgstr "高度(像素)"
283
 
284
- #: gallery-plugin.php:867
285
  #, fuzzy
286
  msgid "Gallery image size"
287
  msgstr "图库"
288
 
289
- #: gallery-plugin.php:875
290
  #, fuzzy
291
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
292
  msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
293
 
294
- #: gallery-plugin.php:880
295
  msgid "Gallery image size in the lightbox"
296
  msgstr ""
297
 
298
- #: gallery-plugin.php:883
299
  #, fuzzy
300
  msgid "Max width (in px)"
301
  msgstr "宽度(像素)"
302
 
303
- #: gallery-plugin.php:884
304
  #, fuzzy
305
  msgid "Max height (in px)"
306
  msgstr "高度(像素)"
307
 
308
- #: gallery-plugin.php:885
309
  msgid "Display a full size image in the lightbox"
310
  msgstr ""
311
 
312
- #: gallery-plugin.php:889
313
  msgid "Crop position"
314
  msgstr ""
315
 
316
- #: gallery-plugin.php:891
317
  msgid "Horizontal"
318
  msgstr ""
319
 
320
- #: gallery-plugin.php:893
321
  #, fuzzy
322
  msgid "left"
323
  msgstr "删除"
324
 
325
- #: gallery-plugin.php:894
326
- #: gallery-plugin.php:901
327
  msgid "center"
328
  msgstr ""
329
 
330
- #: gallery-plugin.php:895
331
  msgid "right"
332
  msgstr ""
333
 
334
- #: gallery-plugin.php:898
335
  msgid "Vertical"
336
  msgstr ""
337
 
338
- #: gallery-plugin.php:900
339
  msgid "top"
340
  msgstr ""
341
 
342
- #: gallery-plugin.php:902
343
  msgid "bottom"
344
  msgstr ""
345
 
346
- #: gallery-plugin.php:907
347
  msgid "Lightbox background"
348
  msgstr ""
349
 
350
- #: gallery-plugin.php:909
351
  #, fuzzy
352
  msgid "Default"
353
  msgstr "删除"
354
 
355
- #: gallery-plugin.php:910
356
  msgid "Background transparency (from 0 to 1)"
357
  msgstr ""
358
 
359
- #: gallery-plugin.php:912
360
  msgid "Select a background color"
361
  msgstr ""
362
 
363
- #: gallery-plugin.php:914
364
  msgid "Background color"
365
  msgstr ""
366
 
367
- #: gallery-plugin.php:921
 
368
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
369
  msgstr ""
370
 
371
- #: gallery-plugin.php:928
372
  msgid "Images with border"
373
  msgstr "图像边缘"
374
 
375
- #: gallery-plugin.php:931
376
  msgid "Border width in px, just numbers"
377
  msgstr "边缘宽度,以像素为单位,只能使用数字"
378
 
379
- #: gallery-plugin.php:933
380
- #: gallery-plugin.php:935
381
  #, fuzzy
382
  msgid "Select a border color"
383
  msgstr "为边缘选择颜色"
384
 
385
- #: gallery-plugin.php:941
386
  #, fuzzy
387
  msgid "Number of images in the row"
388
  msgstr "一行中图像的数目"
389
 
390
- #: gallery-plugin.php:947
391
  msgid "Start slideshow"
392
  msgstr "播放幻灯片"
393
 
394
- #: gallery-plugin.php:953
395
  msgid "Slideshow interval"
396
  msgstr "幻灯片播放间隔"
397
 
398
- #: gallery-plugin.php:961
399
  #, fuzzy
400
  msgid "Attachment ID"
401
  msgstr "附件ID"
402
 
403
- #: gallery-plugin.php:962
404
  #, fuzzy
405
  msgid "Image Name"
406
  msgstr "图像"
407
 
408
- #: gallery-plugin.php:964
409
  #, fuzzy
410
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
411
  msgstr "附件顺序(插入/上传媒体图集对话框中的整型字段)"
412
 
413
- #: gallery-plugin.php:965
414
  #, fuzzy
415
  msgid "Random"
416
  msgstr "随机"
417
 
418
- #: gallery-plugin.php:969
419
  #, fuzzy
420
  msgid "Sort images"
421
  msgstr "一行中图像的数目"
422
 
423
- #: gallery-plugin.php:971
424
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
425
  msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
426
 
427
- #: gallery-plugin.php:972
428
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
429
  msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
430
 
431
- #: gallery-plugin.php:976
432
  #, fuzzy
433
  msgid "Display text above the image"
434
  msgstr "在图像上方显示文本"
435
 
436
- #: gallery-plugin.php:978
437
  msgid "If you want to display text just in a lightbox"
438
  msgstr "如果您仅想在收藏夹中显示文本"
439
 
440
- #: gallery-plugin.php:982
441
  #, fuzzy
442
  msgid "Display the Back link"
443
  msgstr "显示返回链接"
444
 
445
- #: gallery-plugin.php:988
446
  #, fuzzy
447
  msgid "Display the Back link in the shortcode"
448
  msgstr "以简码方式显示返回链接"
449
 
450
- #: gallery-plugin.php:994
451
  msgid "The Back link text"
452
  msgstr ""
453
 
454
- #: gallery-plugin.php:1000
455
  msgid "The Back link URL"
456
  msgstr ""
457
 
458
- #: gallery-plugin.php:1002
459
  msgid "Gallery page (Page with Gallery Template)"
460
  msgstr "图集页面(具有图集模板的页面)"
461
 
462
- #: gallery-plugin.php:1004
463
  msgid "(Full URL to custom page)"
464
  msgstr "(到自定义页面的完整地址)"
465
 
466
- #: gallery-plugin.php:1008
467
  #, fuzzy
468
  msgid "The Read More link text"
469
  msgstr "阅读更多链接的标签"
470
 
471
- #: gallery-plugin.php:1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  msgid "Save Changes"
473
  msgstr "保存修改"
474
 
475
- #: gallery-plugin.php:1029
476
  msgid "FAQ"
477
  msgstr "常问问题"
478
 
479
- #: gallery-plugin.php:1030
480
  msgid "Support"
481
  msgstr "支持"
482
 
483
- #: gallery-plugin.php:1237
484
  #: template/gallery-single-template.php:76
485
  #, fuzzy
486
  msgid "Sorry, nothing found."
487
  msgstr "对不起 - 没有找到。"
488
 
489
- #: gallery-plugin.php:1259
490
  #: template/gallery-single-template.php:101
491
  #, fuzzy
492
  msgid "Download high resolution image"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-07-02 16:17+0300\n"
6
+ "PO-Revision-Date: 2013-07-02 16:17+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:103
20
+ #: gallery-plugin.php:846
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr "在您的主题目录中没有找到文件 \"gallery-template.php\" 和 \"gallery-single-template.php\"。为了图集插件的正常运行,请从目录 `/wp-content/plugins/gallery-plugin/template/` 中复制他们到您的主题目录中"
23
 
27
  msgstr "图库"
28
 
29
  #: gallery-plugin.php:128
30
+ #: gallery-plugin.php:713
31
  msgid "Gallery"
32
  msgstr "图集"
33
 
99
  msgstr ""
100
 
101
  #: gallery-plugin.php:228
102
+ #: gallery-plugin.php:960
103
  #, fuzzy
104
  msgid "Sort images by"
105
  msgstr "一行中图像的数目"
172
  msgstr "公共的"
173
 
174
  #: gallery-plugin.php:483
175
+ #: gallery-plugin.php:964
176
  msgid "Date"
177
  msgstr "日期"
178
 
179
+ #: gallery-plugin.php:653
180
  #, fuzzy
181
  msgid "Pro plugins"
182
  msgstr "推荐的插件"
183
 
184
+ #: gallery-plugin.php:656
185
+ #: gallery-plugin.php:682
186
  msgid "Activated plugins"
187
  msgstr "已激活的插件"
188
 
189
+ #: gallery-plugin.php:658
190
+ #: gallery-plugin.php:666
191
+ #: gallery-plugin.php:674
192
+ #: gallery-plugin.php:684
193
+ #: gallery-plugin.php:692
194
+ #: gallery-plugin.php:700
195
  msgid "Read more"
196
  msgstr "阅读更多"
197
 
198
+ #: gallery-plugin.php:658
199
+ #: gallery-plugin.php:684
200
+ #: gallery-plugin.php:1047
201
+ #: gallery-plugin.php:1062
202
  msgid "Settings"
203
  msgstr "设置"
204
 
205
+ #: gallery-plugin.php:664
206
+ #: gallery-plugin.php:690
207
  msgid "Installed plugins"
208
  msgstr "安装插件"
209
 
210
+ #: gallery-plugin.php:672
211
+ #: gallery-plugin.php:698
212
  msgid "Recommended plugins"
213
  msgstr "推荐的插件"
214
 
215
+ #: gallery-plugin.php:674
216
  msgid "Purchase"
217
  msgstr ""
218
 
219
+ #: gallery-plugin.php:679
220
  #, fuzzy
221
  msgid "Free plugins"
222
  msgstr "推荐的插件"
223
 
224
+ #: gallery-plugin.php:700
225
  msgid "Download"
226
  msgstr "下载"
227
 
228
+ #: gallery-plugin.php:700
229
  #, php-format
230
  msgid "Install %s"
231
  msgstr "安装 %s"
232
 
233
+ #: gallery-plugin.php:700
234
  msgid "Install now from wordpress.org"
235
  msgstr "现在从 wordpress.org 安装"
236
 
237
+ #: gallery-plugin.php:705
238
  #, fuzzy
239
  msgid "If you have any questions, please contact us via"
240
  msgstr "如果您有任何问题,请通过 plugin@bestwebsoft.com 或在我们的网站上填写联系表格来联系我们"
241
 
242
+ #: gallery-plugin.php:740
243
  #, fuzzy
244
  msgid "See images &raquo;"
245
  msgstr "查看照片 &raquo;"
246
 
247
+ #: gallery-plugin.php:839
248
  #, fuzzy
249
  msgid "Settings are saved"
250
  msgstr "选项已保存。"
251
 
252
+ #: gallery-plugin.php:853
253
  #, fuzzy
254
  msgid "Gallery Settings"
255
  msgstr "图集选项"
256
 
257
+ #: gallery-plugin.php:856
258
  #, fuzzy
259
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
260
  msgstr "如果您想添加一个图集到页面或公告中,仅需要将图集简码放到页面或公告的内容中即可:"
261
 
262
+ #: gallery-plugin.php:860
263
  #, fuzzy
264
  msgid "Image size for the album cover"
265
  msgstr "Размер для "
266
 
267
+ #: gallery-plugin.php:862
268
+ #: gallery-plugin.php:870
269
+ #: gallery-plugin.php:883
270
  #, fuzzy
271
  msgid "Image size"
272
  msgstr "图像尺寸名称"
273
 
274
+ #: gallery-plugin.php:863
275
+ #: gallery-plugin.php:871
276
  msgid "Width (in px)"
277
  msgstr "宽度(像素)"
278
 
279
+ #: gallery-plugin.php:864
280
+ #: gallery-plugin.php:872
281
  msgid "Height (in px)"
282
  msgstr "高度(像素)"
283
 
284
+ #: gallery-plugin.php:868
285
  #, fuzzy
286
  msgid "Gallery image size"
287
  msgstr "图库"
288
 
289
+ #: gallery-plugin.php:876
290
  #, fuzzy
291
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
292
  msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
293
 
294
+ #: gallery-plugin.php:881
295
  msgid "Gallery image size in the lightbox"
296
  msgstr ""
297
 
298
+ #: gallery-plugin.php:884
299
  #, fuzzy
300
  msgid "Max width (in px)"
301
  msgstr "宽度(像素)"
302
 
303
+ #: gallery-plugin.php:885
304
  #, fuzzy
305
  msgid "Max height (in px)"
306
  msgstr "高度(像素)"
307
 
308
+ #: gallery-plugin.php:886
309
  msgid "Display a full size image in the lightbox"
310
  msgstr ""
311
 
312
+ #: gallery-plugin.php:890
313
  msgid "Crop position"
314
  msgstr ""
315
 
316
+ #: gallery-plugin.php:892
317
  msgid "Horizontal"
318
  msgstr ""
319
 
320
+ #: gallery-plugin.php:894
321
  #, fuzzy
322
  msgid "left"
323
  msgstr "删除"
324
 
325
+ #: gallery-plugin.php:895
326
+ #: gallery-plugin.php:902
327
  msgid "center"
328
  msgstr ""
329
 
330
+ #: gallery-plugin.php:896
331
  msgid "right"
332
  msgstr ""
333
 
334
+ #: gallery-plugin.php:899
335
  msgid "Vertical"
336
  msgstr ""
337
 
338
+ #: gallery-plugin.php:901
339
  msgid "top"
340
  msgstr ""
341
 
342
+ #: gallery-plugin.php:903
343
  msgid "bottom"
344
  msgstr ""
345
 
346
+ #: gallery-plugin.php:908
347
  msgid "Lightbox background"
348
  msgstr ""
349
 
350
+ #: gallery-plugin.php:910
351
  #, fuzzy
352
  msgid "Default"
353
  msgstr "删除"
354
 
355
+ #: gallery-plugin.php:911
356
  msgid "Background transparency (from 0 to 1)"
357
  msgstr ""
358
 
359
+ #: gallery-plugin.php:913
360
  msgid "Select a background color"
361
  msgstr ""
362
 
363
+ #: gallery-plugin.php:915
364
  msgid "Background color"
365
  msgstr ""
366
 
367
+ #: gallery-plugin.php:922
368
+ #: gallery-plugin.php:1027
369
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
370
  msgstr ""
371
 
372
+ #: gallery-plugin.php:929
373
  msgid "Images with border"
374
  msgstr "图像边缘"
375
 
376
+ #: gallery-plugin.php:932
377
  msgid "Border width in px, just numbers"
378
  msgstr "边缘宽度,以像素为单位,只能使用数字"
379
 
380
+ #: gallery-plugin.php:934
381
+ #: gallery-plugin.php:936
382
  #, fuzzy
383
  msgid "Select a border color"
384
  msgstr "为边缘选择颜色"
385
 
386
+ #: gallery-plugin.php:942
387
  #, fuzzy
388
  msgid "Number of images in the row"
389
  msgstr "一行中图像的数目"
390
 
391
+ #: gallery-plugin.php:948
392
  msgid "Start slideshow"
393
  msgstr "播放幻灯片"
394
 
395
+ #: gallery-plugin.php:954
396
  msgid "Slideshow interval"
397
  msgstr "幻灯片播放间隔"
398
 
399
+ #: gallery-plugin.php:962
400
  #, fuzzy
401
  msgid "Attachment ID"
402
  msgstr "附件ID"
403
 
404
+ #: gallery-plugin.php:963
405
  #, fuzzy
406
  msgid "Image Name"
407
  msgstr "图像"
408
 
409
+ #: gallery-plugin.php:965
410
  #, fuzzy
411
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
412
  msgstr "附件顺序(插入/上传媒体图集对话框中的整型字段)"
413
 
414
+ #: gallery-plugin.php:966
415
  #, fuzzy
416
  msgid "Random"
417
  msgstr "随机"
418
 
419
+ #: gallery-plugin.php:970
420
  #, fuzzy
421
  msgid "Sort images"
422
  msgstr "一行中图像的数目"
423
 
424
+ #: gallery-plugin.php:972
425
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
426
  msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
427
 
428
+ #: gallery-plugin.php:973
429
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
430
  msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
431
 
432
+ #: gallery-plugin.php:977
433
  #, fuzzy
434
  msgid "Display text above the image"
435
  msgstr "在图像上方显示文本"
436
 
437
+ #: gallery-plugin.php:979
438
  msgid "If you want to display text just in a lightbox"
439
  msgstr "如果您仅想在收藏夹中显示文本"
440
 
441
+ #: gallery-plugin.php:983
442
  #, fuzzy
443
  msgid "Display the Back link"
444
  msgstr "显示返回链接"
445
 
446
+ #: gallery-plugin.php:989
447
  #, fuzzy
448
  msgid "Display the Back link in the shortcode"
449
  msgstr "以简码方式显示返回链接"
450
 
451
+ #: gallery-plugin.php:995
452
  msgid "The Back link text"
453
  msgstr ""
454
 
455
+ #: gallery-plugin.php:1001
456
  msgid "The Back link URL"
457
  msgstr ""
458
 
459
+ #: gallery-plugin.php:1003
460
  msgid "Gallery page (Page with Gallery Template)"
461
  msgstr "图集页面(具有图集模板的页面)"
462
 
463
+ #: gallery-plugin.php:1005
464
  msgid "(Full URL to custom page)"
465
  msgstr "(到自定义页面的完整地址)"
466
 
467
+ #: gallery-plugin.php:1009
468
  #, fuzzy
469
  msgid "The Read More link text"
470
  msgstr "阅读更多链接的标签"
471
 
472
+ #: gallery-plugin.php:1017
473
+ msgid "Display Like buttons in the lightbox"
474
+ msgstr ""
475
+
476
+ #: gallery-plugin.php:1019
477
+ msgid "FaceBook"
478
+ msgstr ""
479
+
480
+ #: gallery-plugin.php:1020
481
+ #, fuzzy
482
+ msgid "Twitter"
483
+ msgstr "标题"
484
+
485
+ #: gallery-plugin.php:1021
486
+ msgid "Pinterest"
487
+ msgstr ""
488
+
489
+ #: gallery-plugin.php:1022
490
+ msgid "Google +1"
491
+ msgstr ""
492
+
493
+ #: gallery-plugin.php:1035
494
  msgid "Save Changes"
495
  msgstr "保存修改"
496
 
497
+ #: gallery-plugin.php:1048
498
  msgid "FAQ"
499
  msgstr "常问问题"
500
 
501
+ #: gallery-plugin.php:1049
502
  msgid "Support"
503
  msgstr "支持"
504
 
505
+ #: gallery-plugin.php:1256
506
  #: template/gallery-single-template.php:76
507
  #, fuzzy
508
  msgid "Sorry, nothing found."
509
  msgstr "对不起 - 没有找到。"
510
 
511
+ #: gallery-plugin.php:1278
512
  #: template/gallery-single-template.php:101
513
  #, fuzzy
514
  msgid "Download high resolution image"
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Gallery ===
2
  Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
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.5.1
7
- Stable tag: 3.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -52,7 +52,7 @@ This plugin makes it possible to implement as many galleries as you want into yo
52
  * Spanish (es) (thanks to Victor Garcia)
53
  * Ukrainian (uk_UA)(thanks to Ted Mosby)
54
 
55
- If you would like to create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text of PO and MO files</a> for <a href="http://support.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>.
56
 
57
  = Technical support =
58
 
@@ -144,6 +144,9 @@ and add (for the themes Twenty Eleven or Twenty Ten):
144
 
145
  == Changelog ==
146
 
 
 
 
147
  = V3.9 - 28.05.2013 =
148
  * Update : BWS plugins section is updated.
149
  * Update : The French language file is updated.
@@ -293,6 +296,9 @@ and add (for the themes Twenty Eleven or Twenty Ten):
293
 
294
  == Upgrade Notice ==
295
 
 
 
 
296
  = V3.9 =
297
  BWS plugins section is updated. The French language file is updated. We changed using the abspath to plugin_dir_path().
298
 
1
+ === Gallery ===
2
  Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
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.5.1
7
+ Stable tag: 3.9.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
52
  * Spanish (es) (thanks to Victor Garcia)
53
  * Ukrainian (uk_UA)(thanks to Ted Mosby)
54
 
55
+ If you would like to create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text of PO and MO files</a> for <a href="http://support.bestwebsoft.com" target="_blank">BestWebSoft</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>.
56
 
57
  = Technical support =
58
 
144
 
145
  == Changelog ==
146
 
147
+ = V3.9.1 - 02.07.2013 =
148
+ * Update : The French language file is updated.
149
+
150
  = V3.9 - 28.05.2013 =
151
  * Update : BWS plugins section is updated.
152
  * Update : The French language file is updated.
296
 
297
  == Upgrade Notice ==
298
 
299
+ = V3.9.1 =
300
+ The French language file is updated.
301
+
302
  = V3.9 =
303
  BWS plugins section is updated. The French language file is updated. We changed using the abspath to plugin_dir_path().
304
 
screenshot-3.jpg CHANGED
Binary file