Gallery by BestWebSoft - Version 4.0.8

Version Description

  • 22.11.2013 =
  • NEW : Ability to turn on/off using single lightbox for all galleries on the one page.
  • Update : BWS plugins section is updated.
Download this release

Release Info

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

Code changes from version 4.0.7 to 4.0.8

bws_menu/bws_menu.php CHANGED
@@ -4,7 +4,7 @@
4
  */
5
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
6
  function bws_add_menu_render() {
7
- global $wpdb, $wp_version, $title;
8
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
9
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
10
  $all_plugins = get_plugins();
@@ -55,6 +55,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
55
  $count_recomend++;
56
  }
57
  }
 
58
  $array_activate_pro = array();
59
  $array_install_pro = array();
60
  $array_recomend_pro = array();
@@ -85,6 +86,41 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
85
  $count_recomend_pro++;
86
  }
87
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  $sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
89
  $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
90
  if ( is_array( $mysql_info) )
@@ -229,9 +265,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
229
  $error = __( "Sorry, email message could not be delivered.", 'bestwebsoft' );
230
  }
231
  }
232
- ?><div class="wrap">
 
233
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
234
- <h2><?php echo $title; ?></h2>
235
  <div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
236
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
237
  <h3 style="color: blue;"><?php _e( 'Pro plugins', 'bestwebsoft' ); ?></h3>
@@ -285,7 +322,33 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
285
  <?php } ?>
286
  </div>
287
  <?php } ?>
288
- <br />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'bestwebsoft' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
290
  <div id="poststuff" class="bws_system_info_meta_box">
291
  <div class="postbox">
4
  */
5
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
6
  function bws_add_menu_render() {
7
+ global $wpdb, $wp_version;
8
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
9
  require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
10
  $all_plugins = get_plugins();
55
  $count_recomend++;
56
  }
57
  }
58
+
59
  $array_activate_pro = array();
60
  $array_install_pro = array();
61
  $array_recomend_pro = array();
86
  $count_recomend_pro++;
87
  }
88
  }
89
+ if ( $wp_version >= '3.4' ) {
90
+ $wp_list_table = _get_list_table( 'WP_Themes_List_Table' );
91
+ $wp_list_table->prepare_items();
92
+ $current_theme = wp_get_theme();
93
+ $array_activate_theme = array();
94
+ $array_install_theme = array();
95
+ $array_recomend_theme = array();
96
+ $count_activate_theme = $count_install_theme = $count_recomend_theme = 0;
97
+ $array_theme = array(
98
+ array( 'central', 'Central', 'http://bestwebsoft.com/theme/central/', 'http://bestwebsoft.com/theme/central/#download', '/wp-admin/theme-install.php?tab=search&s=Central&search=Search' ),
99
+ array( 'simple-classic', 'Simple Classic', 'http://bestwebsoft.com/theme/simple-classic/', 'http://bestwebsoft.com/theme/simple-classic/#download', '/wp-admin/theme-install.php?tab=search&type=term&s=Simple+Classic&search=Search' ),
100
+ array( 'reddish', 'Reddish', 'http://bestwebsoft.com/theme/reddish/', 'http://bestwebsoft.com/theme/reddish/#download', '/wp-admin/theme-install.php?tab=search&type=term&s=reddish&search=Search' ),
101
+ array( 'wordpost', 'Wordpost', 'http://bestwebsoft.com/theme/wordpost/', 'http://bestwebsoft.com/theme/wordpost/#download', '/wp-admin/theme-install.php?tab=search&type=term&s=Wordpost&search=Search' )
102
+ );
103
+ foreach ( $array_theme as $theme ) {
104
+ if ( $current_theme->get( 'Name' ) == $theme[1] ) {
105
+ $array_activate_theme[ $count_activate_theme ]["title"] = $theme[1];
106
+ $array_activate_theme[ $count_activate_theme ]["link"] = $theme[2];
107
+ $array_activate_theme[ $count_activate_theme ]["href"] = $theme[3];
108
+ $count_activate_theme++;
109
+ } elseif ( array_key_exists( $theme[0], $wp_list_table->items ) ) {
110
+ $array_install_theme[ $count_install_theme ]["title"] = $theme[1];
111
+ $array_install_theme[ $count_install_theme ]["link"] = $theme[2];
112
+ $array_install_theme[ $count_install_theme ]["href"] = $theme[3];
113
+ $count_install_theme++;
114
+ } else {
115
+ $array_recomend_theme[ $count_recomend_theme ]["title"] = $theme[1];
116
+ $array_recomend_theme[ $count_recomend_theme ]["link"] = $theme[2];
117
+ $array_recomend_theme[ $count_recomend_theme ]["href"] = $theme[3];
118
+ $array_recomend_theme[ $count_recomend_theme ]["slug"] = $theme[4];
119
+ $count_recomend_theme++;
120
+ }
121
+ }
122
+ }
123
+
124
  $sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
125
  $mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
126
  if ( is_array( $mysql_info) )
265
  $error = __( "Sorry, email message could not be delivered.", 'bestwebsoft' );
266
  }
267
  }
268
+ ?>
269
+ <div class="wrap">
270
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
271
+ <h2>BestWebSoft</h2>
272
  <div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
273
  <div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
274
  <h3 style="color: blue;"><?php _e( 'Pro plugins', 'bestwebsoft' ); ?></h3>
322
  <?php } ?>
323
  </div>
324
  <?php } ?>
325
+ <br />
326
+ <?php if ( $wp_version >= '3.4' ) { ?>
327
+ <h3 style="color: green"><?php _e( 'Free themes', 'bestwebsoft' ); ?></h3>
328
+ <?php if ( 0 < $count_activate_theme ) { ?>
329
+ <div style="padding-left:15px;">
330
+ <h4><?php _e( 'Activated theme', 'bestwebsoft' ); ?></h4>
331
+ <div style="float:left; width:200px;"><?php echo $array_activate_theme[0]["title"]; ?></div> <p><a href="<?php echo $array_activate_theme[0]["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a> <a href="<?php echo wp_customize_url(); ?>" title="<?php echo esc_attr( sprintf( __( 'Customize &#8220;%s&#8221;' ), $current_theme->display('Name') ) ); ?>"><?php _e( 'Customize' ); ?></a></p>
332
+ </div>
333
+ <?php } ?>
334
+ <?php if ( 0 < $count_install_theme ) { ?>
335
+ <div style="padding-left:15px;">
336
+ <h4><?php _e( 'Installed themes', 'bestwebsoft' ); ?></h4>
337
+ <?php foreach ( $array_install_theme as $install_theme ) { ?>
338
+ <div style="float:left; width:200px;"><?php echo $install_theme["title"]; ?></div> <p><a href="<?php echo $install_theme["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a></p>
339
+ <?php } ?>
340
+ </div>
341
+ <?php } ?>
342
+ <?php if ( 0 < $count_recomend_theme ) { ?>
343
+ <div style="padding-left:15px;">
344
+ <h4><?php _e( 'Recommended themes', 'bestwebsoft' ); ?></h4>
345
+ <?php foreach ( $array_recomend_theme as $recomend_theme ) { ?>
346
+ <div style="float:left; width:200px;"><?php echo $recomend_theme["title"]; ?></div> <p><a href="<?php echo $recomend_theme["link"]; ?>" target="_blank"><?php echo __( "Read more", 'bestwebsoft' ); ?></a> <a href="<?php echo $recomend_theme["href"]; ?>" target="_blank"><?php echo __( "Download", 'bestwebsoft' ); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_theme["slug"]; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_theme["title"] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'bestwebsoft' ) ?></a></p>
347
+ <?php } ?>
348
+ </div>
349
+ <?php } ?>
350
+ <br />
351
+ <?php } ?>
352
  <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'bestwebsoft' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
353
  <div id="poststuff" class="bws_system_info_meta_box">
354
  <div class="postbox">
gallery-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery
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: 4.0.7
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -614,31 +614,29 @@ if ( ! function_exists( 'add_gllr_admin_menu' ) ) {
614
  if ( ! function_exists( 'register_gllr_settings' ) ) {
615
  function register_gllr_settings() {
616
  global $wpmu, $gllr_options;
617
- //global $wp_filesystem;
618
- //WP_Filesystem();
619
- //var_dump($wp_filesystem);
620
 
621
  $gllr_option_defaults = array(
622
- 'gllr_custom_size_name' => array( 'album-thumb', 'photo-thumb' ),
623
- 'gllr_custom_size_px' => array( array( 120, 80 ), array( 160, 120 ) ),
624
- 'border_images' => 1,
625
- 'border_images_width' => 10,
626
- 'border_images_color' => '#F1F1F1',
627
- 'custom_image_row_count' => 3,
628
- 'start_slideshow' => 0,
629
- 'slideshow_interval' => 2000,
630
- 'order_by' => 'menu_order',
631
- 'order' => 'ASC',
632
- 'read_more_link_text' => __( 'See images &raquo;', 'gallery' ),
633
- 'image_text' => 1,
634
- 'return_link' => 0,
635
- 'return_link_text' => 'Return to all albums',
636
- 'return_link_page' => 'gallery_template_url',
637
- 'return_link_url' => '',
638
- 'return_link_shortcode' => 0
 
639
  );
640
 
641
- // install the option defaults
642
  if ( 1 == $wpmu ) {
643
  if ( ! get_site_option( 'gllr_options' ) ) {
644
  add_site_option( 'gllr_options', $gllr_option_defaults, '', 'yes' );
@@ -648,13 +646,13 @@ if ( ! function_exists( 'register_gllr_settings' ) ) {
648
  add_option( 'gllr_options', $gllr_option_defaults, '', 'yes' );
649
  }
650
 
651
- // get options from the database
652
  if ( 1 == $wpmu )
653
  $gllr_options = get_site_option( 'gllr_options' );
654
  else
655
  $gllr_options = get_option( 'gllr_options' );
656
 
657
- // array merge incase this version has added new options
658
  $gllr_options = array_merge( $gllr_option_defaults, $gllr_options );
659
 
660
  update_option( 'gllr_options', $gllr_options );
@@ -688,7 +686,7 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
688
  $error = "";
689
  $plugin_info = get_plugin_data( __FILE__ );
690
 
691
- // Save data for settings page
692
  if ( isset( $_REQUEST['gllr_form_submit'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gllr_nonce_name' ) ) {
693
  $gllr_request_options = array();
694
  $gllr_request_options["gllr_custom_size_name"] = $gllr_options["gllr_custom_size_name"];
@@ -699,7 +697,6 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
699
  );
700
 
701
  $gllr_request_options["border_images"] = ( isset( $_REQUEST['gllr_border_images'] ) ) ? 1 : 0;
702
-
703
  $gllr_request_options["border_images_width"] = intval( trim( $_REQUEST['gllr_border_images_width'] ) );
704
  $gllr_request_options["border_images_color"] = trim( $_REQUEST['gllr_border_images_color'] );
705
 
@@ -707,21 +704,21 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
707
  if ( $gllr_request_options["custom_image_row_count"] == "" || $gllr_request_options["custom_image_row_count"] < 1 )
708
  $gllr_request_options["custom_image_row_count"] = 1;
709
 
710
- $gllr_request_options["start_slideshow"] = ( isset( $_REQUEST['gllr_start_slideshow'] ) ) ? 1 : 0;
 
 
711
 
712
- $gllr_request_options["slideshow_interval"] = $_REQUEST['gllr_slideshow_interval'];
713
- $gllr_request_options["order_by"] = $_REQUEST['gllr_order_by'];
714
- $gllr_request_options["order"] = $_REQUEST['gllr_order'];
715
 
716
  $gllr_request_options["image_text"] = ( isset( $_REQUEST['gllr_image_text'] ) ) ? 1 : 0;
717
- $gllr_request_options["return_link"] = ( isset( $_REQUEST['gllr_return_link'] ) ) ? 1 : 0;
718
-
719
- $gllr_request_options["return_link_page"] = $_REQUEST['gllr_return_link_page'];
720
- $gllr_request_options["return_link_url"] = strpos( $_REQUEST['gllr_return_link_url'], "http:" ) !== false ? trim( $_REQUEST['gllr_return_link_url'] ) : 'http://'.trim( $_REQUEST['gllr_return_link_url'] );
721
 
722
- $gllr_request_options["return_link_shortcode"] = ( isset( $_REQUEST['gllr_return_link_shortcode'] ) ) ? 1 : 0;
 
 
 
 
723
 
724
- $gllr_request_options["return_link_text"] = $_REQUEST['gllr_return_link_text'];
725
  $gllr_request_options["read_more_link_text"] = $_REQUEST['gllr_read_more_link_text'];
726
 
727
  if ( isset( $_REQUEST['gllr_add_to_search'] ) ) {
@@ -880,6 +877,12 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
880
  <input type="text" name="gllr_slideshow_interval" value="<?php echo $gllr_options["slideshow_interval"]; ?>" />
881
  </td>
882
  </tr>
 
 
 
 
 
 
883
  <tr valign="top">
884
  <th scope="row"><?php _e( 'Sort images by', 'gallery' ); ?></th>
885
  <td>
@@ -962,7 +965,7 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
962
  <span style="color: #888888;font-size: 10px;">(<?php _e( 'Using Custom Search powered by', 'gallery' ); ?> <a href="http://bestwebsoft.com/plugin/">bestwebsoft.com</a>) <a href="http://bestwebsoft.com/plugin/custom-search-plugin/"><?php _e( 'Download Custom Search', 'gallery' ); ?></a></span>
963
  <?php } ?>
964
  </td>
965
- </tr>
966
  </table>
967
  <table class="form-table gllr_pro_version" style="float: left;">
968
  <tr valign="top" class="gllr_width_labels">
@@ -1017,9 +1020,9 @@ if ( ! function_exists( 'gllr_plugin_action_links' ) ) {
1017
  if ( ! $this_plugin ) $this_plugin = plugin_basename( __FILE__ );
1018
 
1019
  if ( $file == $this_plugin ){
1020
- $settings_link = '<a href="admin.php?page=gallery-plugin.php">' . __( 'Settings', 'gallery' ) . '</a>';
1021
- array_unshift( $links, $settings_link );
1022
- }
1023
  return $links;
1024
  }
1025
  }
@@ -1131,12 +1134,11 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
1131
  global $post, $wpdb, $wp_query;
1132
  if ( $second_query->have_posts() ) : $second_query->the_post();
1133
  $attachments = get_post_thumbnail_id( $post->ID );
1134
- if( empty ( $attachments ) ) {
1135
  $attachments = get_children( 'post_parent='.$post->ID.'&post_type=attachment&post_mime_type=image&numberposts=1' );
1136
  $id = key( $attachments );
1137
  $image_attributes = wp_get_attachment_image_src( $id, 'album-thumb' );
1138
- }
1139
- else {
1140
  $image_attributes = wp_get_attachment_image_src( $attachments, 'album-thumb' );
1141
  }
1142
  ?>
@@ -1168,7 +1170,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
1168
  "post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
1169
  "post_parent" => $post->ID
1170
  ));
1171
- if( count( $posts ) > 0 ) {
1172
  $count_image_block = 0; ?>
1173
  <div class="gallery clearfix">
1174
  <?php foreach( $posts as $attachment ) {
@@ -1189,25 +1191,25 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
1189
  <div class="gllr_image_row">
1190
  <?php } ?>
1191
  <div class="gllr_image_block">
1192
- <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+$gllr_border_images; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+$gllr_border_images; ?>px;">
1193
  <?php if( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?>
1194
  <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank">
1195
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
1196
  </a>
1197
  <?php } else { ?>
1198
- <a rel="gallery_fancybox_<?php echo $post->ID; ?>" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>">
1199
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
1200
  </a>
1201
  <?php } ?>
1202
  </p>
1203
- <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+$gllr_border_images; ?>px; <?php if( 0 == $gllr_options["image_text"] ) echo "visibility:hidden;"; ?>" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
1204
  </div>
1205
- <?php if( $count_image_block%$gllr_options['custom_image_row_count'] == $gllr_options['custom_image_row_count']-1 ) { ?>
1206
  </div>
1207
  <?php }
1208
  $count_image_block++;
1209
  }
1210
- if( $count_image_block > 0 && $count_image_block%$gllr_options['custom_image_row_count'] != 0 ) { ?>
1211
  </div>
1212
  <?php } ?>
1213
  </div>
@@ -1220,8 +1222,8 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
1220
  <p class="not_found"><?php _e( 'Sorry, nothing found.', 'gallery' ); ?></p>
1221
  </div>
1222
  <?php endif; ?>
1223
- <?php if( 1 == $gllr_options['return_link_shortcode'] ) {
1224
- if( 'gallery_template_url' == $gllr_options["return_link_page"] ){
1225
  global $wpdb;
1226
  $parent = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id" ); ?>
1227
  <div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
@@ -1232,14 +1234,14 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
1232
  <script type="text/javascript">
1233
  (function($) {
1234
  $(document).ready( function() {
1235
- $( "a[rel=gallery_fancybox_<?php echo $post->ID; ?>]" ).fancybox( {
1236
  'transitionIn' : 'elastic',
1237
  'transitionOut' : 'elastic',
1238
  'titlePosition' : 'inside',
1239
  'speedIn' : 500,
1240
  'speedOut' : 300,
1241
  'titleFormat' : function( title, currentArray, currentIndex, currentOpts ) {
1242
- return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span><?php if( get_post_meta( $post->ID, 'gllr_download_link', true ) != '' ){?><br /><a href="'+$(currentOpts.orig).attr('rel')+'" target="_blank"><?php echo __('Download high resolution image', 'gallery'); ?> </a><?php } ?>';
1243
  }<?php if ( $gllr_options['start_slideshow'] == 1 ) { ?>,
1244
  'onComplete': function() {
1245
  clearTimeout( jQuery.fancybox.slider );
@@ -1440,40 +1442,63 @@ if ( ! function_exists( 'gllr_add_for_ios' ) ) {
1440
  if ( ! function_exists ( 'gllr_plugin_banner' ) ) {
1441
  function gllr_plugin_banner() {
1442
  global $hook_suffix;
1443
- $plugin_info = get_plugin_data( __FILE__ );
1444
- if ( $hook_suffix == 'plugins.php' ) {
1445
- echo '<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
1446
- <script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>
1447
- <script type="text/javascript">
1448
- (function($) {
1449
- $(document).ready( function() {
1450
- var hide_message = $.cookie( "gllr_hide_banner_on_plugin_page" );
1451
- if ( hide_message == "true" ) {
1452
- $( ".gllr_message" ).css( "display", "none" );
1453
- };
1454
- $( ".gllr_close_icon" ).click( function() {
1455
- $( ".gllr_message" ).css( "display", "none" );
1456
- $.cookie( "gllr_hide_banner_on_plugin_page", "true", { expires: 32 } );
1457
- });
1458
- });
1459
- })(jQuery);
1460
- </script>
1461
- <div class="gllr_message">
1462
- <a class="button gllr_button" target="_blank" href="http://bestwebsoft.com/plugin/gallery-pro/?k=01a04166048e9416955ce1cbe9d5ca16&pn=79&v=' . $plugin_info["Version"] . '">Learn More</a>
1463
- <div class="gllr_text">
1464
- It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!<br />
1465
- <span>Extend standard plugin functionality with new great options.</span>
1466
- </div>
1467
- <img class="gllr_close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
1468
- <img class="gllr_icon" title="" src="' . plugins_url( 'images/banner.png', __FILE__ ) . '" alt=""/>
1469
- </div>
1470
- </div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1471
  }
1472
  }
1473
  }
1474
-
1475
- register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
1476
- register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
 
1477
 
1478
  // adds "Settings" link to the plugin action page
1479
  add_filter( 'plugin_action_links', 'gllr_plugin_action_links', 10, 2 );
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: 4.0.8
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
614
  if ( ! function_exists( 'register_gllr_settings' ) ) {
615
  function register_gllr_settings() {
616
  global $wpmu, $gllr_options;
 
 
 
617
 
618
  $gllr_option_defaults = array(
619
+ 'gllr_custom_size_name' => array( 'album-thumb', 'photo-thumb' ),
620
+ 'gllr_custom_size_px' => array( array( 120, 80 ), array( 160, 120 ) ),
621
+ 'border_images' => 1,
622
+ 'border_images_width' => 10,
623
+ 'border_images_color' => '#F1F1F1',
624
+ 'custom_image_row_count' => 3,
625
+ 'start_slideshow' => 0,
626
+ 'slideshow_interval' => 2000,
627
+ 'single_lightbox_for_multiple_galleries' => 0,
628
+ 'order_by' => 'menu_order',
629
+ 'order' => 'ASC',
630
+ 'read_more_link_text' => __( 'See images &raquo;', 'gallery' ),
631
+ 'image_text' => 1,
632
+ 'return_link' => 0,
633
+ 'return_link_text' => 'Return to all albums',
634
+ 'return_link_page' => 'gallery_template_url',
635
+ 'return_link_url' => '',
636
+ 'return_link_shortcode' => 0
637
  );
638
 
639
+ /* install the option defaults */
640
  if ( 1 == $wpmu ) {
641
  if ( ! get_site_option( 'gllr_options' ) ) {
642
  add_site_option( 'gllr_options', $gllr_option_defaults, '', 'yes' );
646
  add_option( 'gllr_options', $gllr_option_defaults, '', 'yes' );
647
  }
648
 
649
+ /* get options from the database */
650
  if ( 1 == $wpmu )
651
  $gllr_options = get_site_option( 'gllr_options' );
652
  else
653
  $gllr_options = get_option( 'gllr_options' );
654
 
655
+ /* array merge incase this version has added new options */
656
  $gllr_options = array_merge( $gllr_option_defaults, $gllr_options );
657
 
658
  update_option( 'gllr_options', $gllr_options );
686
  $error = "";
687
  $plugin_info = get_plugin_data( __FILE__ );
688
 
689
+ /* Save data for settings page */
690
  if ( isset( $_REQUEST['gllr_form_submit'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gllr_nonce_name' ) ) {
691
  $gllr_request_options = array();
692
  $gllr_request_options["gllr_custom_size_name"] = $gllr_options["gllr_custom_size_name"];
697
  );
698
 
699
  $gllr_request_options["border_images"] = ( isset( $_REQUEST['gllr_border_images'] ) ) ? 1 : 0;
 
700
  $gllr_request_options["border_images_width"] = intval( trim( $_REQUEST['gllr_border_images_width'] ) );
701
  $gllr_request_options["border_images_color"] = trim( $_REQUEST['gllr_border_images_color'] );
702
 
704
  if ( $gllr_request_options["custom_image_row_count"] == "" || $gllr_request_options["custom_image_row_count"] < 1 )
705
  $gllr_request_options["custom_image_row_count"] = 1;
706
 
707
+ $gllr_request_options["start_slideshow"] = ( isset( $_REQUEST['gllr_start_slideshow'] ) ) ? 1 : 0;
708
+ $gllr_request_options["slideshow_interval"] = $_REQUEST['gllr_slideshow_interval'];
709
+ $gllr_request_options["single_lightbox_for_multiple_galleries"] = ( isset( $_REQUEST['gllr_single_lightbox_for_multiple_galleries'] ) ) ? 1 : 0;
710
 
711
+ $gllr_request_options["order_by"] = $_REQUEST['gllr_order_by'];
712
+ $gllr_request_options["order"] = $_REQUEST['gllr_order'];
 
713
 
714
  $gllr_request_options["image_text"] = ( isset( $_REQUEST['gllr_image_text'] ) ) ? 1 : 0;
 
 
 
 
715
 
716
+ $gllr_request_options["return_link"] = ( isset( $_REQUEST['gllr_return_link'] ) ) ? 1 : 0;
717
+ $gllr_request_options["return_link_page"] = $_REQUEST['gllr_return_link_page'];
718
+ $gllr_request_options["return_link_url"] = strpos( $_REQUEST['gllr_return_link_url'], "http:" ) !== false ? trim( $_REQUEST['gllr_return_link_url'] ) : 'http://'.trim( $_REQUEST['gllr_return_link_url'] );
719
+ $gllr_request_options["return_link_shortcode"] = ( isset( $_REQUEST['gllr_return_link_shortcode'] ) ) ? 1 : 0;
720
+ $gllr_request_options["return_link_text"] = $_REQUEST['gllr_return_link_text'];
721
 
 
722
  $gllr_request_options["read_more_link_text"] = $_REQUEST['gllr_read_more_link_text'];
723
 
724
  if ( isset( $_REQUEST['gllr_add_to_search'] ) ) {
877
  <input type="text" name="gllr_slideshow_interval" value="<?php echo $gllr_options["slideshow_interval"]; ?>" />
878
  </td>
879
  </tr>
880
+ <tr valign="top">
881
+ <th scope="row"><?php _e( 'Use single lightbox for multiple galleries on one page', 'gallery' ); ?> </th>
882
+ <td>
883
+ <input type="checkbox" name="gllr_single_lightbox_for_multiple_galleries" value="1" <?php if ( $gllr_options["single_lightbox_for_multiple_galleries"] == 1 ) echo 'checked="checked"'; ?> />
884
+ </td>
885
+ </tr>
886
  <tr valign="top">
887
  <th scope="row"><?php _e( 'Sort images by', 'gallery' ); ?></th>
888
  <td>
965
  <span style="color: #888888;font-size: 10px;">(<?php _e( 'Using Custom Search powered by', 'gallery' ); ?> <a href="http://bestwebsoft.com/plugin/">bestwebsoft.com</a>) <a href="http://bestwebsoft.com/plugin/custom-search-plugin/"><?php _e( 'Download Custom Search', 'gallery' ); ?></a></span>
966
  <?php } ?>
967
  </td>
968
+ </tr>
969
  </table>
970
  <table class="form-table gllr_pro_version" style="float: left;">
971
  <tr valign="top" class="gllr_width_labels">
1020
  if ( ! $this_plugin ) $this_plugin = plugin_basename( __FILE__ );
1021
 
1022
  if ( $file == $this_plugin ){
1023
+ $settings_link = '<a href="admin.php?page=gallery-plugin.php">' . __( 'Settings', 'gallery' ) . '</a>';
1024
+ array_unshift( $links, $settings_link );
1025
+ }
1026
  return $links;
1027
  }
1028
  }
1134
  global $post, $wpdb, $wp_query;
1135
  if ( $second_query->have_posts() ) : $second_query->the_post();
1136
  $attachments = get_post_thumbnail_id( $post->ID );
1137
+ if ( empty ( $attachments ) ) {
1138
  $attachments = get_children( 'post_parent='.$post->ID.'&post_type=attachment&post_mime_type=image&numberposts=1' );
1139
  $id = key( $attachments );
1140
  $image_attributes = wp_get_attachment_image_src( $id, 'album-thumb' );
1141
+ } else {
 
1142
  $image_attributes = wp_get_attachment_image_src( $attachments, 'album-thumb' );
1143
  }
1144
  ?>
1170
  "post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
1171
  "post_parent" => $post->ID
1172
  ));
1173
+ if ( count( $posts ) > 0 ) {
1174
  $count_image_block = 0; ?>
1175
  <div class="gallery clearfix">
1176
  <?php foreach( $posts as $attachment ) {
1191
  <div class="gllr_image_row">
1192
  <?php } ?>
1193
  <div class="gllr_image_block">
1194
+ <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0] + $gllr_border_images; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1] + $gllr_border_images; ?>px;">
1195
  <?php if( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?>
1196
  <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank">
1197
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
1198
  </a>
1199
  <?php } else { ?>
1200
+ <a rel="gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>">
1201
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
1202
  </a>
1203
  <?php } ?>
1204
  </p>
1205
+ <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0] + $gllr_border_images; ?>px; <?php if ( 0 == $gllr_options["image_text"] ) echo "visibility:hidden;"; ?>" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
1206
  </div>
1207
+ <?php if ( $count_image_block%$gllr_options['custom_image_row_count'] == $gllr_options['custom_image_row_count']-1 ) { ?>
1208
  </div>
1209
  <?php }
1210
  $count_image_block++;
1211
  }
1212
+ if ( $count_image_block > 0 && $count_image_block%$gllr_options['custom_image_row_count'] != 0 ) { ?>
1213
  </div>
1214
  <?php } ?>
1215
  </div>
1222
  <p class="not_found"><?php _e( 'Sorry, nothing found.', 'gallery' ); ?></p>
1223
  </div>
1224
  <?php endif; ?>
1225
+ <?php if ( 1 == $gllr_options['return_link_shortcode'] ) {
1226
+ if ( 'gallery_template_url' == $gllr_options["return_link_page"] ) {
1227
  global $wpdb;
1228
  $parent = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id" ); ?>
1229
  <div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
1234
  <script type="text/javascript">
1235
  (function($) {
1236
  $(document).ready( function() {
1237
+ $( "a[rel=gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>]" ).fancybox( {
1238
  'transitionIn' : 'elastic',
1239
  'transitionOut' : 'elastic',
1240
  'titlePosition' : 'inside',
1241
  'speedIn' : 500,
1242
  'speedOut' : 300,
1243
  'titleFormat' : function( title, currentArray, currentIndex, currentOpts ) {
1244
+ return '<span id="fancybox-title-inside">' + ( title.length ? title + '<br />' : '' ) + 'Image ' + ( currentIndex + 1 ) + ' / ' + currentArray.length + '</span><?php if( get_post_meta( $post->ID, 'gllr_download_link', true ) != '' ){?><br /><a href="' + $( currentOpts.orig ).attr( 'rel' ) + '" target="_blank"><?php echo __( 'Download high resolution image', 'gallery' ); ?> </a><?php } ?>';
1245
  }<?php if ( $gllr_options['start_slideshow'] == 1 ) { ?>,
1246
  'onComplete': function() {
1247
  clearTimeout( jQuery.fancybox.slider );
1442
  if ( ! function_exists ( 'gllr_plugin_banner' ) ) {
1443
  function gllr_plugin_banner() {
1444
  global $hook_suffix;
1445
+ if ( $hook_suffix == 'plugins.php' ) {
1446
+ $banner_array = array(
1447
+ array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
1448
+ array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
1449
+ array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
1450
+ array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
1451
+ array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
1452
+ array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
1453
+ array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
1454
+ );
1455
+ $plugin_info = get_plugin_data( __FILE__ );
1456
+ if ( ! function_exists( 'is_plugin_active_for_network' ) )
1457
+ require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
1458
+ $active_plugins = get_option( 'active_plugins' );
1459
+ $all_plugins = get_plugins();
1460
+ $this_banner = 'gllr_hide_banner_on_plugin_page';
1461
+ foreach ( $banner_array as $key => $value ) {
1462
+ if ( $this_banner == $value[0] ) {
1463
+ echo '<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
1464
+ <script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>
1465
+ <script type="text/javascript">
1466
+ (function($) {
1467
+ $(document).ready( function() {
1468
+ var hide_message = $.cookie( "gllr_hide_banner_on_plugin_page" );
1469
+ if ( hide_message == "true" ) {
1470
+ $( ".gllr_message" ).css( "display", "none" );
1471
+ };
1472
+ $( ".gllr_close_icon" ).click( function() {
1473
+ $( ".gllr_message" ).css( "display", "none" );
1474
+ $.cookie( "gllr_hide_banner_on_plugin_page", "true", { expires: 32 } );
1475
+ });
1476
+ });
1477
+ })(jQuery);
1478
+ </script>
1479
+ <div class="gllr_message">
1480
+ <a class="button gllr_button" target="_blank" href="http://bestwebsoft.com/plugin/gallery-pro/?k=01a04166048e9416955ce1cbe9d5ca16&pn=79&v=' . $plugin_info["Version"] . '">' . __( 'Learn More', 'gallery' ) . '</a>
1481
+ <div class="gllr_text">' .
1482
+ __( 'It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!', 'gallery' ) . '<br />
1483
+ <span>' . __( 'Extend standard plugin functionality with new great options.', 'gallery' ) . '</span>
1484
+ </div>
1485
+ <img class="gllr_close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
1486
+ <img class="gllr_icon" title="" src="' . plugins_url( 'images/banner.png', __FILE__ ) . '" alt=""/>
1487
+ </div>
1488
+ </div>';
1489
+ break;
1490
+ }
1491
+ if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
1492
+ break;
1493
+ }
1494
+ }
1495
  }
1496
  }
1497
  }
1498
+ // activate plugin
1499
+ register_activation_hook( __FILE__, 'gllr_plugin_install' );
1500
+ // delete plugin
1501
+ register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' );
1502
 
1503
  // adds "Settings" link to the plugin action page
1504
  add_filter( 'plugin_action_links', 'gllr_plugin_action_links', 10, 2 );
languages/gallery-bg_BG.mo CHANGED
Binary file
languages/gallery-bg_BG.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-11-01 13:08+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:09+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Petya <p@pipermagus.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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/` в папката на вашата тема, за да работи правилно приставката Gallery."
23
 
@@ -92,7 +92,7 @@ msgid "Please make a choice"
92
  msgstr "Моля, изберете"
93
 
94
  #: gallery-plugin.php:229
95
- #: gallery-plugin.php:884
96
  msgid "Sort images by"
97
  msgstr "Подреди изображенията по"
98
 
@@ -162,308 +162,325 @@ msgid "Publishing"
162
  msgstr "Публикация"
163
 
164
  #: gallery-plugin.php:506
165
- #: gallery-plugin.php:888
166
  msgid "Date"
167
  msgstr "Дата "
168
 
169
- #: gallery-plugin.php:632
170
  msgid "See images &raquo;"
171
  msgstr "Виж изображенията &raquo;"
172
 
173
- #: gallery-plugin.php:679
174
  msgid "requires"
175
  msgstr ""
176
 
177
- #: gallery-plugin.php:679
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr ""
180
 
181
- #: gallery-plugin.php:679
182
  msgid "Back to the WordPress"
183
  msgstr ""
184
 
185
- #: gallery-plugin.php:679
186
  #, fuzzy
187
  msgid "Plugins page"
188
  msgstr "Плагіни про-версії"
189
 
190
- #: gallery-plugin.php:764
191
  msgid "Settings are saved"
192
  msgstr "Настройките са съхранени"
193
 
194
- #: gallery-plugin.php:777
195
  msgid "Gallery Settings"
196
  msgstr "Настройки на галерията"
197
 
198
- #: gallery-plugin.php:780
199
  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:"
200
  msgstr "Ако искате да добавите галерия към ваша страница или пост, просто копирайте и поставете този шорткод в поста или страницата:"
201
 
202
- #: gallery-plugin.php:784
203
  msgid "Image size for the album cover"
204
  msgstr "Размер на изображението за корица на албума"
205
 
206
- #: gallery-plugin.php:786
207
- #: gallery-plugin.php:794
208
- #: gallery-plugin.php:807
209
  msgid "Image size"
210
  msgstr "Размер на изображението"
211
 
212
- #: gallery-plugin.php:787
213
- #: gallery-plugin.php:795
214
  msgid "Width (in px)"
215
  msgstr "Ширина (в px)"
216
 
217
- #: gallery-plugin.php:788
218
- #: gallery-plugin.php:796
219
  msgid "Height (in px)"
220
  msgstr "Височина (в px)"
221
 
222
- #: gallery-plugin.php:792
223
  msgid "Gallery image size"
224
  msgstr "Размер на изображението в галерия"
225
 
226
- #: gallery-plugin.php:800
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "WordPress ще създава thumbnail с указаните размери, когато качвате нова снимка."
229
 
230
- #: gallery-plugin.php:805
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Размер на изображението за lightbox"
233
 
234
- #: gallery-plugin.php:808
235
  msgid "Max width (in px)"
236
  msgstr "Макс. ширина (в px)"
237
 
238
- #: gallery-plugin.php:809
239
  msgid "Max height (in px)"
240
  msgstr "Макс. височина (в px)"
241
 
242
- #: gallery-plugin.php:810
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Показване на изображението в пълен размер в lightbox"
245
 
246
- #: gallery-plugin.php:814
247
  msgid "Crop position"
248
  msgstr "Позиция за изрязване"
249
 
250
- #: gallery-plugin.php:816
251
  msgid "Horizontal"
252
  msgstr "Хоризонтално"
253
 
254
- #: gallery-plugin.php:818
255
  msgid "left"
256
  msgstr "ляво"
257
 
258
- #: gallery-plugin.php:819
259
- #: gallery-plugin.php:826
260
  msgid "center"
261
  msgstr "център"
262
 
263
- #: gallery-plugin.php:820
264
  msgid "right"
265
  msgstr "дясно"
266
 
267
- #: gallery-plugin.php:823
268
  msgid "Vertical"
269
  msgstr "Вертикално"
270
 
271
- #: gallery-plugin.php:825
272
  msgid "top"
273
  msgstr "отгоре"
274
 
275
- #: gallery-plugin.php:827
276
  msgid "bottom"
277
  msgstr "отдолу"
278
 
279
- #: gallery-plugin.php:832
280
  msgid "Lightbox background"
281
  msgstr "Фон на lightbox"
282
 
283
- #: gallery-plugin.php:834
284
  msgid "Default"
285
  msgstr "По подразбиране"
286
 
287
- #: gallery-plugin.php:835
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Прозрачност на фона (от 0 до 1)"
290
 
291
- #: gallery-plugin.php:837
292
  msgid "Select a background color"
293
  msgstr "Изберете цвят за фон"
294
 
295
- #: gallery-plugin.php:839
296
  msgid "Background color"
297
  msgstr "Цвят на фона"
298
 
299
- #: gallery-plugin.php:846
300
- #: gallery-plugin.php:985
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Тази опция е налична в Pro версията на плъгина. За повече подробности, моля отидете на "
303
 
304
- #: gallery-plugin.php:853
305
  msgid "Images with border"
306
  msgstr "Изображения с рамка"
307
 
308
- #: gallery-plugin.php:856
309
  msgid "Border width in px, just numbers"
310
  msgstr "Ширина на рамката в пиксели, само числа"
311
 
312
- #: gallery-plugin.php:858
313
- #: gallery-plugin.php:860
314
  msgid "Select a border color"
315
  msgstr "Изберете цвят за рамката"
316
 
317
- #: gallery-plugin.php:866
318
  msgid "Number of images in the row"
319
  msgstr "Брой изображения на ред"
320
 
321
- #: gallery-plugin.php:872
322
  msgid "Start slideshow"
323
  msgstr "Слайдшоу"
324
 
325
- #: gallery-plugin.php:878
326
  msgid "Slideshow interval"
327
  msgstr "Интервал за слайдшоу"
328
 
329
- #: gallery-plugin.php:886
 
 
 
 
330
  msgid "Attachment ID"
331
  msgstr "ID на изображението"
332
 
333
- #: gallery-plugin.php:887
334
  msgid "Image Name"
335
  msgstr "Име на изображението"
336
 
337
- #: gallery-plugin.php:889
338
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
339
  msgstr "Ред за сортиране (полето за въвеждане на ред за сортиране в Insert / Upload Media Gallery)"
340
 
341
- #: gallery-plugin.php:890
342
  msgid "Random"
343
  msgstr "Произволен"
344
 
345
- #: gallery-plugin.php:894
346
  msgid "Sort images"
347
  msgstr "Подреди изображенията"
348
 
349
- #: gallery-plugin.php:896
350
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
351
  msgstr "ASC (възходящ ред - 1, 2, 3, а, б, в)"
352
 
353
- #: gallery-plugin.php:897
354
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
355
  msgstr "DESC (низходящ ред - 3, 2, 1, в, б, а)"
356
 
357
- #: gallery-plugin.php:901
358
  msgid "Display text above the image"
359
  msgstr "Показване на текст над изображението"
360
 
361
- #: gallery-plugin.php:903
362
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
363
  msgstr "Не отбелязвайте, ако искате текстът да се показва само в lightbox"
364
 
365
- #: gallery-plugin.php:907
366
  msgid "Display the Back link"
367
  msgstr "Показване на линк 'Назад'"
368
 
369
- #: gallery-plugin.php:913
370
  msgid "Display the Back link in the shortcode"
371
  msgstr "Показване на линк 'Назад' в шорткода"
372
 
373
- #: gallery-plugin.php:919
374
  msgid "The Back link text"
375
  msgstr "Текст за линка 'Назад'"
376
 
377
- #: gallery-plugin.php:925
378
  msgid "The Back link URL"
379
  msgstr "URL за линка 'Назад'"
380
 
381
- #: gallery-plugin.php:927
382
  msgid "Gallery page (Page with Gallery Template)"
383
  msgstr "Страница с галерия (страница с шаблон 'Gallery Template')"
384
 
385
- #: gallery-plugin.php:929
386
  msgid "(Full URL to custom page)"
387
  msgstr "(Пълно URL към произволна страница)"
388
 
389
- #: gallery-plugin.php:933
390
  msgid "The Read More link text"
391
  msgstr "Текст за линка 'Прочети повече'"
392
 
393
- #: gallery-plugin.php:939
394
  msgid "Add gallery to the search"
395
  msgstr ""
396
 
397
- #: gallery-plugin.php:955
398
  #: gallery-plugin.php:958
399
- #: gallery-plugin.php:962
 
400
  msgid "Using Custom Search powered by"
401
  msgstr ""
402
 
403
- #: gallery-plugin.php:958
404
  msgid "Activate Custom Search"
405
  msgstr ""
406
 
407
- #: gallery-plugin.php:962
408
  msgid "Download Custom Search"
409
  msgstr ""
410
 
411
- #: gallery-plugin.php:969
412
  msgid "Display Like buttons in the lightbox"
413
  msgstr "Показване на Like бутони в lightbox"
414
 
415
- #: gallery-plugin.php:971
416
  msgid "FaceBook"
417
  msgstr "FaceBook"
418
 
419
- #: gallery-plugin.php:972
420
  msgid "Twitter"
421
  msgstr "Twitter"
422
 
423
- #: gallery-plugin.php:973
424
  msgid "Pinterest"
425
  msgstr "Pinterest"
426
 
427
- #: gallery-plugin.php:974
428
  msgid "Google +1"
429
  msgstr "Google +1"
430
 
431
- #: gallery-plugin.php:978
432
  msgid "Slug for gallery item"
433
  msgstr "Название на елемент от галерията"
434
 
435
- #: gallery-plugin.php:980
436
  msgid "for any structure of permalinks except the default structure"
437
  msgstr "за всяка структура от пермалинковете, с изключение на структурата по подразбиране"
438
 
439
- #: gallery-plugin.php:993
440
  msgid "Save Changes"
441
  msgstr "Съхрани промените"
442
 
443
- #: gallery-plugin.php:1005
444
- #: gallery-plugin.php:1020
445
  msgid "Settings"
446
  msgstr "Настройки"
447
 
448
- #: gallery-plugin.php:1006
449
  msgid "FAQ"
450
  msgstr "Често задавани въпроси"
451
 
452
- #: gallery-plugin.php:1007
453
  msgid "Support"
454
  msgstr "Поддръжка"
455
 
456
- #: gallery-plugin.php:1220
457
- #: template/gallery-single-template.php:77
458
  msgid "Sorry, nothing found."
459
  msgstr "Съжалявам, нищо не е намерено."
460
 
461
- #: gallery-plugin.php:1242
462
- #: template/gallery-single-template.php:103
463
  msgid "Download high resolution image"
464
  msgstr "Свали изображението в цял размер"
465
 
466
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Image"
468
  msgstr "Изображение"
469
 
@@ -533,8 +550,6 @@ msgstr "Изображение"
533
  #~ msgstr "Вибачте, електронне повідомлення не може бути відправлено."
534
  #~ msgid "Activated plugins"
535
  #~ msgstr "Активовані плагіни"
536
- #~ msgid "Read more"
537
- #~ msgstr "Читати далі"
538
  #~ msgid "Installed plugins"
539
  #~ msgstr "Встановлених модулів"
540
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:29+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:29+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Petya <p@pipermagus.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:101
20
+ #: gallery-plugin.php:768
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/` в папката на вашата тема, за да работи правилно приставката Gallery."
23
 
92
  msgstr "Моля, изберете"
93
 
94
  #: gallery-plugin.php:229
95
+ #: gallery-plugin.php:887
96
  msgid "Sort images by"
97
  msgstr "Подреди изображенията по"
98
 
162
  msgstr "Публикация"
163
 
164
  #: gallery-plugin.php:506
165
+ #: gallery-plugin.php:891
166
  msgid "Date"
167
  msgstr "Дата "
168
 
169
+ #: gallery-plugin.php:630
170
  msgid "See images &raquo;"
171
  msgstr "Виж изображенията &raquo;"
172
 
173
+ #: gallery-plugin.php:677
174
  msgid "requires"
175
  msgstr ""
176
 
177
+ #: gallery-plugin.php:677
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr ""
180
 
181
+ #: gallery-plugin.php:677
182
  msgid "Back to the WordPress"
183
  msgstr ""
184
 
185
+ #: gallery-plugin.php:677
186
  #, fuzzy
187
  msgid "Plugins page"
188
  msgstr "Плагіни про-версії"
189
 
190
+ #: gallery-plugin.php:761
191
  msgid "Settings are saved"
192
  msgstr "Настройките са съхранени"
193
 
194
+ #: gallery-plugin.php:774
195
  msgid "Gallery Settings"
196
  msgstr "Настройки на галерията"
197
 
198
+ #: gallery-plugin.php:777
199
  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:"
200
  msgstr "Ако искате да добавите галерия към ваша страница или пост, просто копирайте и поставете този шорткод в поста или страницата:"
201
 
202
+ #: gallery-plugin.php:781
203
  msgid "Image size for the album cover"
204
  msgstr "Размер на изображението за корица на албума"
205
 
206
+ #: gallery-plugin.php:783
207
+ #: gallery-plugin.php:791
208
+ #: gallery-plugin.php:804
209
  msgid "Image size"
210
  msgstr "Размер на изображението"
211
 
212
+ #: gallery-plugin.php:784
213
+ #: gallery-plugin.php:792
214
  msgid "Width (in px)"
215
  msgstr "Ширина (в px)"
216
 
217
+ #: gallery-plugin.php:785
218
+ #: gallery-plugin.php:793
219
  msgid "Height (in px)"
220
  msgstr "Височина (в px)"
221
 
222
+ #: gallery-plugin.php:789
223
  msgid "Gallery image size"
224
  msgstr "Размер на изображението в галерия"
225
 
226
+ #: gallery-plugin.php:797
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "WordPress ще създава thumbnail с указаните размери, когато качвате нова снимка."
229
 
230
+ #: gallery-plugin.php:802
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Размер на изображението за lightbox"
233
 
234
+ #: gallery-plugin.php:805
235
  msgid "Max width (in px)"
236
  msgstr "Макс. ширина (в px)"
237
 
238
+ #: gallery-plugin.php:806
239
  msgid "Max height (in px)"
240
  msgstr "Макс. височина (в px)"
241
 
242
+ #: gallery-plugin.php:807
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Показване на изображението в пълен размер в lightbox"
245
 
246
+ #: gallery-plugin.php:811
247
  msgid "Crop position"
248
  msgstr "Позиция за изрязване"
249
 
250
+ #: gallery-plugin.php:813
251
  msgid "Horizontal"
252
  msgstr "Хоризонтално"
253
 
254
+ #: gallery-plugin.php:815
255
  msgid "left"
256
  msgstr "ляво"
257
 
258
+ #: gallery-plugin.php:816
259
+ #: gallery-plugin.php:823
260
  msgid "center"
261
  msgstr "център"
262
 
263
+ #: gallery-plugin.php:817
264
  msgid "right"
265
  msgstr "дясно"
266
 
267
+ #: gallery-plugin.php:820
268
  msgid "Vertical"
269
  msgstr "Вертикално"
270
 
271
+ #: gallery-plugin.php:822
272
  msgid "top"
273
  msgstr "отгоре"
274
 
275
+ #: gallery-plugin.php:824
276
  msgid "bottom"
277
  msgstr "отдолу"
278
 
279
+ #: gallery-plugin.php:829
280
  msgid "Lightbox background"
281
  msgstr "Фон на lightbox"
282
 
283
+ #: gallery-plugin.php:831
284
  msgid "Default"
285
  msgstr "По подразбиране"
286
 
287
+ #: gallery-plugin.php:832
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Прозрачност на фона (от 0 до 1)"
290
 
291
+ #: gallery-plugin.php:834
292
  msgid "Select a background color"
293
  msgstr "Изберете цвят за фон"
294
 
295
+ #: gallery-plugin.php:836
296
  msgid "Background color"
297
  msgstr "Цвят на фона"
298
 
299
+ #: gallery-plugin.php:843
300
+ #: gallery-plugin.php:988
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Тази опция е налична в Pro версията на плъгина. За повече подробности, моля отидете на "
303
 
304
+ #: gallery-plugin.php:850
305
  msgid "Images with border"
306
  msgstr "Изображения с рамка"
307
 
308
+ #: gallery-plugin.php:853
309
  msgid "Border width in px, just numbers"
310
  msgstr "Ширина на рамката в пиксели, само числа"
311
 
312
+ #: gallery-plugin.php:855
313
+ #: gallery-plugin.php:857
314
  msgid "Select a border color"
315
  msgstr "Изберете цвят за рамката"
316
 
317
+ #: gallery-plugin.php:863
318
  msgid "Number of images in the row"
319
  msgstr "Брой изображения на ред"
320
 
321
+ #: gallery-plugin.php:869
322
  msgid "Start slideshow"
323
  msgstr "Слайдшоу"
324
 
325
+ #: gallery-plugin.php:875
326
  msgid "Slideshow interval"
327
  msgstr "Интервал за слайдшоу"
328
 
329
+ #: gallery-plugin.php:881
330
+ msgid "Use single lightbox for multiple galleries on one page"
331
+ msgstr ""
332
+
333
+ #: gallery-plugin.php:889
334
  msgid "Attachment ID"
335
  msgstr "ID на изображението"
336
 
337
+ #: gallery-plugin.php:890
338
  msgid "Image Name"
339
  msgstr "Име на изображението"
340
 
341
+ #: gallery-plugin.php:892
342
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
343
  msgstr "Ред за сортиране (полето за въвеждане на ред за сортиране в Insert / Upload Media Gallery)"
344
 
345
+ #: gallery-plugin.php:893
346
  msgid "Random"
347
  msgstr "Произволен"
348
 
349
+ #: gallery-plugin.php:897
350
  msgid "Sort images"
351
  msgstr "Подреди изображенията"
352
 
353
+ #: gallery-plugin.php:899
354
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
355
  msgstr "ASC (възходящ ред - 1, 2, 3, а, б, в)"
356
 
357
+ #: gallery-plugin.php:900
358
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
359
  msgstr "DESC (низходящ ред - 3, 2, 1, в, б, а)"
360
 
361
+ #: gallery-plugin.php:904
362
  msgid "Display text above the image"
363
  msgstr "Показване на текст над изображението"
364
 
365
+ #: gallery-plugin.php:906
366
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
367
  msgstr "Не отбелязвайте, ако искате текстът да се показва само в lightbox"
368
 
369
+ #: gallery-plugin.php:910
370
  msgid "Display the Back link"
371
  msgstr "Показване на линк 'Назад'"
372
 
373
+ #: gallery-plugin.php:916
374
  msgid "Display the Back link in the shortcode"
375
  msgstr "Показване на линк 'Назад' в шорткода"
376
 
377
+ #: gallery-plugin.php:922
378
  msgid "The Back link text"
379
  msgstr "Текст за линка 'Назад'"
380
 
381
+ #: gallery-plugin.php:928
382
  msgid "The Back link URL"
383
  msgstr "URL за линка 'Назад'"
384
 
385
+ #: gallery-plugin.php:930
386
  msgid "Gallery page (Page with Gallery Template)"
387
  msgstr "Страница с галерия (страница с шаблон 'Gallery Template')"
388
 
389
+ #: gallery-plugin.php:932
390
  msgid "(Full URL to custom page)"
391
  msgstr "(Пълно URL към произволна страница)"
392
 
393
+ #: gallery-plugin.php:936
394
  msgid "The Read More link text"
395
  msgstr "Текст за линка 'Прочети повече'"
396
 
397
+ #: gallery-plugin.php:942
398
  msgid "Add gallery to the search"
399
  msgstr ""
400
 
 
401
  #: gallery-plugin.php:958
402
+ #: gallery-plugin.php:961
403
+ #: gallery-plugin.php:965
404
  msgid "Using Custom Search powered by"
405
  msgstr ""
406
 
407
+ #: gallery-plugin.php:961
408
  msgid "Activate Custom Search"
409
  msgstr ""
410
 
411
+ #: gallery-plugin.php:965
412
  msgid "Download Custom Search"
413
  msgstr ""
414
 
415
+ #: gallery-plugin.php:972
416
  msgid "Display Like buttons in the lightbox"
417
  msgstr "Показване на Like бутони в lightbox"
418
 
419
+ #: gallery-plugin.php:974
420
  msgid "FaceBook"
421
  msgstr "FaceBook"
422
 
423
+ #: gallery-plugin.php:975
424
  msgid "Twitter"
425
  msgstr "Twitter"
426
 
427
+ #: gallery-plugin.php:976
428
  msgid "Pinterest"
429
  msgstr "Pinterest"
430
 
431
+ #: gallery-plugin.php:977
432
  msgid "Google +1"
433
  msgstr "Google +1"
434
 
435
+ #: gallery-plugin.php:981
436
  msgid "Slug for gallery item"
437
  msgstr "Название на елемент от галерията"
438
 
439
+ #: gallery-plugin.php:983
440
  msgid "for any structure of permalinks except the default structure"
441
  msgstr "за всяка структура от пермалинковете, с изключение на структурата по подразбиране"
442
 
443
+ #: gallery-plugin.php:996
444
  msgid "Save Changes"
445
  msgstr "Съхрани промените"
446
 
447
+ #: gallery-plugin.php:1008
448
+ #: gallery-plugin.php:1023
449
  msgid "Settings"
450
  msgstr "Настройки"
451
 
452
+ #: gallery-plugin.php:1009
453
  msgid "FAQ"
454
  msgstr "Често задавани въпроси"
455
 
456
+ #: gallery-plugin.php:1010
457
  msgid "Support"
458
  msgstr "Поддръжка"
459
 
460
+ #: gallery-plugin.php:1222
461
+ #: template/gallery-single-template.php:76
462
  msgid "Sorry, nothing found."
463
  msgstr "Съжалявам, нищо не е намерено."
464
 
465
+ #: gallery-plugin.php:1244
466
+ #: template/gallery-single-template.php:102
467
  msgid "Download high resolution image"
468
  msgstr "Свали изображението в цял размер"
469
 
470
+ #: gallery-plugin.php:1464
471
+ #, fuzzy
472
+ msgid "Learn More"
473
+ msgstr "Читати далі"
474
+
475
+ #: gallery-plugin.php:1466
476
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
477
+ msgstr ""
478
+
479
+ #: gallery-plugin.php:1467
480
+ msgid "Extend standard plugin functionality with new great options."
481
+ msgstr ""
482
+
483
+ #: template/gallery-single-template.php:102
484
  msgid "Image"
485
  msgstr "Изображение"
486
 
550
  #~ msgstr "Вибачте, електронне повідомлення не може бути відправлено."
551
  #~ msgid "Activated plugins"
552
  #~ msgstr "Активовані плагіни"
 
 
553
  #~ msgid "Installed plugins"
554
  #~ msgstr "Встановлених модулів"
555
  #~ msgid "Recommended plugins"
languages/gallery-cs_CZ.mo DELETED
Binary file
languages/gallery-cs_CZ.po DELETED
@@ -1,540 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:09+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:09+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: cs_CZ\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Galerie"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Galerie"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Vložit novou galerii"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Vložit novou galerii"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Upravit galerii"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Nová galerie"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Zobrazit galerii"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Upravit galerii"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "Nebyla nalezena žádná galerie"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Nahrát soubor"
68
-
69
- #: gallery-plugin.php:192
70
- msgid "Gallery Shortcode"
71
- msgstr "Nastavení galerie"
72
-
73
- #: gallery-plugin.php:210
74
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
75
- msgstr ""
76
-
77
- #: gallery-plugin.php:214
78
- #, fuzzy
79
- msgid "Choose an image for upload:"
80
- msgstr "Vyberte náhled pro nahrání:"
81
-
82
- #: gallery-plugin.php:219
83
- msgid "Please enable JavaScript to use the file uploader."
84
- msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
85
-
86
- #: gallery-plugin.php:226
87
- msgid "Allow the download link for all images in this gallery"
88
- msgstr ""
89
-
90
- #: gallery-plugin.php:227
91
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
92
- msgstr ""
93
-
94
- #: gallery-plugin.php:229
95
- msgid "Please make a choice"
96
- msgstr ""
97
-
98
- #: gallery-plugin.php:229
99
- #: gallery-plugin.php:884
100
- #, fuzzy
101
- msgid "Sort images by"
102
- msgstr "Počet náhledů zobrazených v jedné řádce"
103
-
104
- #: gallery-plugin.php:229
105
- #, fuzzy
106
- msgid "sort images"
107
- msgstr "Počet náhledů zobrazených v jedné řádce"
108
-
109
- #: gallery-plugin.php:229
110
- msgid "on the plugin settings page ("
111
- msgstr ""
112
-
113
- #: gallery-plugin.php:273
114
- #: gallery-plugin.php:502
115
- msgid "Title"
116
- msgstr "Název"
117
-
118
- #: gallery-plugin.php:275
119
- msgid "Alt tag"
120
- msgstr ""
121
-
122
- #: gallery-plugin.php:276
123
- msgid "URL"
124
- msgstr ""
125
-
126
- #: gallery-plugin.php:276
127
- msgid "(by click on image opens a link in a new window)"
128
- msgstr ""
129
-
130
- #: gallery-plugin.php:277
131
- msgid "This setting is available in Pro version"
132
- msgstr ""
133
-
134
- #: gallery-plugin.php:278
135
- msgid "Open the link"
136
- msgstr ""
137
-
138
- #: gallery-plugin.php:278
139
- msgid "Current window"
140
- msgstr ""
141
-
142
- #: gallery-plugin.php:278
143
- msgid "New window"
144
- msgstr ""
145
-
146
- #: gallery-plugin.php:279
147
- msgid "Delete"
148
- msgstr ""
149
-
150
- #: gallery-plugin.php:292
151
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
152
- msgstr ""
153
-
154
- #: gallery-plugin.php:294
155
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
156
- msgstr ""
157
-
158
- #: gallery-plugin.php:503
159
- msgid "Author"
160
- msgstr "Autor"
161
-
162
- #: gallery-plugin.php:504
163
- #, fuzzy
164
- msgid "Photo"
165
- msgstr "Fotky"
166
-
167
- #: gallery-plugin.php:505
168
- #, fuzzy
169
- msgid "Publishing"
170
- msgstr "Veřejné"
171
-
172
- #: gallery-plugin.php:506
173
- #: gallery-plugin.php:888
174
- msgid "Date"
175
- msgstr "Datum"
176
-
177
- #: gallery-plugin.php:632
178
- #, fuzzy
179
- msgid "See images &raquo;"
180
- msgstr "Zobrazit obsah galerie &raquo;"
181
-
182
- #: gallery-plugin.php:679
183
- msgid "requires"
184
- msgstr ""
185
-
186
- #: gallery-plugin.php:679
187
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
188
- msgstr ""
189
-
190
- #: gallery-plugin.php:679
191
- msgid "Back to the WordPress"
192
- msgstr ""
193
-
194
- #: gallery-plugin.php:679
195
- #, fuzzy
196
- msgid "Plugins page"
197
- msgstr "Doporučené pluginy"
198
-
199
- #: gallery-plugin.php:764
200
- #, fuzzy
201
- msgid "Settings are saved"
202
- msgstr "Nastavení uložena."
203
-
204
- #: gallery-plugin.php:777
205
- #, fuzzy
206
- msgid "Gallery Settings"
207
- msgstr "Nastavení galerie"
208
-
209
- #: gallery-plugin.php:780
210
- 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:"
211
- msgstr ""
212
-
213
- #: gallery-plugin.php:784
214
- #, fuzzy
215
- msgid "Image size for the album cover"
216
- msgstr "Размер для "
217
-
218
- #: gallery-plugin.php:786
219
- #: gallery-plugin.php:794
220
- #: gallery-plugin.php:807
221
- #, fuzzy
222
- msgid "Image size"
223
- msgstr "Název rozměru"
224
-
225
- #: gallery-plugin.php:787
226
- #: gallery-plugin.php:795
227
- msgid "Width (in px)"
228
- msgstr "Šířka (v px)"
229
-
230
- #: gallery-plugin.php:788
231
- #: gallery-plugin.php:796
232
- msgid "Height (in px)"
233
- msgstr "Výška (v px)"
234
-
235
- #: gallery-plugin.php:792
236
- #, fuzzy
237
- msgid "Gallery image size"
238
- msgstr "Galerie"
239
-
240
- #: gallery-plugin.php:800
241
- #, fuzzy
242
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
243
- msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
244
-
245
- #: gallery-plugin.php:805
246
- msgid "Gallery image size in the lightbox"
247
- msgstr ""
248
-
249
- #: gallery-plugin.php:808
250
- #, fuzzy
251
- msgid "Max width (in px)"
252
- msgstr "Šířka (v px)"
253
-
254
- #: gallery-plugin.php:809
255
- #, fuzzy
256
- msgid "Max height (in px)"
257
- msgstr "Výška (v px)"
258
-
259
- #: gallery-plugin.php:810
260
- msgid "Display a full size image in the lightbox"
261
- msgstr ""
262
-
263
- #: gallery-plugin.php:814
264
- msgid "Crop position"
265
- msgstr ""
266
-
267
- #: gallery-plugin.php:816
268
- msgid "Horizontal"
269
- msgstr ""
270
-
271
- #: gallery-plugin.php:818
272
- msgid "left"
273
- msgstr ""
274
-
275
- #: gallery-plugin.php:819
276
- #: gallery-plugin.php:826
277
- msgid "center"
278
- msgstr ""
279
-
280
- #: gallery-plugin.php:820
281
- msgid "right"
282
- msgstr ""
283
-
284
- #: gallery-plugin.php:823
285
- msgid "Vertical"
286
- msgstr ""
287
-
288
- #: gallery-plugin.php:825
289
- msgid "top"
290
- msgstr ""
291
-
292
- #: gallery-plugin.php:827
293
- msgid "bottom"
294
- msgstr ""
295
-
296
- #: gallery-plugin.php:832
297
- msgid "Lightbox background"
298
- msgstr ""
299
-
300
- #: gallery-plugin.php:834
301
- msgid "Default"
302
- msgstr ""
303
-
304
- #: gallery-plugin.php:835
305
- msgid "Background transparency (from 0 to 1)"
306
- msgstr ""
307
-
308
- #: gallery-plugin.php:837
309
- msgid "Select a background color"
310
- msgstr ""
311
-
312
- #: gallery-plugin.php:839
313
- msgid "Background color"
314
- msgstr ""
315
-
316
- #: gallery-plugin.php:846
317
- #: gallery-plugin.php:985
318
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
319
- msgstr ""
320
-
321
- #: gallery-plugin.php:853
322
- msgid "Images with border"
323
- msgstr ""
324
-
325
- #: gallery-plugin.php:856
326
- msgid "Border width in px, just numbers"
327
- msgstr ""
328
-
329
- #: gallery-plugin.php:858
330
- #: gallery-plugin.php:860
331
- msgid "Select a border color"
332
- msgstr ""
333
-
334
- #: gallery-plugin.php:866
335
- #, fuzzy
336
- msgid "Number of images in the row"
337
- msgstr "Počet náhledů zobrazených v jedné řádce"
338
-
339
- #: gallery-plugin.php:872
340
- msgid "Start slideshow"
341
- msgstr ""
342
-
343
- #: gallery-plugin.php:878
344
- msgid "Slideshow interval"
345
- msgstr ""
346
-
347
- #: gallery-plugin.php:886
348
- msgid "Attachment ID"
349
- msgstr ""
350
-
351
- #: gallery-plugin.php:887
352
- #, fuzzy
353
- msgid "Image Name"
354
- msgstr "Název rozměru"
355
-
356
- #: gallery-plugin.php:889
357
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
358
- msgstr ""
359
-
360
- #: gallery-plugin.php:890
361
- msgid "Random"
362
- msgstr ""
363
-
364
- #: gallery-plugin.php:894
365
- #, fuzzy
366
- msgid "Sort images"
367
- msgstr "Počet náhledů zobrazených v jedné řádce"
368
-
369
- #: gallery-plugin.php:896
370
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
371
- msgstr ""
372
-
373
- #: gallery-plugin.php:897
374
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
375
- msgstr ""
376
-
377
- #: gallery-plugin.php:901
378
- msgid "Display text above the image"
379
- msgstr ""
380
-
381
- #: gallery-plugin.php:903
382
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
383
- msgstr ""
384
-
385
- #: gallery-plugin.php:907
386
- msgid "Display the Back link"
387
- msgstr ""
388
-
389
- #: gallery-plugin.php:913
390
- msgid "Display the Back link in the shortcode"
391
- msgstr ""
392
-
393
- #: gallery-plugin.php:919
394
- msgid "The Back link text"
395
- msgstr ""
396
-
397
- #: gallery-plugin.php:925
398
- msgid "The Back link URL"
399
- msgstr ""
400
-
401
- #: gallery-plugin.php:927
402
- msgid "Gallery page (Page with Gallery Template)"
403
- msgstr ""
404
-
405
- #: gallery-plugin.php:929
406
- msgid "(Full URL to custom page)"
407
- msgstr ""
408
-
409
- #: gallery-plugin.php:933
410
- msgid "The Read More link text"
411
- msgstr ""
412
-
413
- #: gallery-plugin.php:939
414
- msgid "Add gallery to the search"
415
- msgstr ""
416
-
417
- #: gallery-plugin.php:955
418
- #: gallery-plugin.php:958
419
- #: gallery-plugin.php:962
420
- msgid "Using Custom Search powered by"
421
- msgstr ""
422
-
423
- #: gallery-plugin.php:958
424
- msgid "Activate Custom Search"
425
- msgstr ""
426
-
427
- #: gallery-plugin.php:962
428
- msgid "Download Custom Search"
429
- msgstr ""
430
-
431
- #: gallery-plugin.php:969
432
- msgid "Display Like buttons in the lightbox"
433
- msgstr ""
434
-
435
- #: gallery-plugin.php:971
436
- msgid "FaceBook"
437
- msgstr ""
438
-
439
- #: gallery-plugin.php:972
440
- #, fuzzy
441
- msgid "Twitter"
442
- msgstr "Název"
443
-
444
- #: gallery-plugin.php:973
445
- msgid "Pinterest"
446
- msgstr ""
447
-
448
- #: gallery-plugin.php:974
449
- msgid "Google +1"
450
- msgstr ""
451
-
452
- #: gallery-plugin.php:978
453
- #, fuzzy
454
- msgid "Slug for gallery item"
455
- msgstr "Rozměry náhledu obrázku v albu"
456
-
457
- #: gallery-plugin.php:980
458
- msgid "for any structure of permalinks except the default structure"
459
- msgstr ""
460
-
461
- #: gallery-plugin.php:993
462
- msgid "Save Changes"
463
- msgstr "Uložit změny"
464
-
465
- #: gallery-plugin.php:1005
466
- #: gallery-plugin.php:1020
467
- msgid "Settings"
468
- msgstr "Nastavení"
469
-
470
- #: gallery-plugin.php:1006
471
- msgid "FAQ"
472
- msgstr "FAQ "
473
-
474
- #: gallery-plugin.php:1007
475
- msgid "Support"
476
- msgstr "Podpora"
477
-
478
- #: gallery-plugin.php:1220
479
- #: template/gallery-single-template.php:77
480
- #, fuzzy
481
- msgid "Sorry, nothing found."
482
- msgstr "Omlouvám se - nic nenalezeno."
483
-
484
- #: gallery-plugin.php:1242
485
- #: template/gallery-single-template.php:103
486
- msgid "Download high resolution image"
487
- msgstr ""
488
-
489
- #: template/gallery-single-template.php:103
490
- msgid "Image"
491
- msgstr ""
492
-
493
- #, fuzzy
494
- #~ msgid "PHP Max Upload Size"
495
- #~ msgstr "Nahrát soubor"
496
- #~ msgid "Activated plugins"
497
- #~ msgstr "Aktivní pluginy"
498
- #~ msgid "Read more"
499
- #~ msgstr "Další informace"
500
- #~ msgid "Installed plugins"
501
- #~ msgstr "Nainstalované pluginy"
502
- #~ msgid "Recommended plugins"
503
- #~ msgstr "Doporučené pluginy"
504
-
505
- #, fuzzy
506
- #~ msgid "Free plugins"
507
- #~ msgstr "Doporučené pluginy"
508
- #~ msgid "Download"
509
- #~ msgstr "Stáhnout"
510
- #~ msgid "Install %s"
511
- #~ msgstr "Instaluj %s"
512
- #~ msgid "Install now from wordpress.org"
513
- #~ msgstr "Instaluj ihned z wordpress.org"
514
-
515
- #, fuzzy
516
- #~ msgid "If you have any questions, please contact us via"
517
- #~ msgstr ""
518
- #~ "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft."
519
- #~ "com a nebo vyplňte kontaktní formulář na našich stránkách."
520
-
521
- #, fuzzy
522
- #~ msgid "Active Plugins"
523
- #~ msgstr "Aktivní pluginy"
524
-
525
- #, fuzzy
526
- #~ msgid "Inactive Plugins"
527
- #~ msgstr "Aktivní pluginy"
528
-
529
- #, fuzzy
530
- #~ msgid "Send to support"
531
- #~ msgstr "Podpora"
532
- #~ msgid "Add New"
533
- #~ msgstr "Vložit novou"
534
- #~ msgid "Search Galleries"
535
- #~ msgstr "Hledat galerii"
536
- #~ msgid "The size of the cover album for gallery"
537
- #~ msgstr "Rozměry náhledu alba v galerii"
538
- #~ msgid "date"
539
- #~ msgstr "Datum"
540
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-11-01 13:09+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:09+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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 "Fehler Gallery PluginDie Dateien \"gallery-template.php\" und \"gallery-single-template.php\" wurden nicht in deinem Theme gefunden. Bitte kopiere sie aus dem Verzeichnis `/wp-content/plugins/gallery-plugin/template/` direkt in das Verzeichnis deines Themes, damit das Plugin richtig funktionieren kann."
23
 
@@ -92,7 +92,7 @@ msgid "Please make a choice"
92
  msgstr "Bitte auswählen"
93
 
94
  #: gallery-plugin.php:229
95
- #: gallery-plugin.php:884
96
  msgid "Sort images by"
97
  msgstr "Sortieren nach"
98
 
@@ -162,308 +162,325 @@ msgid "Publishing"
162
  msgstr "Veröffentlichen"
163
 
164
  #: gallery-plugin.php:506
165
- #: gallery-plugin.php:888
166
  msgid "Date"
167
  msgstr "Datum"
168
 
169
- #: gallery-plugin.php:632
170
  msgid "See images &raquo;"
171
  msgstr "Fotos anzeigen &raquo;"
172
 
173
- #: gallery-plugin.php:679
174
  msgid "requires"
175
  msgstr ""
176
 
177
- #: gallery-plugin.php:679
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr ""
180
 
181
- #: gallery-plugin.php:679
182
  msgid "Back to the WordPress"
183
  msgstr ""
184
 
185
- #: gallery-plugin.php:679
186
  #, fuzzy
187
  msgid "Plugins page"
188
  msgstr "Benötigte Plugins"
189
 
190
- #: gallery-plugin.php:764
191
  msgid "Settings are saved"
192
  msgstr "Einstellungen gespeichert."
193
 
194
- #: gallery-plugin.php:777
195
  msgid "Gallery Settings"
196
  msgstr "Galerie Einstellungen"
197
 
198
- #: gallery-plugin.php:780
199
  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:"
200
  msgstr "Zum Einfügen einer Galerie füge diesen Shortcode in eine Seite oder einen Beitrag ein:"
201
 
202
- #: gallery-plugin.php:784
203
  msgid "Image size for the album cover"
204
  msgstr "Bildgröße für Beitragsbild"
205
 
206
- #: gallery-plugin.php:786
207
- #: gallery-plugin.php:794
208
- #: gallery-plugin.php:807
209
  msgid "Image size"
210
  msgstr "Name der Bilder"
211
 
212
- #: gallery-plugin.php:787
213
- #: gallery-plugin.php:795
214
  msgid "Width (in px)"
215
  msgstr "Breite (in px)"
216
 
217
- #: gallery-plugin.php:788
218
- #: gallery-plugin.php:796
219
  msgid "Height (in px)"
220
  msgstr "Höhe (in px)"
221
 
222
- #: gallery-plugin.php:792
223
  msgid "Gallery image size"
224
  msgstr "Bildgröße für Galerie"
225
 
226
- #: gallery-plugin.php:800
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "Wordpress wird ein neues Thumbnail mit den Einstellungen erstellen, wenn du ein neues Bild hochlädst."
229
 
230
- #: gallery-plugin.php:805
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Galeriegröße in der Lightbox"
233
 
234
- #: gallery-plugin.php:808
235
  msgid "Max width (in px)"
236
  msgstr "max. Breite (in px)"
237
 
238
- #: gallery-plugin.php:809
239
  msgid "Max height (in px)"
240
  msgstr "max. Höhe (in px)"
241
 
242
- #: gallery-plugin.php:810
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Zeige das Bild in Originalgröße in derLightbox"
245
 
246
- #: gallery-plugin.php:814
247
  msgid "Crop position"
248
  msgstr "Crop Position"
249
 
250
- #: gallery-plugin.php:816
251
  msgid "Horizontal"
252
  msgstr "Horizontal"
253
 
254
- #: gallery-plugin.php:818
255
  msgid "left"
256
  msgstr "links"
257
 
258
- #: gallery-plugin.php:819
259
- #: gallery-plugin.php:826
260
  msgid "center"
261
  msgstr "zentriert"
262
 
263
- #: gallery-plugin.php:820
264
  msgid "right"
265
  msgstr "rechts"
266
 
267
- #: gallery-plugin.php:823
268
  msgid "Vertical"
269
  msgstr "vertikal"
270
 
271
- #: gallery-plugin.php:825
272
  msgid "top"
273
  msgstr "oben"
274
 
275
- #: gallery-plugin.php:827
276
  msgid "bottom"
277
  msgstr "unten"
278
 
279
- #: gallery-plugin.php:832
280
  msgid "Lightbox background"
281
  msgstr "Lightbox Hintergrund"
282
 
283
- #: gallery-plugin.php:834
284
  msgid "Default"
285
  msgstr "Standard"
286
 
287
- #: gallery-plugin.php:835
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Hintergrund Transparenz (0 – 1)"
290
 
291
- #: gallery-plugin.php:837
292
  msgid "Select a background color"
293
  msgstr "Wähle eine Hintergrundfarbe"
294
 
295
- #: gallery-plugin.php:839
296
  msgid "Background color"
297
  msgstr "Hintergrundfarbe"
298
 
299
- #: gallery-plugin.php:846
300
- #: gallery-plugin.php:985
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Nur in der Pro Version verfügbar. Folge dem Link für mehr Informationen"
303
 
304
- #: gallery-plugin.php:853
305
  msgid "Images with border"
306
  msgstr "Bilder mit Rand"
307
 
308
- #: gallery-plugin.php:856
309
  msgid "Border width in px, just numbers"
310
  msgstr "Breite Bildrand in Pixel"
311
 
312
- #: gallery-plugin.php:858
313
- #: gallery-plugin.php:860
314
  msgid "Select a border color"
315
  msgstr "Rahmenfarbe"
316
 
317
- #: gallery-plugin.php:866
318
  msgid "Number of images in the row"
319
  msgstr "Anzahl Bilder in einer Reihe"
320
 
321
- #: gallery-plugin.php:872
322
  msgid "Start slideshow"
323
  msgstr "Starte Slideshow"
324
 
325
- #: gallery-plugin.php:878
326
  msgid "Slideshow interval"
327
  msgstr "Slideshow Geschwindigkeit"
328
 
329
- #: gallery-plugin.php:886
 
 
 
 
330
  msgid "Attachment ID"
331
  msgstr "Anhang ID"
332
 
333
- #: gallery-plugin.php:887
334
  msgid "Image Name"
335
  msgstr "Bildname"
336
 
337
- #: gallery-plugin.php:889
338
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
339
  msgstr "Reihenfolge (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
340
 
341
- #: gallery-plugin.php:890
342
  msgid "Random"
343
  msgstr "Zufall"
344
 
345
- #: gallery-plugin.php:894
346
  msgid "Sort images"
347
  msgstr "Reihenfolge"
348
 
349
- #: gallery-plugin.php:896
350
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
351
  msgstr "ASC (aufsteigend)"
352
 
353
- #: gallery-plugin.php:897
354
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
355
  msgstr "DESC (absteigend)"
356
 
357
- #: gallery-plugin.php:901
358
  msgid "Display text above the image"
359
  msgstr "Zeige Text über dem Bild"
360
 
361
- #: gallery-plugin.php:903
362
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
363
  msgstr "Text nur in Lightbox anzeigen"
364
 
365
- #: gallery-plugin.php:907
366
  msgid "Display the Back link"
367
  msgstr "Aktiviere Zurück-Link"
368
 
369
- #: gallery-plugin.php:913
370
  msgid "Display the Back link in the shortcode"
371
  msgstr "Aktiviere Zurück-Link im Shortcode"
372
 
373
- #: gallery-plugin.php:919
374
  msgid "The Back link text"
375
  msgstr "Zurück-Link Text"
376
 
377
- #: gallery-plugin.php:925
378
  msgid "The Back link URL"
379
  msgstr "Zurück-Link URL"
380
 
381
- #: gallery-plugin.php:927
382
  msgid "Gallery page (Page with Gallery Template)"
383
  msgstr "Galerie-Seite (Seite mit Gallerie-Template)"
384
 
385
- #: gallery-plugin.php:929
386
  msgid "(Full URL to custom page)"
387
  msgstr "(URL zu eigener Seite)"
388
 
389
- #: gallery-plugin.php:933
390
  msgid "The Read More link text"
391
  msgstr "Weiterlesen link Text"
392
 
393
- #: gallery-plugin.php:939
394
  msgid "Add gallery to the search"
395
  msgstr ""
396
 
397
- #: gallery-plugin.php:955
398
  #: gallery-plugin.php:958
399
- #: gallery-plugin.php:962
 
400
  msgid "Using Custom Search powered by"
401
  msgstr ""
402
 
403
- #: gallery-plugin.php:958
404
  msgid "Activate Custom Search"
405
  msgstr ""
406
 
407
- #: gallery-plugin.php:962
408
  msgid "Download Custom Search"
409
  msgstr ""
410
 
411
- #: gallery-plugin.php:969
412
  msgid "Display Like buttons in the lightbox"
413
  msgstr "Aktivier Like-Button in der Lightbox"
414
 
415
- #: gallery-plugin.php:971
416
  msgid "FaceBook"
417
  msgstr "Facebook"
418
 
419
- #: gallery-plugin.php:972
420
  msgid "Twitter"
421
  msgstr "Twitter"
422
 
423
- #: gallery-plugin.php:973
424
  msgid "Pinterest"
425
  msgstr "Pinterest"
426
 
427
- #: gallery-plugin.php:974
428
  msgid "Google +1"
429
  msgstr "Goolge+"
430
 
431
- #: gallery-plugin.php:978
432
  msgid "Slug for gallery item"
433
  msgstr "Galerie Slug"
434
 
435
- #: gallery-plugin.php:980
436
  msgid "for any structure of permalinks except the default structure"
437
  msgstr "Permalinkstruktur (Default ausgenommen)"
438
 
439
- #: gallery-plugin.php:993
440
  msgid "Save Changes"
441
  msgstr "Einstellungen speichern"
442
 
443
- #: gallery-plugin.php:1005
444
- #: gallery-plugin.php:1020
445
  msgid "Settings"
446
  msgstr "Einstellungen"
447
 
448
- #: gallery-plugin.php:1006
449
  msgid "FAQ"
450
  msgstr "FAQ"
451
 
452
- #: gallery-plugin.php:1007
453
  msgid "Support"
454
  msgstr "Support"
455
 
456
- #: gallery-plugin.php:1220
457
- #: template/gallery-single-template.php:77
458
  msgid "Sorry, nothing found."
459
  msgstr "Leider nichts gefunden."
460
 
461
- #: gallery-plugin.php:1242
462
- #: template/gallery-single-template.php:103
463
  msgid "Download high resolution image"
464
  msgstr "Lade Bild in Originalgröße"
465
 
466
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Image"
468
  msgstr "Bild"
469
 
@@ -472,8 +489,6 @@ msgstr "Bild"
472
  #~ msgstr "Datei hochladen"
473
  #~ msgid "Activated plugins"
474
  #~ msgstr "Aktivierte Plugins"
475
- #~ msgid "Read more"
476
- #~ msgstr "Mehr erfahren"
477
  #~ msgid "Installed plugins"
478
  #~ msgstr "Installierte Plugins"
479
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:30+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:30+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:101
20
+ #: gallery-plugin.php:768
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 "Fehler Gallery PluginDie Dateien \"gallery-template.php\" und \"gallery-single-template.php\" wurden nicht in deinem Theme gefunden. Bitte kopiere sie aus dem Verzeichnis `/wp-content/plugins/gallery-plugin/template/` direkt in das Verzeichnis deines Themes, damit das Plugin richtig funktionieren kann."
23
 
92
  msgstr "Bitte auswählen"
93
 
94
  #: gallery-plugin.php:229
95
+ #: gallery-plugin.php:887
96
  msgid "Sort images by"
97
  msgstr "Sortieren nach"
98
 
162
  msgstr "Veröffentlichen"
163
 
164
  #: gallery-plugin.php:506
165
+ #: gallery-plugin.php:891
166
  msgid "Date"
167
  msgstr "Datum"
168
 
169
+ #: gallery-plugin.php:630
170
  msgid "See images &raquo;"
171
  msgstr "Fotos anzeigen &raquo;"
172
 
173
+ #: gallery-plugin.php:677
174
  msgid "requires"
175
  msgstr ""
176
 
177
+ #: gallery-plugin.php:677
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr ""
180
 
181
+ #: gallery-plugin.php:677
182
  msgid "Back to the WordPress"
183
  msgstr ""
184
 
185
+ #: gallery-plugin.php:677
186
  #, fuzzy
187
  msgid "Plugins page"
188
  msgstr "Benötigte Plugins"
189
 
190
+ #: gallery-plugin.php:761
191
  msgid "Settings are saved"
192
  msgstr "Einstellungen gespeichert."
193
 
194
+ #: gallery-plugin.php:774
195
  msgid "Gallery Settings"
196
  msgstr "Galerie Einstellungen"
197
 
198
+ #: gallery-plugin.php:777
199
  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:"
200
  msgstr "Zum Einfügen einer Galerie füge diesen Shortcode in eine Seite oder einen Beitrag ein:"
201
 
202
+ #: gallery-plugin.php:781
203
  msgid "Image size for the album cover"
204
  msgstr "Bildgröße für Beitragsbild"
205
 
206
+ #: gallery-plugin.php:783
207
+ #: gallery-plugin.php:791
208
+ #: gallery-plugin.php:804
209
  msgid "Image size"
210
  msgstr "Name der Bilder"
211
 
212
+ #: gallery-plugin.php:784
213
+ #: gallery-plugin.php:792
214
  msgid "Width (in px)"
215
  msgstr "Breite (in px)"
216
 
217
+ #: gallery-plugin.php:785
218
+ #: gallery-plugin.php:793
219
  msgid "Height (in px)"
220
  msgstr "Höhe (in px)"
221
 
222
+ #: gallery-plugin.php:789
223
  msgid "Gallery image size"
224
  msgstr "Bildgröße für Galerie"
225
 
226
+ #: gallery-plugin.php:797
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "Wordpress wird ein neues Thumbnail mit den Einstellungen erstellen, wenn du ein neues Bild hochlädst."
229
 
230
+ #: gallery-plugin.php:802
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Galeriegröße in der Lightbox"
233
 
234
+ #: gallery-plugin.php:805
235
  msgid "Max width (in px)"
236
  msgstr "max. Breite (in px)"
237
 
238
+ #: gallery-plugin.php:806
239
  msgid "Max height (in px)"
240
  msgstr "max. Höhe (in px)"
241
 
242
+ #: gallery-plugin.php:807
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Zeige das Bild in Originalgröße in derLightbox"
245
 
246
+ #: gallery-plugin.php:811
247
  msgid "Crop position"
248
  msgstr "Crop Position"
249
 
250
+ #: gallery-plugin.php:813
251
  msgid "Horizontal"
252
  msgstr "Horizontal"
253
 
254
+ #: gallery-plugin.php:815
255
  msgid "left"
256
  msgstr "links"
257
 
258
+ #: gallery-plugin.php:816
259
+ #: gallery-plugin.php:823
260
  msgid "center"
261
  msgstr "zentriert"
262
 
263
+ #: gallery-plugin.php:817
264
  msgid "right"
265
  msgstr "rechts"
266
 
267
+ #: gallery-plugin.php:820
268
  msgid "Vertical"
269
  msgstr "vertikal"
270
 
271
+ #: gallery-plugin.php:822
272
  msgid "top"
273
  msgstr "oben"
274
 
275
+ #: gallery-plugin.php:824
276
  msgid "bottom"
277
  msgstr "unten"
278
 
279
+ #: gallery-plugin.php:829
280
  msgid "Lightbox background"
281
  msgstr "Lightbox Hintergrund"
282
 
283
+ #: gallery-plugin.php:831
284
  msgid "Default"
285
  msgstr "Standard"
286
 
287
+ #: gallery-plugin.php:832
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Hintergrund Transparenz (0 – 1)"
290
 
291
+ #: gallery-plugin.php:834
292
  msgid "Select a background color"
293
  msgstr "Wähle eine Hintergrundfarbe"
294
 
295
+ #: gallery-plugin.php:836
296
  msgid "Background color"
297
  msgstr "Hintergrundfarbe"
298
 
299
+ #: gallery-plugin.php:843
300
+ #: gallery-plugin.php:988
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Nur in der Pro Version verfügbar. Folge dem Link für mehr Informationen"
303
 
304
+ #: gallery-plugin.php:850
305
  msgid "Images with border"
306
  msgstr "Bilder mit Rand"
307
 
308
+ #: gallery-plugin.php:853
309
  msgid "Border width in px, just numbers"
310
  msgstr "Breite Bildrand in Pixel"
311
 
312
+ #: gallery-plugin.php:855
313
+ #: gallery-plugin.php:857
314
  msgid "Select a border color"
315
  msgstr "Rahmenfarbe"
316
 
317
+ #: gallery-plugin.php:863
318
  msgid "Number of images in the row"
319
  msgstr "Anzahl Bilder in einer Reihe"
320
 
321
+ #: gallery-plugin.php:869
322
  msgid "Start slideshow"
323
  msgstr "Starte Slideshow"
324
 
325
+ #: gallery-plugin.php:875
326
  msgid "Slideshow interval"
327
  msgstr "Slideshow Geschwindigkeit"
328
 
329
+ #: gallery-plugin.php:881
330
+ msgid "Use single lightbox for multiple galleries on one page"
331
+ msgstr ""
332
+
333
+ #: gallery-plugin.php:889
334
  msgid "Attachment ID"
335
  msgstr "Anhang ID"
336
 
337
+ #: gallery-plugin.php:890
338
  msgid "Image Name"
339
  msgstr "Bildname"
340
 
341
+ #: gallery-plugin.php:892
342
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
343
  msgstr "Reihenfolge (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
344
 
345
+ #: gallery-plugin.php:893
346
  msgid "Random"
347
  msgstr "Zufall"
348
 
349
+ #: gallery-plugin.php:897
350
  msgid "Sort images"
351
  msgstr "Reihenfolge"
352
 
353
+ #: gallery-plugin.php:899
354
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
355
  msgstr "ASC (aufsteigend)"
356
 
357
+ #: gallery-plugin.php:900
358
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
359
  msgstr "DESC (absteigend)"
360
 
361
+ #: gallery-plugin.php:904
362
  msgid "Display text above the image"
363
  msgstr "Zeige Text über dem Bild"
364
 
365
+ #: gallery-plugin.php:906
366
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
367
  msgstr "Text nur in Lightbox anzeigen"
368
 
369
+ #: gallery-plugin.php:910
370
  msgid "Display the Back link"
371
  msgstr "Aktiviere Zurück-Link"
372
 
373
+ #: gallery-plugin.php:916
374
  msgid "Display the Back link in the shortcode"
375
  msgstr "Aktiviere Zurück-Link im Shortcode"
376
 
377
+ #: gallery-plugin.php:922
378
  msgid "The Back link text"
379
  msgstr "Zurück-Link Text"
380
 
381
+ #: gallery-plugin.php:928
382
  msgid "The Back link URL"
383
  msgstr "Zurück-Link URL"
384
 
385
+ #: gallery-plugin.php:930
386
  msgid "Gallery page (Page with Gallery Template)"
387
  msgstr "Galerie-Seite (Seite mit Gallerie-Template)"
388
 
389
+ #: gallery-plugin.php:932
390
  msgid "(Full URL to custom page)"
391
  msgstr "(URL zu eigener Seite)"
392
 
393
+ #: gallery-plugin.php:936
394
  msgid "The Read More link text"
395
  msgstr "Weiterlesen link Text"
396
 
397
+ #: gallery-plugin.php:942
398
  msgid "Add gallery to the search"
399
  msgstr ""
400
 
 
401
  #: gallery-plugin.php:958
402
+ #: gallery-plugin.php:961
403
+ #: gallery-plugin.php:965
404
  msgid "Using Custom Search powered by"
405
  msgstr ""
406
 
407
+ #: gallery-plugin.php:961
408
  msgid "Activate Custom Search"
409
  msgstr ""
410
 
411
+ #: gallery-plugin.php:965
412
  msgid "Download Custom Search"
413
  msgstr ""
414
 
415
+ #: gallery-plugin.php:972
416
  msgid "Display Like buttons in the lightbox"
417
  msgstr "Aktivier Like-Button in der Lightbox"
418
 
419
+ #: gallery-plugin.php:974
420
  msgid "FaceBook"
421
  msgstr "Facebook"
422
 
423
+ #: gallery-plugin.php:975
424
  msgid "Twitter"
425
  msgstr "Twitter"
426
 
427
+ #: gallery-plugin.php:976
428
  msgid "Pinterest"
429
  msgstr "Pinterest"
430
 
431
+ #: gallery-plugin.php:977
432
  msgid "Google +1"
433
  msgstr "Goolge+"
434
 
435
+ #: gallery-plugin.php:981
436
  msgid "Slug for gallery item"
437
  msgstr "Galerie Slug"
438
 
439
+ #: gallery-plugin.php:983
440
  msgid "for any structure of permalinks except the default structure"
441
  msgstr "Permalinkstruktur (Default ausgenommen)"
442
 
443
+ #: gallery-plugin.php:996
444
  msgid "Save Changes"
445
  msgstr "Einstellungen speichern"
446
 
447
+ #: gallery-plugin.php:1008
448
+ #: gallery-plugin.php:1023
449
  msgid "Settings"
450
  msgstr "Einstellungen"
451
 
452
+ #: gallery-plugin.php:1009
453
  msgid "FAQ"
454
  msgstr "FAQ"
455
 
456
+ #: gallery-plugin.php:1010
457
  msgid "Support"
458
  msgstr "Support"
459
 
460
+ #: gallery-plugin.php:1222
461
+ #: template/gallery-single-template.php:76
462
  msgid "Sorry, nothing found."
463
  msgstr "Leider nichts gefunden."
464
 
465
+ #: gallery-plugin.php:1244
466
+ #: template/gallery-single-template.php:102
467
  msgid "Download high resolution image"
468
  msgstr "Lade Bild in Originalgröße"
469
 
470
+ #: gallery-plugin.php:1464
471
+ #, fuzzy
472
+ msgid "Learn More"
473
+ msgstr "Mehr erfahren"
474
+
475
+ #: gallery-plugin.php:1466
476
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
477
+ msgstr ""
478
+
479
+ #: gallery-plugin.php:1467
480
+ msgid "Extend standard plugin functionality with new great options."
481
+ msgstr ""
482
+
483
+ #: template/gallery-single-template.php:102
484
  msgid "Image"
485
  msgstr "Bild"
486
 
489
  #~ msgstr "Datei hochladen"
490
  #~ msgid "Activated plugins"
491
  #~ msgstr "Aktivierte Plugins"
 
 
492
  #~ msgid "Installed plugins"
493
  #~ msgstr "Installierte Plugins"
494
  #~ msgid "Recommended plugins"
languages/gallery-es_ES.mo DELETED
Binary file
languages/gallery-es_ES.po DELETED
@@ -1,573 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:09+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:09+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: es_ES\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Galerías"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Galería"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Agregar Nueva Galería"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Agregar Nueva Galería"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Editar Galería"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Nueva Galería"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Ver Galería"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Editar Galería"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "No se encontraron Galerías"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Subir Archivo"
68
-
69
- #: gallery-plugin.php:192
70
- #, fuzzy
71
- msgid "Gallery Shortcode"
72
- msgstr "Opciones de Galería"
73
-
74
- #: gallery-plugin.php:210
75
- #, fuzzy
76
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
77
- msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
78
-
79
- #: gallery-plugin.php:214
80
- #, fuzzy
81
- msgid "Choose an image for upload:"
82
- msgstr "Escoger una imagen para subir:"
83
-
84
- #: gallery-plugin.php:219
85
- msgid "Please enable JavaScript to use the file uploader."
86
- msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
87
-
88
- #: gallery-plugin.php:226
89
- #, fuzzy
90
- msgid "Allow the download link for all images in this gallery"
91
- msgstr "Permitir enlace para descargar imágenes en esta galería"
92
-
93
- #: gallery-plugin.php:227
94
- #, fuzzy
95
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
96
- msgstr "Por favor, utilice la función de arrastrar y soltar para cambiar el orden de la salida de las imágenes y no se olvide de guardar el post."
97
-
98
- #: gallery-plugin.php:229
99
- msgid "Please make a choice"
100
- msgstr ""
101
-
102
- #: gallery-plugin.php:229
103
- #: gallery-plugin.php:884
104
- #, fuzzy
105
- msgid "Sort images by"
106
- msgstr "Contar las imágenes en la fila"
107
-
108
- #: gallery-plugin.php:229
109
- #, fuzzy
110
- msgid "sort images"
111
- msgstr "Contar las imágenes en la fila"
112
-
113
- #: gallery-plugin.php:229
114
- #, fuzzy
115
- msgid "on the plugin settings page ("
116
- msgstr "en la configuración del plugin (página"
117
-
118
- #: gallery-plugin.php:273
119
- #: gallery-plugin.php:502
120
- msgid "Title"
121
- msgstr "Título"
122
-
123
- #: gallery-plugin.php:275
124
- msgid "Alt tag"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "URL"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:276
132
- msgid "(by click on image opens a link in a new window)"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:277
136
- msgid "This setting is available in Pro version"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Open the link"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "Current window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:278
148
- msgid "New window"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:279
152
- msgid "Delete"
153
- msgstr ""
154
-
155
- #: gallery-plugin.php:292
156
- #, fuzzy
157
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
158
- msgstr "Puedes añadir la Galería Simple en una página o en un post insertando su shortcode en el contenido"
159
-
160
- #: gallery-plugin.php:294
161
- #, fuzzy
162
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
163
- msgstr "Si deseas mostrar un resumen de la galería con un enlace a la página específica de la Gallería "
164
-
165
- #: gallery-plugin.php:503
166
- msgid "Author"
167
- msgstr "Autor"
168
-
169
- #: gallery-plugin.php:504
170
- #, fuzzy
171
- msgid "Photo"
172
- msgstr "Foto de"
173
-
174
- #: gallery-plugin.php:505
175
- #, fuzzy
176
- msgid "Publishing"
177
- msgstr "Pública"
178
-
179
- #: gallery-plugin.php:506
180
- #: gallery-plugin.php:888
181
- msgid "Date"
182
- msgstr "Fecha"
183
-
184
- #: gallery-plugin.php:632
185
- #, fuzzy
186
- msgid "See images &raquo;"
187
- msgstr "Ver foto &raquo;"
188
-
189
- #: gallery-plugin.php:679
190
- msgid "requires"
191
- msgstr ""
192
-
193
- #: gallery-plugin.php:679
194
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
195
- msgstr ""
196
-
197
- #: gallery-plugin.php:679
198
- msgid "Back to the WordPress"
199
- msgstr ""
200
-
201
- #: gallery-plugin.php:679
202
- #, fuzzy
203
- msgid "Plugins page"
204
- msgstr "Plugins recomendados"
205
-
206
- #: gallery-plugin.php:764
207
- #, fuzzy
208
- msgid "Settings are saved"
209
- msgstr "Opciones guardadas."
210
-
211
- #: gallery-plugin.php:777
212
- #, fuzzy
213
- msgid "Gallery Settings"
214
- msgstr "Opciones de Galería"
215
-
216
- #: gallery-plugin.php:780
217
- #, fuzzy
218
- 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:"
219
- 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:"
220
-
221
- #: gallery-plugin.php:784
222
- #, fuzzy
223
- msgid "Image size for the album cover"
224
- msgstr "Размер для "
225
-
226
- #: gallery-plugin.php:786
227
- #: gallery-plugin.php:794
228
- #: gallery-plugin.php:807
229
- #, fuzzy
230
- msgid "Image size"
231
- msgstr "Nombre del tamaño de la imagen"
232
-
233
- #: gallery-plugin.php:787
234
- #: gallery-plugin.php:795
235
- msgid "Width (in px)"
236
- msgstr "Ancho (en px)"
237
-
238
- #: gallery-plugin.php:788
239
- #: gallery-plugin.php:796
240
- msgid "Height (in px)"
241
- msgstr "Alto (en px)"
242
-
243
- #: gallery-plugin.php:792
244
- #, fuzzy
245
- msgid "Gallery image size"
246
- msgstr "Galerías"
247
-
248
- #: gallery-plugin.php:800
249
- #, fuzzy
250
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
251
- msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
252
-
253
- #: gallery-plugin.php:805
254
- msgid "Gallery image size in the lightbox"
255
- msgstr ""
256
-
257
- #: gallery-plugin.php:808
258
- #, fuzzy
259
- msgid "Max width (in px)"
260
- msgstr "Ancho (en px)"
261
-
262
- #: gallery-plugin.php:809
263
- #, fuzzy
264
- msgid "Max height (in px)"
265
- msgstr "Alto (en px)"
266
-
267
- #: gallery-plugin.php:810
268
- msgid "Display a full size image in the lightbox"
269
- msgstr ""
270
-
271
- #: gallery-plugin.php:814
272
- msgid "Crop position"
273
- msgstr ""
274
-
275
- #: gallery-plugin.php:816
276
- msgid "Horizontal"
277
- msgstr ""
278
-
279
- #: gallery-plugin.php:818
280
- msgid "left"
281
- msgstr ""
282
-
283
- #: gallery-plugin.php:819
284
- #: gallery-plugin.php:826
285
- msgid "center"
286
- msgstr ""
287
-
288
- #: gallery-plugin.php:820
289
- msgid "right"
290
- msgstr ""
291
-
292
- #: gallery-plugin.php:823
293
- msgid "Vertical"
294
- msgstr ""
295
-
296
- #: gallery-plugin.php:825
297
- msgid "top"
298
- msgstr ""
299
-
300
- #: gallery-plugin.php:827
301
- msgid "bottom"
302
- msgstr ""
303
-
304
- #: gallery-plugin.php:832
305
- msgid "Lightbox background"
306
- msgstr ""
307
-
308
- #: gallery-plugin.php:834
309
- msgid "Default"
310
- msgstr ""
311
-
312
- #: gallery-plugin.php:835
313
- msgid "Background transparency (from 0 to 1)"
314
- msgstr ""
315
-
316
- #: gallery-plugin.php:837
317
- msgid "Select a background color"
318
- msgstr ""
319
-
320
- #: gallery-plugin.php:839
321
- msgid "Background color"
322
- msgstr ""
323
-
324
- #: gallery-plugin.php:846
325
- #: gallery-plugin.php:985
326
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
327
- msgstr ""
328
-
329
- #: gallery-plugin.php:853
330
- msgid "Images with border"
331
- msgstr ""
332
-
333
- #: gallery-plugin.php:856
334
- msgid "Border width in px, just numbers"
335
- msgstr ""
336
-
337
- #: gallery-plugin.php:858
338
- #: gallery-plugin.php:860
339
- msgid "Select a border color"
340
- msgstr ""
341
-
342
- #: gallery-plugin.php:866
343
- #, fuzzy
344
- msgid "Number of images in the row"
345
- msgstr "Contar las imágenes en la fila"
346
-
347
- #: gallery-plugin.php:872
348
- msgid "Start slideshow"
349
- msgstr "Comenzar presentación diapositivas"
350
-
351
- #: gallery-plugin.php:878
352
- msgid "Slideshow interval"
353
- msgstr "Intervalo de presentación diapositivas"
354
-
355
- #: gallery-plugin.php:886
356
- #, fuzzy
357
- msgid "Attachment ID"
358
- msgstr "id del adjunto"
359
-
360
- #: gallery-plugin.php:887
361
- #, fuzzy
362
- msgid "Image Name"
363
- msgstr "Imagen"
364
-
365
- #: gallery-plugin.php:889
366
- #, fuzzy
367
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
368
- msgstr "orden de los adjuntos (el valor entero mostrado en el campo del dialog Insertar / Subir Galeria de Medias)"
369
-
370
- #: gallery-plugin.php:890
371
- #, fuzzy
372
- msgid "Random"
373
- msgstr "aleatorio"
374
-
375
- #: gallery-plugin.php:894
376
- #, fuzzy
377
- msgid "Sort images"
378
- msgstr "Contar las imágenes en la fila"
379
-
380
- #: gallery-plugin.php:896
381
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
382
- msgstr "ASC (orden ascendente desde el valor menor al mayor - 1, 2, 3; a, b, c)"
383
-
384
- #: gallery-plugin.php:897
385
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
386
- msgstr "DESC (orden descendente desde el valor mayor al menor - 3, 2, 1; c, b, a)"
387
-
388
- #: gallery-plugin.php:901
389
- msgid "Display text above the image"
390
- msgstr ""
391
-
392
- #: gallery-plugin.php:903
393
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
394
- msgstr ""
395
-
396
- #: gallery-plugin.php:907
397
- #, fuzzy
398
- msgid "Display the Back link"
399
- msgstr "Mostrar el enlace de Regresar"
400
-
401
- #: gallery-plugin.php:913
402
- #, fuzzy
403
- msgid "Display the Back link in the shortcode"
404
- msgstr "Mostrar el enlace de Regresar en shortcode"
405
-
406
- #: gallery-plugin.php:919
407
- msgid "The Back link text"
408
- msgstr ""
409
-
410
- #: gallery-plugin.php:925
411
- msgid "The Back link URL"
412
- msgstr ""
413
-
414
- #: gallery-plugin.php:927
415
- msgid "Gallery page (Page with Gallery Template)"
416
- msgstr ""
417
-
418
- #: gallery-plugin.php:929
419
- msgid "(Full URL to custom page)"
420
- msgstr ""
421
-
422
- #: gallery-plugin.php:933
423
- #, fuzzy
424
- msgid "The Read More link text"
425
- msgstr "Etiqueta para el enlace Leer Mas"
426
-
427
- #: gallery-plugin.php:939
428
- msgid "Add gallery to the search"
429
- msgstr ""
430
-
431
- #: gallery-plugin.php:955
432
- #: gallery-plugin.php:958
433
- #: gallery-plugin.php:962
434
- msgid "Using Custom Search powered by"
435
- msgstr ""
436
-
437
- #: gallery-plugin.php:958
438
- msgid "Activate Custom Search"
439
- msgstr ""
440
-
441
- #: gallery-plugin.php:962
442
- msgid "Download Custom Search"
443
- msgstr ""
444
-
445
- #: gallery-plugin.php:969
446
- msgid "Display Like buttons in the lightbox"
447
- msgstr ""
448
-
449
- #: gallery-plugin.php:971
450
- msgid "FaceBook"
451
- msgstr ""
452
-
453
- #: gallery-plugin.php:972
454
- #, fuzzy
455
- msgid "Twitter"
456
- msgstr "Título"
457
-
458
- #: gallery-plugin.php:973
459
- msgid "Pinterest"
460
- msgstr ""
461
-
462
- #: gallery-plugin.php:974
463
- msgid "Google +1"
464
- msgstr ""
465
-
466
- #: gallery-plugin.php:978
467
- #, fuzzy
468
- msgid "Slug for gallery item"
469
- msgstr "Tamaño de la galería de imágenes"
470
-
471
- #: gallery-plugin.php:980
472
- msgid "for any structure of permalinks except the default structure"
473
- msgstr ""
474
-
475
- #: gallery-plugin.php:993
476
- msgid "Save Changes"
477
- msgstr "Guardar Cambios"
478
-
479
- #: gallery-plugin.php:1005
480
- #: gallery-plugin.php:1020
481
- msgid "Settings"
482
- msgstr "Configuración"
483
-
484
- #: gallery-plugin.php:1006
485
- msgid "FAQ"
486
- msgstr "FAQ "
487
-
488
- #: gallery-plugin.php:1007
489
- msgid "Support"
490
- msgstr "Soporte"
491
-
492
- #: gallery-plugin.php:1220
493
- #: template/gallery-single-template.php:77
494
- #, fuzzy
495
- msgid "Sorry, nothing found."
496
- msgstr "Lo sentimos - nada que encontrar."
497
-
498
- #: gallery-plugin.php:1242
499
- #: template/gallery-single-template.php:103
500
- #, fuzzy
501
- msgid "Download high resolution image"
502
- msgstr "Descargar la imagen en alta resolución"
503
-
504
- #: template/gallery-single-template.php:103
505
- #, fuzzy
506
- msgid "Image"
507
- msgstr "Imagen"
508
-
509
- #, fuzzy
510
- #~ msgid "PHP Max Upload Size"
511
- #~ msgstr "Subir Archivo"
512
- #~ msgid "Activated plugins"
513
- #~ msgstr "Plugins Activados"
514
- #~ msgid "Read more"
515
- #~ msgstr "Leer más"
516
- #~ msgid "Installed plugins"
517
- #~ msgstr "Plugins instalados"
518
- #~ msgid "Recommended plugins"
519
- #~ msgstr "Plugins recomendados"
520
-
521
- #, fuzzy
522
- #~ msgid "Free plugins"
523
- #~ msgstr "Plugins recomendados"
524
- #~ msgid "Download"
525
- #~ msgstr "Descargar"
526
- #~ msgid "Install %s"
527
- #~ msgstr "Instalar %s"
528
- #~ msgid "Install now from wordpress.org"
529
- #~ msgstr "Instalar ahora desde wordpress.org"
530
-
531
- #, fuzzy
532
- #~ msgid "If you have any questions, please contact us via"
533
- #~ msgstr ""
534
- #~ "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través "
535
- #~ "de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en "
536
- #~ "nuestro sitio"
537
-
538
- #, fuzzy
539
- #~ msgid "Active Plugins"
540
- #~ msgstr "Plugins Activados"
541
-
542
- #, fuzzy
543
- #~ msgid "Inactive Plugins"
544
- #~ msgstr "Plugins Activados"
545
-
546
- #, fuzzy
547
- #~ msgid "Send to support"
548
- #~ msgstr "Soporte"
549
- #~ msgid "Add New"
550
- #~ msgstr "Agrega Nueva"
551
- #~ msgid "Search Galleries"
552
- #~ msgstr "Buscar Galerías"
553
- #~ msgid "Please do not forget to select "
554
- #~ msgstr "Por favor no olvide seleccionar"
555
- #~ msgid "Attachments order by"
556
- #~ msgstr "Orden de los adjuntos por"
557
- #~ msgid "attachments order"
558
- #~ msgstr "orden de los adjuntos"
559
- #~ msgid "The size of the cover album for gallery"
560
- #~ msgstr "El tamaño de la cubierta del álbum de la galería"
561
- #~ msgid "attachment title"
562
- #~ msgstr "título del adjunto"
563
- #~ msgid "date"
564
- #~ msgstr "fecha"
565
- #~ msgid "Attachments order"
566
- #~ msgstr "Orden de los Adjuntos"
567
- #~ msgid "Label for Return link"
568
- #~ msgstr "Etiqueta para el enlace Regresar"
569
-
570
- #, fuzzy
571
- #~ msgid "URL for Return link"
572
- #~ msgstr "Etiqueta para el enlace Regresar"
573
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-fa_IR.mo DELETED
Binary file
languages/gallery-fa_IR.po DELETED
@@ -1,555 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:09+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:09+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Einolah Kiamehr <einkia@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: fa_IR\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=2;plural=n>1;\n"
17
- "X-Generator: Poedit 1.5.4\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: gallery-plugin.php:101
21
- #: gallery-plugin.php:771
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
-
25
- #: gallery-plugin.php:126
26
- #: gallery-plugin.php:136
27
- msgid "Galleries"
28
- msgstr "گالری ها"
29
-
30
- #: gallery-plugin.php:127
31
- #: gallery-plugin.php:606
32
- msgid "Gallery"
33
- msgstr "گالری"
34
-
35
- #: gallery-plugin.php:128
36
- #, fuzzy
37
- msgid "Add a Gallery"
38
- msgstr "اضافه کردن گالری"
39
-
40
- #: gallery-plugin.php:129
41
- msgid "Add New Gallery"
42
- msgstr "اضافه کردن گالری"
43
-
44
- #: gallery-plugin.php:130
45
- msgid "Edit Gallery"
46
- msgstr "ویرایش گالری"
47
-
48
- #: gallery-plugin.php:131
49
- msgid "New Gallery"
50
- msgstr "گالری جدید"
51
-
52
- #: gallery-plugin.php:132
53
- msgid "View Gallery"
54
- msgstr "مشاهده گالری"
55
-
56
- #: gallery-plugin.php:133
57
- #, fuzzy
58
- msgid "Find a Gallery"
59
- msgstr "ویرایش گالری"
60
-
61
- #: gallery-plugin.php:134
62
- #, fuzzy
63
- msgid "No Gallery found"
64
- msgstr "هیچ گالری پیدا نشد"
65
-
66
- #: gallery-plugin.php:191
67
- msgid "Upload File"
68
- msgstr "آپلود فایل"
69
-
70
- #: gallery-plugin.php:192
71
- msgid "Gallery Shortcode"
72
- msgstr "کد نمایش گالری"
73
-
74
- #: gallery-plugin.php:210
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr ""
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "انتخاب یک عکس برای آپلود "
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "برای استفاده از آپلودر فایل ، لطفا جاوا اسکریپت را فعال کنید."
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- #, fuzzy
93
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
94
- msgstr "لطفا از گرفتن و رها کردن توابع برای سفارشی ساختن عکسهای خروجی استفاده کنید و فراموش نکنید که پست را ذخیره کنید."
95
-
96
- #: gallery-plugin.php:229
97
- msgid "Please make a choice"
98
- msgstr ""
99
-
100
- #: gallery-plugin.php:229
101
- #: gallery-plugin.php:884
102
- #, fuzzy
103
- msgid "Sort images by"
104
- msgstr "تعداد عکسها در سطر"
105
-
106
- #: gallery-plugin.php:229
107
- #, fuzzy
108
- msgid "sort images"
109
- msgstr "تعداد عکسها در سطر"
110
-
111
- #: gallery-plugin.php:229
112
- #, fuzzy
113
- msgid "on the plugin settings page ("
114
- msgstr "صفحه تنظیمات افزونه"
115
-
116
- #: gallery-plugin.php:273
117
- #: gallery-plugin.php:502
118
- msgid "Title"
119
- msgstr "عنوان"
120
-
121
- #: gallery-plugin.php:275
122
- msgid "Alt tag"
123
- msgstr ""
124
-
125
- #: gallery-plugin.php:276
126
- msgid "URL"
127
- msgstr ""
128
-
129
- #: gallery-plugin.php:276
130
- msgid "(by click on image opens a link in a new window)"
131
- msgstr ""
132
-
133
- #: gallery-plugin.php:277
134
- msgid "This setting is available in Pro version"
135
- msgstr ""
136
-
137
- #: gallery-plugin.php:278
138
- msgid "Open the link"
139
- msgstr ""
140
-
141
- #: gallery-plugin.php:278
142
- msgid "Current window"
143
- msgstr ""
144
-
145
- #: gallery-plugin.php:278
146
- msgid "New window"
147
- msgstr ""
148
-
149
- #: gallery-plugin.php:279
150
- #, fuzzy
151
- msgid "Delete"
152
- msgstr "تاریخ"
153
-
154
- #: gallery-plugin.php:292
155
- #, fuzzy
156
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
157
- msgstr "شما میتوانید به برگه یا پست با افزودن shortcode به محتوا یک گالری اضافه کنید. "
158
-
159
- #: gallery-plugin.php:294
160
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
161
- msgstr ""
162
-
163
- #: gallery-plugin.php:503
164
- msgid "Author"
165
- msgstr "سازنده"
166
-
167
- #: gallery-plugin.php:504
168
- #, fuzzy
169
- msgid "Photo"
170
- msgstr "عکسِ"
171
-
172
- #: gallery-plugin.php:505
173
- #, fuzzy
174
- msgid "Publishing"
175
- msgstr "عمومی"
176
-
177
- #: gallery-plugin.php:506
178
- #: gallery-plugin.php:888
179
- msgid "Date"
180
- msgstr "تاریخ"
181
-
182
- #: gallery-plugin.php:632
183
- #, fuzzy
184
- msgid "See images &raquo;"
185
- msgstr "&raquoدیدن عکس;"
186
-
187
- #: gallery-plugin.php:679
188
- msgid "requires"
189
- msgstr ""
190
-
191
- #: gallery-plugin.php:679
192
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
193
- msgstr ""
194
-
195
- #: gallery-plugin.php:679
196
- msgid "Back to the WordPress"
197
- msgstr ""
198
-
199
- #: gallery-plugin.php:679
200
- msgid "Plugins page"
201
- msgstr ""
202
-
203
- #: gallery-plugin.php:764
204
- #, fuzzy
205
- msgid "Settings are saved"
206
- msgstr "تنظیمات ذخیره شد."
207
-
208
- #: gallery-plugin.php:777
209
- #, fuzzy
210
- msgid "Gallery Settings"
211
- msgstr "تنظیمات گالری"
212
-
213
- #: gallery-plugin.php:780
214
- #, fuzzy
215
- 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:"
216
- msgstr "اگر میخواهید یک گالری جدید اضافه کنید ، کافیه shortcode را در نوشته یا برگه خود کپی کنید"
217
-
218
- #: gallery-plugin.php:784
219
- #, fuzzy
220
- msgid "Image size for the album cover"
221
- msgstr "اندازه دوره آلبوم گالری"
222
-
223
- #: gallery-plugin.php:786
224
- #: gallery-plugin.php:794
225
- #: gallery-plugin.php:807
226
- #, fuzzy
227
- msgid "Image size"
228
- msgstr " اندازه عکس"
229
-
230
- #: gallery-plugin.php:787
231
- #: gallery-plugin.php:795
232
- msgid "Width (in px)"
233
- msgstr "عرض (به pixels)"
234
-
235
- #: gallery-plugin.php:788
236
- #: gallery-plugin.php:796
237
- msgid "Height (in px)"
238
- msgstr "ارتفاع (به pixels)"
239
-
240
- #: gallery-plugin.php:792
241
- #, fuzzy
242
- msgid "Gallery image size"
243
- msgstr "گالری ها"
244
-
245
- #: gallery-plugin.php:800
246
- #, fuzzy
247
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
248
- msgstr "وردپرس میتواند یک کپی از عکسهای بند انگشتی نوشته ها را با اندازه دلخواه بسازد وقتی شما یک عکس جدید را بار گذاری میکنید."
249
-
250
- #: gallery-plugin.php:805
251
- msgid "Gallery image size in the lightbox"
252
- msgstr ""
253
-
254
- #: gallery-plugin.php:808
255
- #, fuzzy
256
- msgid "Max width (in px)"
257
- msgstr "عرض (به pixels)"
258
-
259
- #: gallery-plugin.php:809
260
- #, fuzzy
261
- msgid "Max height (in px)"
262
- msgstr "ارتفاع (به pixels)"
263
-
264
- #: gallery-plugin.php:810
265
- msgid "Display a full size image in the lightbox"
266
- msgstr ""
267
-
268
- #: gallery-plugin.php:814
269
- msgid "Crop position"
270
- msgstr ""
271
-
272
- #: gallery-plugin.php:816
273
- msgid "Horizontal"
274
- msgstr ""
275
-
276
- #: gallery-plugin.php:818
277
- msgid "left"
278
- msgstr ""
279
-
280
- #: gallery-plugin.php:819
281
- #: gallery-plugin.php:826
282
- msgid "center"
283
- msgstr ""
284
-
285
- #: gallery-plugin.php:820
286
- msgid "right"
287
- msgstr ""
288
-
289
- #: gallery-plugin.php:823
290
- msgid "Vertical"
291
- msgstr ""
292
-
293
- #: gallery-plugin.php:825
294
- msgid "top"
295
- msgstr ""
296
-
297
- #: gallery-plugin.php:827
298
- msgid "bottom"
299
- msgstr ""
300
-
301
- #: gallery-plugin.php:832
302
- msgid "Lightbox background"
303
- msgstr ""
304
-
305
- #: gallery-plugin.php:834
306
- msgid "Default"
307
- msgstr ""
308
-
309
- #: gallery-plugin.php:835
310
- msgid "Background transparency (from 0 to 1)"
311
- msgstr ""
312
-
313
- #: gallery-plugin.php:837
314
- msgid "Select a background color"
315
- msgstr ""
316
-
317
- #: gallery-plugin.php:839
318
- msgid "Background color"
319
- msgstr ""
320
-
321
- #: gallery-plugin.php:846
322
- #: gallery-plugin.php:985
323
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
324
- msgstr ""
325
-
326
- #: gallery-plugin.php:853
327
- msgid "Images with border"
328
- msgstr ""
329
-
330
- #: gallery-plugin.php:856
331
- msgid "Border width in px, just numbers"
332
- msgstr ""
333
-
334
- #: gallery-plugin.php:858
335
- #: gallery-plugin.php:860
336
- msgid "Select a border color"
337
- msgstr ""
338
-
339
- #: gallery-plugin.php:866
340
- #, fuzzy
341
- msgid "Number of images in the row"
342
- msgstr "تعداد عکسها در سطر"
343
-
344
- #: gallery-plugin.php:872
345
- msgid "Start slideshow"
346
- msgstr "نمایش اسلایدشو"
347
-
348
- #: gallery-plugin.php:878
349
- msgid "Slideshow interval"
350
- msgstr "فاصله بین اسلایدشو"
351
-
352
- #: gallery-plugin.php:886
353
- #, fuzzy
354
- msgid "Attachment ID"
355
- msgstr "ای دی سنجاق شده "
356
-
357
- #: gallery-plugin.php:887
358
- #, fuzzy
359
- msgid "Image Name"
360
- msgstr "عکس "
361
-
362
- #: gallery-plugin.php:889
363
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
364
- msgstr ""
365
-
366
- #: gallery-plugin.php:890
367
- #, fuzzy
368
- msgid "Random"
369
- msgstr "تصادفی"
370
-
371
- #: gallery-plugin.php:894
372
- #, fuzzy
373
- msgid "Sort images"
374
- msgstr "تعداد عکسها در سطر"
375
-
376
- #: gallery-plugin.php:896
377
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
378
- msgstr ""
379
-
380
- #: gallery-plugin.php:897
381
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
382
- msgstr ""
383
-
384
- #: gallery-plugin.php:901
385
- msgid "Display text above the image"
386
- msgstr ""
387
-
388
- #: gallery-plugin.php:903
389
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
390
- msgstr ""
391
-
392
- #: gallery-plugin.php:907
393
- #, fuzzy
394
- msgid "Display the Back link"
395
- msgstr "نشان دادن لینک برگشت"
396
-
397
- #: gallery-plugin.php:913
398
- #, fuzzy
399
- msgid "Display the Back link in the shortcode"
400
- msgstr "نشان دادن لینک برگشت در شرت کد"
401
-
402
- #: gallery-plugin.php:919
403
- msgid "The Back link text"
404
- msgstr ""
405
-
406
- #: gallery-plugin.php:925
407
- msgid "The Back link URL"
408
- msgstr ""
409
-
410
- #: gallery-plugin.php:927
411
- msgid "Gallery page (Page with Gallery Template)"
412
- msgstr ""
413
-
414
- #: gallery-plugin.php:929
415
- msgid "(Full URL to custom page)"
416
- msgstr ""
417
-
418
- #: gallery-plugin.php:933
419
- #, fuzzy
420
- msgid "The Read More link text"
421
- msgstr "برچسب برای لینک بیشتر..."
422
-
423
- #: gallery-plugin.php:939
424
- msgid "Add gallery to the search"
425
- msgstr ""
426
-
427
- #: gallery-plugin.php:955
428
- #: gallery-plugin.php:958
429
- #: gallery-plugin.php:962
430
- msgid "Using Custom Search powered by"
431
- msgstr ""
432
-
433
- #: gallery-plugin.php:958
434
- msgid "Activate Custom Search"
435
- msgstr ""
436
-
437
- #: gallery-plugin.php:962
438
- msgid "Download Custom Search"
439
- msgstr ""
440
-
441
- #: gallery-plugin.php:969
442
- msgid "Display Like buttons in the lightbox"
443
- msgstr ""
444
-
445
- #: gallery-plugin.php:971
446
- msgid "FaceBook"
447
- msgstr ""
448
-
449
- #: gallery-plugin.php:972
450
- #, fuzzy
451
- msgid "Twitter"
452
- msgstr "عنوان"
453
-
454
- #: gallery-plugin.php:973
455
- msgid "Pinterest"
456
- msgstr ""
457
-
458
- #: gallery-plugin.php:974
459
- msgid "Google +1"
460
- msgstr ""
461
-
462
- #: gallery-plugin.php:978
463
- #, fuzzy
464
- msgid "Slug for gallery item"
465
- msgstr "اندازه عکسهای گالری"
466
-
467
- #: gallery-plugin.php:980
468
- msgid "for any structure of permalinks except the default structure"
469
- msgstr ""
470
-
471
- #: gallery-plugin.php:993
472
- msgid "Save Changes"
473
- msgstr "ذخیره تنظیمات"
474
-
475
- #: gallery-plugin.php:1005
476
- #: gallery-plugin.php:1020
477
- msgid "Settings"
478
- msgstr "تنظیمات"
479
-
480
- #: gallery-plugin.php:1006
481
- msgid "FAQ"
482
- msgstr "FAQ"
483
-
484
- #: gallery-plugin.php:1007
485
- msgid "Support"
486
- msgstr "پشتیبانی"
487
-
488
- #: gallery-plugin.php:1220
489
- #: template/gallery-single-template.php:77
490
- #, fuzzy
491
- msgid "Sorry, nothing found."
492
- msgstr "متاسفم؛چیزی یافت نشد"
493
-
494
- #: gallery-plugin.php:1242
495
- #: template/gallery-single-template.php:103
496
- msgid "Download high resolution image"
497
- msgstr ""
498
-
499
- #: template/gallery-single-template.php:103
500
- #, fuzzy
501
- msgid "Image"
502
- msgstr "عکس "
503
-
504
- #, fuzzy
505
- #~ msgid "PHP Max Upload Size"
506
- #~ msgstr "آپلود فایل"
507
- #~ msgid "Activated plugins"
508
- #~ msgstr "فعالسازی افزونه"
509
- #~ msgid "Read more"
510
- #~ msgstr "بیشتر..."
511
- #~ msgid "Installed plugins"
512
- #~ msgstr "نصب افزونه"
513
-
514
- #, fuzzy
515
- #~ msgid "Free plugins"
516
- #~ msgstr "فعالسازی افزونه"
517
- #~ msgid "Download"
518
- #~ msgstr "دانلود"
519
- #~ msgid "Install %s"
520
- #~ msgstr "نصب %s"
521
- #~ msgid "Install now from wordpress.org"
522
- #~ msgstr "در حال نصب از سایت وردپرس"
523
-
524
- #, fuzzy
525
- #~ msgid "If you have any questions, please contact us via"
526
- #~ msgstr ""
527
- #~ "اگر شما سوالی دارید؛لطفا با ما با آدرس plugin@bestwebsoft.com تماس "
528
- #~ "بگیرید یا فرم تماس مارا در سایتمان پر کنید و سوال خود را آنجا بنویسید."
529
-
530
- #, fuzzy
531
- #~ msgid "Active Plugins"
532
- #~ msgstr "فعالسازی افزونه"
533
-
534
- #, fuzzy
535
- #~ msgid "Inactive Plugins"
536
- #~ msgstr "فعالسازی افزونه"
537
-
538
- #, fuzzy
539
- #~ msgid "Send to support"
540
- #~ msgstr "پشتیبانی"
541
- #~ msgid "Add New"
542
- #~ msgstr "اضافه کردن"
543
- #~ msgid "Search Galleries"
544
- #~ msgstr "جستجودر گالریها"
545
- #~ msgid "Please do not forget to select "
546
- #~ msgstr "لطفا انتخاب را فراموش نکنید."
547
- #~ msgid "Attachments order by"
548
- #~ msgstr "الصاق(Attachments ) به سفارش"
549
- #~ msgid "attachment title"
550
- #~ msgstr "عنوان سنجاق شده"
551
- #~ msgid "date"
552
- #~ msgstr "تاریخ"
553
- #~ msgid "Label for Return link"
554
- #~ msgstr "برپسبهای لینگ برگشتی"
555
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-11-08 11:17+0300\n"
6
- "PO-Revision-Date: 2013-11-08 11:17+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:101
21
- #: gallery-plugin.php:771
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
 
@@ -93,7 +93,7 @@ msgid "Please make a choice"
93
  msgstr "Merci de faire un choix"
94
 
95
  #: gallery-plugin.php:229
96
- #: gallery-plugin.php:884
97
  msgid "Sort images by"
98
  msgstr "Trier les images par"
99
 
@@ -163,307 +163,324 @@ msgid "Publishing"
163
  msgstr "Public"
164
 
165
  #: gallery-plugin.php:506
166
- #: gallery-plugin.php:888
167
  msgid "Date"
168
  msgstr "Date"
169
 
170
- #: gallery-plugin.php:632
171
  msgid "See images &raquo;"
172
  msgstr "Voir les images &raquo;"
173
 
174
- #: gallery-plugin.php:679
175
  msgid "requires"
176
  msgstr "requis"
177
 
178
- #: gallery-plugin.php:679
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr "ou supérieure, c'est pourquoi il a été désactive! Merci de faire la mise à jour de WordPress et de ré-essayer!"
181
 
182
- #: gallery-plugin.php:679
183
  msgid "Back to the WordPress"
184
  msgstr "Retour à WordPress"
185
 
186
- #: gallery-plugin.php:679
187
  msgid "Plugins page"
188
  msgstr "Page du plugins"
189
 
190
- #: gallery-plugin.php:764
191
  msgid "Settings are saved"
192
  msgstr "Paramètres sauvegardés."
193
 
194
- #: gallery-plugin.php:777
195
  msgid "Gallery Settings"
196
  msgstr "Paramètres de la galerie"
197
 
198
- #: gallery-plugin.php:780
199
  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:"
200
  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:"
201
 
202
- #: gallery-plugin.php:784
203
  msgid "Image size for the album cover"
204
  msgstr "Taille de la vignette de l'album"
205
 
206
- #: gallery-plugin.php:786
207
- #: gallery-plugin.php:794
208
- #: gallery-plugin.php:807
209
  msgid "Image size"
210
  msgstr "Taille de l'image"
211
 
212
- #: gallery-plugin.php:787
213
- #: gallery-plugin.php:795
214
  msgid "Width (in px)"
215
  msgstr "Largeur (en pixels)"
216
 
217
- #: gallery-plugin.php:788
218
- #: gallery-plugin.php:796
219
  msgid "Height (in px)"
220
  msgstr "Hauteur (en pixels)"
221
 
222
- #: gallery-plugin.php:792
223
  msgid "Gallery image size"
224
  msgstr "Taille de l'image de la galerie"
225
 
226
- #: gallery-plugin.php:800
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "WordPress créera une copie de la miniature avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
229
 
230
- #: gallery-plugin.php:805
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Taille de l'image de la galerie"
233
 
234
- #: gallery-plugin.php:808
235
  msgid "Max width (in px)"
236
  msgstr "Largeur maximum (en pixels)"
237
 
238
- #: gallery-plugin.php:809
239
  msgid "Max height (in px)"
240
  msgstr "Hauteur maximum (en pixels)"
241
 
242
- #: gallery-plugin.php:810
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Afficher une image en taille normale dans la boite"
245
 
246
- #: gallery-plugin.php:814
247
  msgid "Crop position"
248
  msgstr "Point de base"
249
 
250
- #: gallery-plugin.php:816
251
  msgid "Horizontal"
252
  msgstr "Horizontale"
253
 
254
- #: gallery-plugin.php:818
255
  msgid "left"
256
  msgstr "gauche"
257
 
258
- #: gallery-plugin.php:819
259
- #: gallery-plugin.php:826
260
  msgid "center"
261
  msgstr "centré"
262
 
263
- #: gallery-plugin.php:820
264
  msgid "right"
265
  msgstr "droite"
266
 
267
- #: gallery-plugin.php:823
268
  msgid "Vertical"
269
  msgstr "Verticale"
270
 
271
- #: gallery-plugin.php:825
272
  msgid "top"
273
  msgstr "haut"
274
 
275
- #: gallery-plugin.php:827
276
  msgid "bottom"
277
  msgstr "bas"
278
 
279
- #: gallery-plugin.php:832
280
  msgid "Lightbox background"
281
  msgstr "Fond de la boite"
282
 
283
- #: gallery-plugin.php:834
284
  msgid "Default"
285
  msgstr "Défaut"
286
 
287
- #: gallery-plugin.php:835
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Transparence du fond (de 0 à 1)"
290
 
291
- #: gallery-plugin.php:837
292
  msgid "Select a background color"
293
  msgstr "Choisir une couleur pour le fond"
294
 
295
- #: gallery-plugin.php:839
296
  msgid "Background color"
297
  msgstr "Couleur du fond"
298
 
299
- #: gallery-plugin.php:846
300
- #: gallery-plugin.php:985
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Cette fonction est disponible dans le version pro de ce plugin. Pour plus de détails, suivre le lien"
303
 
304
- #: gallery-plugin.php:853
305
  msgid "Images with border"
306
  msgstr "Image avec bordure"
307
 
308
- #: gallery-plugin.php:856
309
  msgid "Border width in px, just numbers"
310
  msgstr "Taille de la bordure en pixel, juste le nombre"
311
 
312
- #: gallery-plugin.php:858
313
- #: gallery-plugin.php:860
314
  msgid "Select a border color"
315
  msgstr "Choisir une couleur pour la bordure"
316
 
317
- #: gallery-plugin.php:866
318
  msgid "Number of images in the row"
319
  msgstr "Nombre d'images par ligne"
320
 
321
- #: gallery-plugin.php:872
322
  msgid "Start slideshow"
323
  msgstr "Démarer le diaporama"
324
 
325
- #: gallery-plugin.php:878
326
  msgid "Slideshow interval"
327
  msgstr "Interval de transition pour le diaporama"
328
 
329
- #: gallery-plugin.php:886
 
 
 
 
330
  msgid "Attachment ID"
331
  msgstr "ID du fichier"
332
 
333
- #: gallery-plugin.php:887
334
  msgid "Image Name"
335
  msgstr "Nom de l'image "
336
 
337
- #: gallery-plugin.php:889
338
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
339
  msgstr "Ordre de tri (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
340
 
341
- #: gallery-plugin.php:890
342
  msgid "Random"
343
  msgstr "Aléatoire"
344
 
345
- #: gallery-plugin.php:894
346
  msgid "Sort images"
347
  msgstr "Trier les images"
348
 
349
- #: gallery-plugin.php:896
350
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
351
  msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
352
 
353
- #: gallery-plugin.php:897
354
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
355
  msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
356
 
357
- #: gallery-plugin.php:901
358
  msgid "Display text above the image"
359
  msgstr "Aficher le texte au dessus de l'image"
360
 
361
- #: gallery-plugin.php:903
362
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
363
  msgstr "Si vous voulez juste afficher du texte dans une boite, désactiver l'option"
364
 
365
- #: gallery-plugin.php:907
366
  msgid "Display the Back link"
367
  msgstr "Afficher le lien de retour"
368
 
369
- #: gallery-plugin.php:913
370
  msgid "Display the Back link in the shortcode"
371
  msgstr "Afficher le lien de retour dans le code court"
372
 
373
- #: gallery-plugin.php:919
374
  msgid "The Back link text"
375
  msgstr "Le text pour le lien de retour"
376
 
377
- #: gallery-plugin.php:925
378
  msgid "The Back link URL"
379
  msgstr "L'URL pour le lien de retour"
380
 
381
- #: gallery-plugin.php:927
382
  msgid "Gallery page (Page with Gallery Template)"
383
  msgstr "Page de la galerie (Page avec le modèle de galerie)"
384
 
385
- #: gallery-plugin.php:929
386
  msgid "(Full URL to custom page)"
387
  msgstr "(URL complète pour la page spécifique)"
388
 
389
- #: gallery-plugin.php:933
390
  msgid "The Read More link text"
391
  msgstr "Texte pour le lien \"Read More\""
392
 
393
- #: gallery-plugin.php:939
394
  msgid "Add gallery to the search"
395
  msgstr "Ajouter les galeries à la recherche"
396
 
397
- #: gallery-plugin.php:955
398
  #: gallery-plugin.php:958
399
- #: gallery-plugin.php:962
 
400
  msgid "Using Custom Search powered by"
401
  msgstr "Utiliser les recherche personalisées fournies par"
402
 
403
- #: gallery-plugin.php:958
404
  msgid "Activate Custom Search"
405
  msgstr "Activer les recherche personalisées"
406
 
407
- #: gallery-plugin.php:962
408
  msgid "Download Custom Search"
409
  msgstr "Télécharger les recherches personalisées"
410
 
411
- #: gallery-plugin.php:969
412
  msgid "Display Like buttons in the lightbox"
413
  msgstr "Afficher les boutons des réseaux sociaux dans la boite"
414
 
415
- #: gallery-plugin.php:971
416
  msgid "FaceBook"
417
  msgstr "FaceBook"
418
 
419
- #: gallery-plugin.php:972
420
  msgid "Twitter"
421
  msgstr "Twitter"
422
 
423
- #: gallery-plugin.php:973
424
  msgid "Pinterest"
425
  msgstr "Pinterest"
426
 
427
- #: gallery-plugin.php:974
428
  msgid "Google +1"
429
  msgstr "Google +1"
430
 
431
- #: gallery-plugin.php:978
432
  msgid "Slug for gallery item"
433
  msgstr "Racine pour les pages des galleries"
434
 
435
- #: gallery-plugin.php:980
436
  msgid "for any structure of permalinks except the default structure"
437
  msgstr "pour toute forme de permaliens à l'exception de la forme par défaut"
438
 
439
- #: gallery-plugin.php:993
440
  msgid "Save Changes"
441
  msgstr "Sauvegarder"
442
 
443
- #: gallery-plugin.php:1005
444
- #: gallery-plugin.php:1020
445
  msgid "Settings"
446
  msgstr "Paramètres"
447
 
448
- #: gallery-plugin.php:1006
449
  msgid "FAQ"
450
  msgstr "FAQ"
451
 
452
- #: gallery-plugin.php:1007
453
  msgid "Support"
454
  msgstr "Soutien"
455
 
456
- #: gallery-plugin.php:1220
457
- #: template/gallery-single-template.php:77
458
  msgid "Sorry, nothing found."
459
  msgstr "Désolé, rien n'a été trouvé"
460
 
461
- #: gallery-plugin.php:1242
462
- #: template/gallery-single-template.php:103
463
  msgid "Download high resolution image"
464
  msgstr "Télécharger l'image en haute résolution"
465
 
466
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Image"
468
  msgstr "Image "
469
 
@@ -535,8 +552,6 @@ msgstr "Image "
535
  #~ msgstr "Extensions Pro"
536
  #~ msgid "Activated plugins"
537
  #~ msgstr "Extensions activées"
538
- #~ msgid "Read more"
539
- #~ msgstr "Lire plus..."
540
  #~ msgid "Installed plugins"
541
  #~ msgstr "Extensions installées"
542
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:32+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:32+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:101
21
+ #: gallery-plugin.php:768
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
 
93
  msgstr "Merci de faire un choix"
94
 
95
  #: gallery-plugin.php:229
96
+ #: gallery-plugin.php:887
97
  msgid "Sort images by"
98
  msgstr "Trier les images par"
99
 
163
  msgstr "Public"
164
 
165
  #: gallery-plugin.php:506
166
+ #: gallery-plugin.php:891
167
  msgid "Date"
168
  msgstr "Date"
169
 
170
+ #: gallery-plugin.php:630
171
  msgid "See images &raquo;"
172
  msgstr "Voir les images &raquo;"
173
 
174
+ #: gallery-plugin.php:677
175
  msgid "requires"
176
  msgstr "requis"
177
 
178
+ #: gallery-plugin.php:677
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr "ou supérieure, c'est pourquoi il a été désactive! Merci de faire la mise à jour de WordPress et de ré-essayer!"
181
 
182
+ #: gallery-plugin.php:677
183
  msgid "Back to the WordPress"
184
  msgstr "Retour à WordPress"
185
 
186
+ #: gallery-plugin.php:677
187
  msgid "Plugins page"
188
  msgstr "Page du plugins"
189
 
190
+ #: gallery-plugin.php:761
191
  msgid "Settings are saved"
192
  msgstr "Paramètres sauvegardés."
193
 
194
+ #: gallery-plugin.php:774
195
  msgid "Gallery Settings"
196
  msgstr "Paramètres de la galerie"
197
 
198
+ #: gallery-plugin.php:777
199
  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:"
200
  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:"
201
 
202
+ #: gallery-plugin.php:781
203
  msgid "Image size for the album cover"
204
  msgstr "Taille de la vignette de l'album"
205
 
206
+ #: gallery-plugin.php:783
207
+ #: gallery-plugin.php:791
208
+ #: gallery-plugin.php:804
209
  msgid "Image size"
210
  msgstr "Taille de l'image"
211
 
212
+ #: gallery-plugin.php:784
213
+ #: gallery-plugin.php:792
214
  msgid "Width (in px)"
215
  msgstr "Largeur (en pixels)"
216
 
217
+ #: gallery-plugin.php:785
218
+ #: gallery-plugin.php:793
219
  msgid "Height (in px)"
220
  msgstr "Hauteur (en pixels)"
221
 
222
+ #: gallery-plugin.php:789
223
  msgid "Gallery image size"
224
  msgstr "Taille de l'image de la galerie"
225
 
226
+ #: gallery-plugin.php:797
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "WordPress créera une copie de la miniature avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
229
 
230
+ #: gallery-plugin.php:802
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Taille de l'image de la galerie"
233
 
234
+ #: gallery-plugin.php:805
235
  msgid "Max width (in px)"
236
  msgstr "Largeur maximum (en pixels)"
237
 
238
+ #: gallery-plugin.php:806
239
  msgid "Max height (in px)"
240
  msgstr "Hauteur maximum (en pixels)"
241
 
242
+ #: gallery-plugin.php:807
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Afficher une image en taille normale dans la boite"
245
 
246
+ #: gallery-plugin.php:811
247
  msgid "Crop position"
248
  msgstr "Point de base"
249
 
250
+ #: gallery-plugin.php:813
251
  msgid "Horizontal"
252
  msgstr "Horizontale"
253
 
254
+ #: gallery-plugin.php:815
255
  msgid "left"
256
  msgstr "gauche"
257
 
258
+ #: gallery-plugin.php:816
259
+ #: gallery-plugin.php:823
260
  msgid "center"
261
  msgstr "centré"
262
 
263
+ #: gallery-plugin.php:817
264
  msgid "right"
265
  msgstr "droite"
266
 
267
+ #: gallery-plugin.php:820
268
  msgid "Vertical"
269
  msgstr "Verticale"
270
 
271
+ #: gallery-plugin.php:822
272
  msgid "top"
273
  msgstr "haut"
274
 
275
+ #: gallery-plugin.php:824
276
  msgid "bottom"
277
  msgstr "bas"
278
 
279
+ #: gallery-plugin.php:829
280
  msgid "Lightbox background"
281
  msgstr "Fond de la boite"
282
 
283
+ #: gallery-plugin.php:831
284
  msgid "Default"
285
  msgstr "Défaut"
286
 
287
+ #: gallery-plugin.php:832
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Transparence du fond (de 0 à 1)"
290
 
291
+ #: gallery-plugin.php:834
292
  msgid "Select a background color"
293
  msgstr "Choisir une couleur pour le fond"
294
 
295
+ #: gallery-plugin.php:836
296
  msgid "Background color"
297
  msgstr "Couleur du fond"
298
 
299
+ #: gallery-plugin.php:843
300
+ #: gallery-plugin.php:988
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Cette fonction est disponible dans le version pro de ce plugin. Pour plus de détails, suivre le lien"
303
 
304
+ #: gallery-plugin.php:850
305
  msgid "Images with border"
306
  msgstr "Image avec bordure"
307
 
308
+ #: gallery-plugin.php:853
309
  msgid "Border width in px, just numbers"
310
  msgstr "Taille de la bordure en pixel, juste le nombre"
311
 
312
+ #: gallery-plugin.php:855
313
+ #: gallery-plugin.php:857
314
  msgid "Select a border color"
315
  msgstr "Choisir une couleur pour la bordure"
316
 
317
+ #: gallery-plugin.php:863
318
  msgid "Number of images in the row"
319
  msgstr "Nombre d'images par ligne"
320
 
321
+ #: gallery-plugin.php:869
322
  msgid "Start slideshow"
323
  msgstr "Démarer le diaporama"
324
 
325
+ #: gallery-plugin.php:875
326
  msgid "Slideshow interval"
327
  msgstr "Interval de transition pour le diaporama"
328
 
329
+ #: gallery-plugin.php:881
330
+ msgid "Use single lightbox for multiple galleries on one page"
331
+ msgstr ""
332
+
333
+ #: gallery-plugin.php:889
334
  msgid "Attachment ID"
335
  msgstr "ID du fichier"
336
 
337
+ #: gallery-plugin.php:890
338
  msgid "Image Name"
339
  msgstr "Nom de l'image "
340
 
341
+ #: gallery-plugin.php:892
342
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
343
  msgstr "Ordre de tri (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
344
 
345
+ #: gallery-plugin.php:893
346
  msgid "Random"
347
  msgstr "Aléatoire"
348
 
349
+ #: gallery-plugin.php:897
350
  msgid "Sort images"
351
  msgstr "Trier les images"
352
 
353
+ #: gallery-plugin.php:899
354
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
355
  msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
356
 
357
+ #: gallery-plugin.php:900
358
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
359
  msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
360
 
361
+ #: gallery-plugin.php:904
362
  msgid "Display text above the image"
363
  msgstr "Aficher le texte au dessus de l'image"
364
 
365
+ #: gallery-plugin.php:906
366
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
367
  msgstr "Si vous voulez juste afficher du texte dans une boite, désactiver l'option"
368
 
369
+ #: gallery-plugin.php:910
370
  msgid "Display the Back link"
371
  msgstr "Afficher le lien de retour"
372
 
373
+ #: gallery-plugin.php:916
374
  msgid "Display the Back link in the shortcode"
375
  msgstr "Afficher le lien de retour dans le code court"
376
 
377
+ #: gallery-plugin.php:922
378
  msgid "The Back link text"
379
  msgstr "Le text pour le lien de retour"
380
 
381
+ #: gallery-plugin.php:928
382
  msgid "The Back link URL"
383
  msgstr "L'URL pour le lien de retour"
384
 
385
+ #: gallery-plugin.php:930
386
  msgid "Gallery page (Page with Gallery Template)"
387
  msgstr "Page de la galerie (Page avec le modèle de galerie)"
388
 
389
+ #: gallery-plugin.php:932
390
  msgid "(Full URL to custom page)"
391
  msgstr "(URL complète pour la page spécifique)"
392
 
393
+ #: gallery-plugin.php:936
394
  msgid "The Read More link text"
395
  msgstr "Texte pour le lien \"Read More\""
396
 
397
+ #: gallery-plugin.php:942
398
  msgid "Add gallery to the search"
399
  msgstr "Ajouter les galeries à la recherche"
400
 
 
401
  #: gallery-plugin.php:958
402
+ #: gallery-plugin.php:961
403
+ #: gallery-plugin.php:965
404
  msgid "Using Custom Search powered by"
405
  msgstr "Utiliser les recherche personalisées fournies par"
406
 
407
+ #: gallery-plugin.php:961
408
  msgid "Activate Custom Search"
409
  msgstr "Activer les recherche personalisées"
410
 
411
+ #: gallery-plugin.php:965
412
  msgid "Download Custom Search"
413
  msgstr "Télécharger les recherches personalisées"
414
 
415
+ #: gallery-plugin.php:972
416
  msgid "Display Like buttons in the lightbox"
417
  msgstr "Afficher les boutons des réseaux sociaux dans la boite"
418
 
419
+ #: gallery-plugin.php:974
420
  msgid "FaceBook"
421
  msgstr "FaceBook"
422
 
423
+ #: gallery-plugin.php:975
424
  msgid "Twitter"
425
  msgstr "Twitter"
426
 
427
+ #: gallery-plugin.php:976
428
  msgid "Pinterest"
429
  msgstr "Pinterest"
430
 
431
+ #: gallery-plugin.php:977
432
  msgid "Google +1"
433
  msgstr "Google +1"
434
 
435
+ #: gallery-plugin.php:981
436
  msgid "Slug for gallery item"
437
  msgstr "Racine pour les pages des galleries"
438
 
439
+ #: gallery-plugin.php:983
440
  msgid "for any structure of permalinks except the default structure"
441
  msgstr "pour toute forme de permaliens à l'exception de la forme par défaut"
442
 
443
+ #: gallery-plugin.php:996
444
  msgid "Save Changes"
445
  msgstr "Sauvegarder"
446
 
447
+ #: gallery-plugin.php:1008
448
+ #: gallery-plugin.php:1023
449
  msgid "Settings"
450
  msgstr "Paramètres"
451
 
452
+ #: gallery-plugin.php:1009
453
  msgid "FAQ"
454
  msgstr "FAQ"
455
 
456
+ #: gallery-plugin.php:1010
457
  msgid "Support"
458
  msgstr "Soutien"
459
 
460
+ #: gallery-plugin.php:1222
461
+ #: template/gallery-single-template.php:76
462
  msgid "Sorry, nothing found."
463
  msgstr "Désolé, rien n'a été trouvé"
464
 
465
+ #: gallery-plugin.php:1244
466
+ #: template/gallery-single-template.php:102
467
  msgid "Download high resolution image"
468
  msgstr "Télécharger l'image en haute résolution"
469
 
470
+ #: gallery-plugin.php:1464
471
+ #, fuzzy
472
+ msgid "Learn More"
473
+ msgstr "Lire plus..."
474
+
475
+ #: gallery-plugin.php:1466
476
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
477
+ msgstr ""
478
+
479
+ #: gallery-plugin.php:1467
480
+ msgid "Extend standard plugin functionality with new great options."
481
+ msgstr ""
482
+
483
+ #: template/gallery-single-template.php:102
484
  msgid "Image"
485
  msgstr "Image "
486
 
552
  #~ msgstr "Extensions Pro"
553
  #~ msgid "Activated plugins"
554
  #~ msgstr "Extensions activées"
 
 
555
  #~ msgid "Installed plugins"
556
  #~ msgstr "Extensions installées"
557
  #~ msgid "Recommended plugins"
languages/gallery-he_IL.mo DELETED
Binary file
languages/gallery-he_IL.po DELETED
@@ -1,638 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Gallery Plugin v3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+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"
12
- "Language: he_IL\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
- "X-Poedit-Basepath: ../\n"
17
- "X-Textdomain-Support: yes\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- # @ gallery
22
- #: gallery-plugin.php:101
23
- #: gallery-plugin.php:771
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
-
27
- # @ gallery
28
- #: gallery-plugin.php:126
29
- #: gallery-plugin.php:136
30
- msgid "Galleries"
31
- msgstr "גלריות"
32
-
33
- # @ gallery
34
- #: gallery-plugin.php:127
35
- #: gallery-plugin.php:606
36
- msgid "Gallery"
37
- msgstr "גלריה"
38
-
39
- # @ gallery
40
- #: gallery-plugin.php:128
41
- #, fuzzy
42
- msgid "Add a Gallery"
43
- msgstr "הוסף גלריה חדשה"
44
-
45
- # @ gallery
46
- #: gallery-plugin.php:129
47
- msgid "Add New Gallery"
48
- msgstr "הוסף גלריה חדשה"
49
-
50
- # @ gallery
51
- #: gallery-plugin.php:130
52
- msgid "Edit Gallery"
53
- msgstr "ערוך גלריה"
54
-
55
- # @ gallery
56
- #: gallery-plugin.php:131
57
- msgid "New Gallery"
58
- msgstr "גלריה חדשה"
59
-
60
- # @ gallery
61
- #: gallery-plugin.php:132
62
- msgid "View Gallery"
63
- msgstr "הצג גלריה"
64
-
65
- # @ gallery
66
- #: gallery-plugin.php:133
67
- #, fuzzy
68
- msgid "Find a Gallery"
69
- msgstr "ערוך גלריה"
70
-
71
- # @ gallery
72
- #: gallery-plugin.php:134
73
- #, fuzzy
74
- msgid "No Gallery found"
75
- msgstr "לא נמצאו גלריות"
76
-
77
- # @ gallery
78
- #: gallery-plugin.php:191
79
- msgid "Upload File"
80
- msgstr "העלה קובץ"
81
-
82
- # @ gallery
83
- #: gallery-plugin.php:192
84
- msgid "Gallery Shortcode"
85
- msgstr "קיצור קוד גלריה"
86
-
87
- # @ gallery
88
- #: gallery-plugin.php:210
89
- #, fuzzy
90
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
91
- msgstr "אין הרשאת כתיבה אל הספריה הזמנית של הגלריה (gallery-plugin/upload/files) שרת שלך. אנא השתמש בהעלאת התמונות של וורדפרס כדי להעלות תמונות (מדיה > ספריה)"
92
-
93
- # @ gallery
94
- #: gallery-plugin.php:214
95
- #, fuzzy
96
- msgid "Choose an image for upload:"
97
- msgstr "בחר תמונה להעלאה:"
98
-
99
- # @ gallery
100
- #: gallery-plugin.php:219
101
- msgid "Please enable JavaScript to use the file uploader."
102
- msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
103
-
104
- #: gallery-plugin.php:226
105
- msgid "Allow the download link for all images in this gallery"
106
- msgstr ""
107
-
108
- #: gallery-plugin.php:227
109
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
110
- msgstr ""
111
-
112
- #: gallery-plugin.php:229
113
- msgid "Please make a choice"
114
- msgstr ""
115
-
116
- # @ gallery
117
- #: gallery-plugin.php:229
118
- #: gallery-plugin.php:884
119
- #, fuzzy
120
- msgid "Sort images by"
121
- msgstr "מספר תמונות בשורה"
122
-
123
- # @ gallery
124
- #: gallery-plugin.php:229
125
- #, fuzzy
126
- msgid "sort images"
127
- msgstr "מספר תמונות בשורה"
128
-
129
- #: gallery-plugin.php:229
130
- msgid "on the plugin settings page ("
131
- msgstr ""
132
-
133
- # @ gallery
134
- #: gallery-plugin.php:273
135
- #: gallery-plugin.php:502
136
- msgid "Title"
137
- msgstr "כותרת"
138
-
139
- #: gallery-plugin.php:275
140
- msgid "Alt tag"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:276
144
- msgid "URL"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:276
148
- msgid "(by click on image opens a link in a new window)"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:277
152
- msgid "This setting is available in Pro version"
153
- msgstr ""
154
-
155
- #: gallery-plugin.php:278
156
- msgid "Open the link"
157
- msgstr ""
158
-
159
- #: gallery-plugin.php:278
160
- msgid "Current window"
161
- msgstr ""
162
-
163
- #: gallery-plugin.php:278
164
- msgid "New window"
165
- msgstr ""
166
-
167
- #: gallery-plugin.php:279
168
- msgid "Delete"
169
- msgstr ""
170
-
171
- # @ gallery
172
- #: gallery-plugin.php:292
173
- #, fuzzy
174
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
175
- msgstr "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד בתוכן"
176
-
177
- #: gallery-plugin.php:294
178
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
179
- msgstr ""
180
-
181
- # @ gallery
182
- #: gallery-plugin.php:503
183
- msgid "Author"
184
- msgstr "מחבר"
185
-
186
- # @ gallery
187
- #: gallery-plugin.php:504
188
- #, fuzzy
189
- msgid "Photo"
190
- msgstr "של התמונה"
191
-
192
- # @ gallery
193
- #: gallery-plugin.php:505
194
- #, fuzzy
195
- msgid "Publishing"
196
- msgstr "ציבורי"
197
-
198
- # @ gallery
199
- #: gallery-plugin.php:506
200
- #: gallery-plugin.php:888
201
- msgid "Date"
202
- msgstr "תאריך"
203
-
204
- # @ gallery
205
- #: gallery-plugin.php:632
206
- #, fuzzy
207
- msgid "See images &raquo;"
208
- msgstr "ראו תמונה »"
209
-
210
- #: gallery-plugin.php:679
211
- msgid "requires"
212
- msgstr ""
213
-
214
- #: gallery-plugin.php:679
215
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
216
- msgstr ""
217
-
218
- #: gallery-plugin.php:679
219
- msgid "Back to the WordPress"
220
- msgstr ""
221
-
222
- # @ gallery
223
- #: gallery-plugin.php:679
224
- #, fuzzy
225
- msgid "Plugins page"
226
- msgstr "תוספים מומלצים"
227
-
228
- # @ gallery
229
- #: gallery-plugin.php:764
230
- #, fuzzy
231
- msgid "Settings are saved"
232
- msgstr "האפשרויות נשמרו."
233
-
234
- # @ gallery
235
- #: gallery-plugin.php:777
236
- #, fuzzy
237
- msgid "Gallery Settings"
238
- msgstr "אפשרויות גלריה"
239
-
240
- # @ gallery
241
- #: gallery-plugin.php:780
242
- #, fuzzy
243
- 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:"
244
- msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
245
-
246
- # @ gallery
247
- #: gallery-plugin.php:784
248
- #, fuzzy
249
- msgid "Image size for the album cover"
250
- msgstr "גודל הכריכה של האלבום של הגלריה"
251
-
252
- # @ gallery
253
- #: gallery-plugin.php:786
254
- #: gallery-plugin.php:794
255
- #: gallery-plugin.php:807
256
- #, fuzzy
257
- msgid "Image size"
258
- msgstr "שם גודל תמונה"
259
-
260
- # @ gallery
261
- #: gallery-plugin.php:787
262
- #: gallery-plugin.php:795
263
- msgid "Width (in px)"
264
- msgstr "רוחב (בפיקסלים)"
265
-
266
- # @ gallery
267
- #: gallery-plugin.php:788
268
- #: gallery-plugin.php:796
269
- msgid "Height (in px)"
270
- msgstr "גובה (בפיקסלים)"
271
-
272
- # @ gallery
273
- #: gallery-plugin.php:792
274
- #, fuzzy
275
- msgid "Gallery image size"
276
- msgstr "גלריות"
277
-
278
- # @ gallery
279
- #: gallery-plugin.php:800
280
- #, fuzzy
281
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
282
- msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
283
-
284
- #: gallery-plugin.php:805
285
- msgid "Gallery image size in the lightbox"
286
- msgstr ""
287
-
288
- # @ gallery
289
- #: gallery-plugin.php:808
290
- #, fuzzy
291
- msgid "Max width (in px)"
292
- msgstr "רוחב (בפיקסלים)"
293
-
294
- # @ gallery
295
- #: gallery-plugin.php:809
296
- #, fuzzy
297
- msgid "Max height (in px)"
298
- msgstr "גובה (בפיקסלים)"
299
-
300
- #: gallery-plugin.php:810
301
- msgid "Display a full size image in the lightbox"
302
- msgstr ""
303
-
304
- #: gallery-plugin.php:814
305
- msgid "Crop position"
306
- msgstr ""
307
-
308
- #: gallery-plugin.php:816
309
- msgid "Horizontal"
310
- msgstr ""
311
-
312
- #: gallery-plugin.php:818
313
- msgid "left"
314
- msgstr ""
315
-
316
- #: gallery-plugin.php:819
317
- #: gallery-plugin.php:826
318
- msgid "center"
319
- msgstr ""
320
-
321
- #: gallery-plugin.php:820
322
- msgid "right"
323
- msgstr ""
324
-
325
- #: gallery-plugin.php:823
326
- msgid "Vertical"
327
- msgstr ""
328
-
329
- #: gallery-plugin.php:825
330
- msgid "top"
331
- msgstr ""
332
-
333
- #: gallery-plugin.php:827
334
- msgid "bottom"
335
- msgstr ""
336
-
337
- #: gallery-plugin.php:832
338
- msgid "Lightbox background"
339
- msgstr ""
340
-
341
- #: gallery-plugin.php:834
342
- msgid "Default"
343
- msgstr ""
344
-
345
- #: gallery-plugin.php:835
346
- msgid "Background transparency (from 0 to 1)"
347
- msgstr ""
348
-
349
- #: gallery-plugin.php:837
350
- msgid "Select a background color"
351
- msgstr ""
352
-
353
- #: gallery-plugin.php:839
354
- msgid "Background color"
355
- msgstr ""
356
-
357
- #: gallery-plugin.php:846
358
- #: gallery-plugin.php:985
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:853
363
- msgid "Images with border"
364
- msgstr ""
365
-
366
- #: gallery-plugin.php:856
367
- msgid "Border width in px, just numbers"
368
- msgstr ""
369
-
370
- #: gallery-plugin.php:858
371
- #: gallery-plugin.php:860
372
- msgid "Select a border color"
373
- msgstr ""
374
-
375
- # @ gallery
376
- #: gallery-plugin.php:866
377
- #, fuzzy
378
- msgid "Number of images in the row"
379
- msgstr "מספר תמונות בשורה"
380
-
381
- # @ gallery
382
- #: gallery-plugin.php:872
383
- msgid "Start slideshow"
384
- msgstr "התחל מצגת"
385
-
386
- # @ gallery
387
- #: gallery-plugin.php:878
388
- msgid "Slideshow interval"
389
- msgstr "מרווח מצגת"
390
-
391
- # @ gallery
392
- #: gallery-plugin.php:886
393
- #, fuzzy
394
- msgid "Attachment ID"
395
- msgstr "מזהה קובץ מצורף"
396
-
397
- # @ gallery
398
- #: gallery-plugin.php:887
399
- #, fuzzy
400
- msgid "Image Name"
401
- msgstr "תמונה "
402
-
403
- # @ gallery
404
- #: gallery-plugin.php:889
405
- #, fuzzy
406
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
407
- msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
408
-
409
- # @ gallery
410
- #: gallery-plugin.php:890
411
- #, fuzzy
412
- msgid "Random"
413
- msgstr "אקראי"
414
-
415
- # @ gallery
416
- #: gallery-plugin.php:894
417
- #, fuzzy
418
- msgid "Sort images"
419
- msgstr "מספר תמונות בשורה"
420
-
421
- # @ gallery
422
- #: gallery-plugin.php:896
423
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
424
- msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
425
-
426
- # @ gallery
427
- #: gallery-plugin.php:897
428
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
429
- msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
430
-
431
- #: gallery-plugin.php:901
432
- msgid "Display text above the image"
433
- msgstr ""
434
-
435
- #: gallery-plugin.php:903
436
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
437
- msgstr ""
438
-
439
- # @ gallery
440
- #: gallery-plugin.php:907
441
- #, fuzzy
442
- msgid "Display the Back link"
443
- msgstr "הצג קישור חזרה"
444
-
445
- # @ gallery
446
- #: gallery-plugin.php:913
447
- #, fuzzy
448
- msgid "Display the Back link in the shortcode"
449
- msgstr "הצג קישור חזרה בקיצור הקוד"
450
-
451
- #: gallery-plugin.php:919
452
- msgid "The Back link text"
453
- msgstr ""
454
-
455
- #: gallery-plugin.php:925
456
- msgid "The Back link URL"
457
- msgstr ""
458
-
459
- #: gallery-plugin.php:927
460
- msgid "Gallery page (Page with Gallery Template)"
461
- msgstr ""
462
-
463
- #: gallery-plugin.php:929
464
- msgid "(Full URL to custom page)"
465
- msgstr ""
466
-
467
- #: gallery-plugin.php:933
468
- msgid "The Read More link text"
469
- msgstr ""
470
-
471
- #: gallery-plugin.php:939
472
- msgid "Add gallery to the search"
473
- msgstr ""
474
-
475
- #: gallery-plugin.php:955
476
- #: gallery-plugin.php:958
477
- #: gallery-plugin.php:962
478
- msgid "Using Custom Search powered by"
479
- msgstr ""
480
-
481
- #: gallery-plugin.php:958
482
- msgid "Activate Custom Search"
483
- msgstr ""
484
-
485
- #: gallery-plugin.php:962
486
- msgid "Download Custom Search"
487
- msgstr ""
488
-
489
- #: gallery-plugin.php:969
490
- msgid "Display Like buttons in the lightbox"
491
- msgstr ""
492
-
493
- #: gallery-plugin.php:971
494
- msgid "FaceBook"
495
- msgstr ""
496
-
497
- # @ gallery
498
- #: gallery-plugin.php:972
499
- #, fuzzy
500
- msgid "Twitter"
501
- msgstr "כותרת"
502
-
503
- #: gallery-plugin.php:973
504
- msgid "Pinterest"
505
- msgstr ""
506
-
507
- #: gallery-plugin.php:974
508
- msgid "Google +1"
509
- msgstr ""
510
-
511
- # @ gallery
512
- #: gallery-plugin.php:978
513
- #, fuzzy
514
- msgid "Slug for gallery item"
515
- msgstr "גודל תמונת גלריה"
516
-
517
- #: gallery-plugin.php:980
518
- msgid "for any structure of permalinks except the default structure"
519
- msgstr ""
520
-
521
- # @ default
522
- #: gallery-plugin.php:993
523
- msgid "Save Changes"
524
- msgstr "שמור שינויים"
525
-
526
- # @ gallery
527
- #: gallery-plugin.php:1005
528
- #: gallery-plugin.php:1020
529
- msgid "Settings"
530
- msgstr "הגדרות"
531
-
532
- # @ gallery
533
- #: gallery-plugin.php:1006
534
- msgid "FAQ"
535
- msgstr "שאלות ותשובות"
536
-
537
- # @ gallery
538
- #: gallery-plugin.php:1007
539
- msgid "Support"
540
- msgstr "תמיכה"
541
-
542
- # @ gallery
543
- #: gallery-plugin.php:1220
544
- #: template/gallery-single-template.php:77
545
- #, fuzzy
546
- msgid "Sorry, nothing found."
547
- msgstr "מצטערים, אין מה למצוא."
548
-
549
- #: gallery-plugin.php:1242
550
- #: template/gallery-single-template.php:103
551
- msgid "Download high resolution image"
552
- msgstr ""
553
-
554
- # @ gallery
555
- #: template/gallery-single-template.php:103
556
- #, fuzzy
557
- msgid "Image"
558
- msgstr "תמונה "
559
-
560
- # @ gallery
561
- #, fuzzy
562
- #~ msgid "PHP Max Upload Size"
563
- #~ msgstr "העלה קובץ"
564
-
565
- # @ gallery
566
- #~ msgid "Activated plugins"
567
- #~ msgstr "תוספים פעילים"
568
- # @ gallery
569
- #~ msgid "Read more"
570
- #~ msgstr "קרא עוד"
571
- # @ gallery
572
- #~ msgid "Installed plugins"
573
- #~ msgstr "תוספים מותקנים"
574
- # @ gallery
575
- #~ msgid "Recommended plugins"
576
- #~ msgstr "תוספים מומלצים"
577
- # @ gallery
578
- #, fuzzy
579
- #~ msgid "Free plugins"
580
- #~ msgstr "תוספים מומלצים"
581
-
582
- # @ gallery
583
- #~ msgid "Download"
584
- #~ msgstr "הורד"
585
- # @ default
586
- #~ msgid "Install %s"
587
- #~ msgstr "התקן %s"
588
- # @ gallery
589
- #~ msgid "Install now from wordpress.org"
590
- #~ msgstr "הורד כעת מ wordpress.org"
591
- # @ gallery
592
- #, fuzzy
593
- #~ msgid "If you have any questions, please contact us via"
594
- #~ msgstr ""
595
- #~ "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או "
596
- #~ "שתמלא את טופס יצירת הקשר באתר שלנו"
597
-
598
- # @ gallery
599
- #, fuzzy
600
- #~ msgid "Active Plugins"
601
- #~ msgstr "תוספים פעילים"
602
-
603
- # @ gallery
604
- #, fuzzy
605
- #~ msgid "Inactive Plugins"
606
- #~ msgstr "תוספים פעילים"
607
-
608
- # @ gallery
609
- #, fuzzy
610
- #~ msgid "Send to support"
611
- #~ msgstr "תמיכה"
612
-
613
- # @ gallery
614
- #~ msgid "Add New"
615
- #~ msgstr "הוסף"
616
- # @ gallery
617
- #~ msgid "Search Galleries"
618
- #~ msgstr "חיפוש בגלריות"
619
- # @ gallery
620
- #~ msgid "Attachments order by"
621
- #~ msgstr "סדר הקבצים המצורפים"
622
- # @ gallery
623
- #~ msgid "attachment title"
624
- #~ msgstr "כותרת קובץ מצורף"
625
- # @ gallery
626
- #~ msgid "date"
627
- #~ msgstr "תאריך"
628
- # @ gallery
629
- #~ msgid "Attachments order"
630
- #~ msgstr "סדר קבצים מצורפים"
631
- # @ gallery
632
- #~ msgid "Label for Return link"
633
- #~ msgstr "תוית לקישור חזרה"
634
- # @ gallery
635
- #, fuzzy
636
- #~ msgid "URL for Return link"
637
- #~ msgstr "תוית לקישור חזרה"
638
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-hu_HU.mo DELETED
Binary file
languages/gallery-hu_HU.po DELETED
@@ -1,543 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+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"
12
- "Language: uk_UA\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Galériák"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Galéria"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Új Galéria hozzáadása"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Új Galéria hozzáadása"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Galéria szerkesztése"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Új Galéria"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Galéria megtekintése"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Galéria szerkesztése"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "Galéria nem található"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Fájl feltöltése"
68
-
69
- #: gallery-plugin.php:192
70
- #, fuzzy
71
- msgid "Gallery Shortcode"
72
- msgstr "Galéria beállítások"
73
-
74
- #: gallery-plugin.php:210
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr ""
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "Nézőkép kiválasztása a feltöltéshez"
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
93
- msgstr ""
94
-
95
- #: gallery-plugin.php:229
96
- msgid "Please make a choice"
97
- msgstr ""
98
-
99
- #: gallery-plugin.php:229
100
- #: gallery-plugin.php:884
101
- #, fuzzy
102
- msgid "Sort images by"
103
- msgstr "Képek száma egy sorban"
104
-
105
- #: gallery-plugin.php:229
106
- #, fuzzy
107
- msgid "sort images"
108
- msgstr "Képek száma egy sorban"
109
-
110
- #: gallery-plugin.php:229
111
- msgid "on the plugin settings page ("
112
- msgstr ""
113
-
114
- #: gallery-plugin.php:273
115
- #: gallery-plugin.php:502
116
- msgid "Title"
117
- msgstr "Cím"
118
-
119
- #: gallery-plugin.php:275
120
- msgid "Alt tag"
121
- msgstr ""
122
-
123
- #: gallery-plugin.php:276
124
- msgid "URL"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "(by click on image opens a link in a new window)"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:277
132
- msgid "This setting is available in Pro version"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:278
136
- msgid "Open the link"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Current window"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "New window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:279
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:292
152
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
153
- msgstr ""
154
-
155
- #: gallery-plugin.php:294
156
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
157
- msgstr ""
158
-
159
- #: gallery-plugin.php:503
160
- msgid "Author"
161
- msgstr "Szerző"
162
-
163
- #: gallery-plugin.php:504
164
- #, fuzzy
165
- msgid "Photo"
166
- msgstr "Fotók"
167
-
168
- #: gallery-plugin.php:505
169
- #, fuzzy
170
- msgid "Publishing"
171
- msgstr "Publikus"
172
-
173
- #: gallery-plugin.php:506
174
- #: gallery-plugin.php:888
175
- msgid "Date"
176
- msgstr "Dátum"
177
-
178
- #: gallery-plugin.php:632
179
- #, fuzzy
180
- msgid "See images &raquo;"
181
- msgstr "Fotó megtekintése &raquo;"
182
-
183
- #: gallery-plugin.php:679
184
- msgid "requires"
185
- msgstr ""
186
-
187
- #: gallery-plugin.php:679
188
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
189
- msgstr ""
190
-
191
- #: gallery-plugin.php:679
192
- msgid "Back to the WordPress"
193
- msgstr ""
194
-
195
- #: gallery-plugin.php:679
196
- #, fuzzy
197
- msgid "Plugins page"
198
- msgstr "Javasolt bővítmények"
199
-
200
- #: gallery-plugin.php:764
201
- #, fuzzy
202
- msgid "Settings are saved"
203
- msgstr "Beállítások elmentve."
204
-
205
- #: gallery-plugin.php:777
206
- #, fuzzy
207
- msgid "Gallery Settings"
208
- msgstr "Galéria beállítások"
209
-
210
- #: gallery-plugin.php:780
211
- 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:"
212
- msgstr ""
213
-
214
- #: gallery-plugin.php:784
215
- #, fuzzy
216
- msgid "Image size for the album cover"
217
- msgstr "Размер для "
218
-
219
- #: gallery-plugin.php:786
220
- #: gallery-plugin.php:794
221
- #: gallery-plugin.php:807
222
- #, fuzzy
223
- msgid "Image size"
224
- msgstr "Kép méret neve"
225
-
226
- #: gallery-plugin.php:787
227
- #: gallery-plugin.php:795
228
- msgid "Width (in px)"
229
- msgstr "Szélesség (px-ben)"
230
-
231
- #: gallery-plugin.php:788
232
- #: gallery-plugin.php:796
233
- msgid "Height (in px)"
234
- msgstr "Magasság (px-ben)"
235
-
236
- #: gallery-plugin.php:792
237
- #, fuzzy
238
- msgid "Gallery image size"
239
- msgstr "Galériák"
240
-
241
- #: gallery-plugin.php:800
242
- #, fuzzy
243
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
244
- msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
245
-
246
- #: gallery-plugin.php:805
247
- msgid "Gallery image size in the lightbox"
248
- msgstr ""
249
-
250
- #: gallery-plugin.php:808
251
- #, fuzzy
252
- msgid "Max width (in px)"
253
- msgstr "Szélesség (px-ben)"
254
-
255
- #: gallery-plugin.php:809
256
- #, fuzzy
257
- msgid "Max height (in px)"
258
- msgstr "Magasság (px-ben)"
259
-
260
- #: gallery-plugin.php:810
261
- msgid "Display a full size image in the lightbox"
262
- msgstr ""
263
-
264
- #: gallery-plugin.php:814
265
- msgid "Crop position"
266
- msgstr ""
267
-
268
- #: gallery-plugin.php:816
269
- msgid "Horizontal"
270
- msgstr ""
271
-
272
- #: gallery-plugin.php:818
273
- msgid "left"
274
- msgstr ""
275
-
276
- #: gallery-plugin.php:819
277
- #: gallery-plugin.php:826
278
- msgid "center"
279
- msgstr ""
280
-
281
- #: gallery-plugin.php:820
282
- msgid "right"
283
- msgstr ""
284
-
285
- #: gallery-plugin.php:823
286
- msgid "Vertical"
287
- msgstr ""
288
-
289
- #: gallery-plugin.php:825
290
- msgid "top"
291
- msgstr ""
292
-
293
- #: gallery-plugin.php:827
294
- msgid "bottom"
295
- msgstr ""
296
-
297
- #: gallery-plugin.php:832
298
- msgid "Lightbox background"
299
- msgstr ""
300
-
301
- #: gallery-plugin.php:834
302
- msgid "Default"
303
- msgstr ""
304
-
305
- #: gallery-plugin.php:835
306
- msgid "Background transparency (from 0 to 1)"
307
- msgstr ""
308
-
309
- #: gallery-plugin.php:837
310
- msgid "Select a background color"
311
- msgstr ""
312
-
313
- #: gallery-plugin.php:839
314
- msgid "Background color"
315
- msgstr ""
316
-
317
- #: gallery-plugin.php:846
318
- #: gallery-plugin.php:985
319
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
320
- msgstr ""
321
-
322
- #: gallery-plugin.php:853
323
- msgid "Images with border"
324
- msgstr ""
325
-
326
- #: gallery-plugin.php:856
327
- msgid "Border width in px, just numbers"
328
- msgstr ""
329
-
330
- #: gallery-plugin.php:858
331
- #: gallery-plugin.php:860
332
- msgid "Select a border color"
333
- msgstr ""
334
-
335
- #: gallery-plugin.php:866
336
- #, fuzzy
337
- msgid "Number of images in the row"
338
- msgstr "Képek száma egy sorban"
339
-
340
- #: gallery-plugin.php:872
341
- msgid "Start slideshow"
342
- msgstr ""
343
-
344
- #: gallery-plugin.php:878
345
- msgid "Slideshow interval"
346
- msgstr ""
347
-
348
- #: gallery-plugin.php:886
349
- msgid "Attachment ID"
350
- msgstr ""
351
-
352
- #: gallery-plugin.php:887
353
- #, fuzzy
354
- msgid "Image Name"
355
- msgstr "Kép méret neve"
356
-
357
- #: gallery-plugin.php:889
358
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
359
- msgstr ""
360
-
361
- #: gallery-plugin.php:890
362
- msgid "Random"
363
- msgstr ""
364
-
365
- #: gallery-plugin.php:894
366
- #, fuzzy
367
- msgid "Sort images"
368
- msgstr "Képek száma egy sorban"
369
-
370
- #: gallery-plugin.php:896
371
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
372
- msgstr ""
373
-
374
- #: gallery-plugin.php:897
375
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
376
- msgstr ""
377
-
378
- #: gallery-plugin.php:901
379
- msgid "Display text above the image"
380
- msgstr ""
381
-
382
- #: gallery-plugin.php:903
383
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
384
- msgstr ""
385
-
386
- #: gallery-plugin.php:907
387
- msgid "Display the Back link"
388
- msgstr ""
389
-
390
- #: gallery-plugin.php:913
391
- msgid "Display the Back link in the shortcode"
392
- msgstr ""
393
-
394
- #: gallery-plugin.php:919
395
- msgid "The Back link text"
396
- msgstr ""
397
-
398
- #: gallery-plugin.php:925
399
- msgid "The Back link URL"
400
- msgstr ""
401
-
402
- #: gallery-plugin.php:927
403
- msgid "Gallery page (Page with Gallery Template)"
404
- msgstr ""
405
-
406
- #: gallery-plugin.php:929
407
- msgid "(Full URL to custom page)"
408
- msgstr ""
409
-
410
- #: gallery-plugin.php:933
411
- msgid "The Read More link text"
412
- msgstr ""
413
-
414
- #: gallery-plugin.php:939
415
- msgid "Add gallery to the search"
416
- msgstr ""
417
-
418
- #: gallery-plugin.php:955
419
- #: gallery-plugin.php:958
420
- #: gallery-plugin.php:962
421
- msgid "Using Custom Search powered by"
422
- msgstr ""
423
-
424
- #: gallery-plugin.php:958
425
- msgid "Activate Custom Search"
426
- msgstr ""
427
-
428
- #: gallery-plugin.php:962
429
- msgid "Download Custom Search"
430
- msgstr ""
431
-
432
- #: gallery-plugin.php:969
433
- msgid "Display Like buttons in the lightbox"
434
- msgstr ""
435
-
436
- #: gallery-plugin.php:971
437
- msgid "FaceBook"
438
- msgstr ""
439
-
440
- #: gallery-plugin.php:972
441
- #, fuzzy
442
- msgid "Twitter"
443
- msgstr "Cím"
444
-
445
- #: gallery-plugin.php:973
446
- msgid "Pinterest"
447
- msgstr ""
448
-
449
- #: gallery-plugin.php:974
450
- msgid "Google +1"
451
- msgstr ""
452
-
453
- #: gallery-plugin.php:978
454
- #, fuzzy
455
- msgid "Slug for gallery item"
456
- msgstr "A Galéria képeinek mérete"
457
-
458
- #: gallery-plugin.php:980
459
- msgid "for any structure of permalinks except the default structure"
460
- msgstr ""
461
-
462
- #: gallery-plugin.php:993
463
- msgid "Save Changes"
464
- msgstr "Változások mentése"
465
-
466
- #: gallery-plugin.php:1005
467
- #: gallery-plugin.php:1020
468
- msgid "Settings"
469
- msgstr "Beállítások"
470
-
471
- #: gallery-plugin.php:1006
472
- msgid "FAQ"
473
- msgstr "Gy.I.K."
474
-
475
- #: gallery-plugin.php:1007
476
- msgid "Support"
477
- msgstr "Támogatás"
478
-
479
- #: gallery-plugin.php:1220
480
- #: template/gallery-single-template.php:77
481
- #, fuzzy
482
- msgid "Sorry, nothing found."
483
- msgstr "Sajnáljuk - nincs megjelenítendő elem."
484
-
485
- #: gallery-plugin.php:1242
486
- #: template/gallery-single-template.php:103
487
- msgid "Download high resolution image"
488
- msgstr ""
489
-
490
- #: template/gallery-single-template.php:103
491
- msgid "Image"
492
- msgstr ""
493
-
494
- #, fuzzy
495
- #~ msgid "PHP Max Upload Size"
496
- #~ msgstr "Fájl feltöltése"
497
- #~ msgid "Activated plugins"
498
- #~ msgstr "Aktivált bővítmények"
499
- #~ msgid "Read more"
500
- #~ msgstr "Bővebben"
501
- #~ msgid "Installed plugins"
502
- #~ msgstr "Telepített bővítmények"
503
- #~ msgid "Recommended plugins"
504
- #~ msgstr "Javasolt bővítmények"
505
-
506
- #, fuzzy
507
- #~ msgid "Free plugins"
508
- #~ msgstr "Javasolt bővítmények"
509
- #~ msgid "Download"
510
- #~ msgstr "Letöltés"
511
- #~ msgid "Install %s"
512
- #~ msgstr "Telepítés %s"
513
- #~ msgid "Install now from wordpress.org"
514
- #~ msgstr "Telepítés a wordpress.org -ról"
515
-
516
- #, fuzzy
517
- #~ msgid "If you have any questions, please contact us via"
518
- #~ msgstr ""
519
- #~ "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft."
520
- #~ "com e-mail címen, vagy töltse ki űrlapunkat"
521
-
522
- #, fuzzy
523
- #~ msgid "Active Plugins"
524
- #~ msgstr "Aktivált bővítmények"
525
-
526
- #, fuzzy
527
- #~ msgid "Inactive Plugins"
528
- #~ msgstr "Aktivált bővítmények"
529
-
530
- #, fuzzy
531
- #~ msgid "Send to support"
532
- #~ msgstr "Támogatás"
533
- #~ msgid "Add New"
534
- #~ msgstr "Új hozzáadása"
535
- #~ msgid "Search Galleries"
536
- #~ msgstr "Galéria keresése"
537
- #~ msgid "The size of the cover album for gallery"
538
- #~ msgstr "Az Album borítójának mérete a Galériában"
539
-
540
- #, fuzzy
541
- #~ msgid "date"
542
- #~ msgstr "Dátum"
543
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-it_IT.mo DELETED
Binary file
languages/gallery-it_IT.po DELETED
@@ -1,561 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+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"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: it_IT\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Gallerie"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Galleria"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Aggiungi nuova galleria"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Aggiungi nuova galleria"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Modifica galleria"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Nuova galleria"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Vedi galleria"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Modifica galleria"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "Nessuna galleria trovata"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Carica file"
68
-
69
- #: gallery-plugin.php:192
70
- msgid "Gallery Shortcode"
71
- msgstr "Opzioni gallerie"
72
-
73
- #: gallery-plugin.php:210
74
- #, fuzzy
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr "La directory temporanea della Galleria (gallery-plugin/upload/files) non &egrave; scrivibile sul tuo webserver. Usa la funzione standard di WP per caricare le immagini (media library)"
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "Sceli una immagine da caricare:"
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "Per favore abilita JavaScript per usare il file uploader."
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
93
- msgstr ""
94
-
95
- #: gallery-plugin.php:229
96
- msgid "Please make a choice"
97
- msgstr ""
98
-
99
- #: gallery-plugin.php:229
100
- #: gallery-plugin.php:884
101
- #, fuzzy
102
- msgid "Sort images by"
103
- msgstr "Conta immagini"
104
-
105
- #: gallery-plugin.php:229
106
- #, fuzzy
107
- msgid "sort images"
108
- msgstr "Conta immagini"
109
-
110
- #: gallery-plugin.php:229
111
- msgid "on the plugin settings page ("
112
- msgstr ""
113
-
114
- #: gallery-plugin.php:273
115
- #: gallery-plugin.php:502
116
- msgid "Title"
117
- msgstr "Titolo"
118
-
119
- #: gallery-plugin.php:275
120
- msgid "Alt tag"
121
- msgstr ""
122
-
123
- #: gallery-plugin.php:276
124
- msgid "URL"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "(by click on image opens a link in a new window)"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:277
132
- msgid "This setting is available in Pro version"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:278
136
- msgid "Open the link"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Current window"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "New window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:279
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:292
152
- #, fuzzy
153
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
154
- msgstr "Puoi aggiungere una singola Galleria in una pagina o un post inserendo questo codice nel contenuto"
155
-
156
- #: gallery-plugin.php:294
157
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
158
- msgstr ""
159
-
160
- #: gallery-plugin.php:503
161
- msgid "Author"
162
- msgstr "Autore"
163
-
164
- #: gallery-plugin.php:504
165
- #, fuzzy
166
- msgid "Photo"
167
- msgstr "Foto"
168
-
169
- #: gallery-plugin.php:505
170
- #, fuzzy
171
- msgid "Publishing"
172
- msgstr "Pubblico"
173
-
174
- #: gallery-plugin.php:506
175
- #: gallery-plugin.php:888
176
- msgid "Date"
177
- msgstr "Data"
178
-
179
- #: gallery-plugin.php:632
180
- #, fuzzy
181
- msgid "See images &raquo;"
182
- msgstr "Guarda foto &raquo;"
183
-
184
- #: gallery-plugin.php:679
185
- msgid "requires"
186
- msgstr ""
187
-
188
- #: gallery-plugin.php:679
189
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
190
- msgstr ""
191
-
192
- #: gallery-plugin.php:679
193
- msgid "Back to the WordPress"
194
- msgstr ""
195
-
196
- #: gallery-plugin.php:679
197
- #, fuzzy
198
- msgid "Plugins page"
199
- msgstr "Plugin consigliati"
200
-
201
- #: gallery-plugin.php:764
202
- #, fuzzy
203
- msgid "Settings are saved"
204
- msgstr "Opzioni salvate."
205
-
206
- #: gallery-plugin.php:777
207
- #, fuzzy
208
- msgid "Gallery Settings"
209
- msgstr "Opzioni gallerie"
210
-
211
- #: gallery-plugin.php:780
212
- #, fuzzy
213
- 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:"
214
- 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"
215
-
216
- #: gallery-plugin.php:784
217
- #, fuzzy
218
- msgid "Image size for the album cover"
219
- msgstr "Размер для "
220
-
221
- #: gallery-plugin.php:786
222
- #: gallery-plugin.php:794
223
- #: gallery-plugin.php:807
224
- #, fuzzy
225
- msgid "Image size"
226
- msgstr "Image size name"
227
-
228
- #: gallery-plugin.php:787
229
- #: gallery-plugin.php:795
230
- msgid "Width (in px)"
231
- msgstr "Larghezza in px"
232
-
233
- #: gallery-plugin.php:788
234
- #: gallery-plugin.php:796
235
- msgid "Height (in px)"
236
- msgstr "Altezza in px"
237
-
238
- #: gallery-plugin.php:792
239
- #, fuzzy
240
- msgid "Gallery image size"
241
- msgstr "Gallerie"
242
-
243
- #: gallery-plugin.php:800
244
- #, fuzzy
245
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
246
- msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
247
-
248
- #: gallery-plugin.php:805
249
- msgid "Gallery image size in the lightbox"
250
- msgstr ""
251
-
252
- #: gallery-plugin.php:808
253
- #, fuzzy
254
- msgid "Max width (in px)"
255
- msgstr "Larghezza in px"
256
-
257
- #: gallery-plugin.php:809
258
- #, fuzzy
259
- msgid "Max height (in px)"
260
- msgstr "Altezza in px"
261
-
262
- #: gallery-plugin.php:810
263
- msgid "Display a full size image in the lightbox"
264
- msgstr ""
265
-
266
- #: gallery-plugin.php:814
267
- msgid "Crop position"
268
- msgstr ""
269
-
270
- #: gallery-plugin.php:816
271
- msgid "Horizontal"
272
- msgstr ""
273
-
274
- #: gallery-plugin.php:818
275
- msgid "left"
276
- msgstr ""
277
-
278
- #: gallery-plugin.php:819
279
- #: gallery-plugin.php:826
280
- msgid "center"
281
- msgstr ""
282
-
283
- #: gallery-plugin.php:820
284
- msgid "right"
285
- msgstr ""
286
-
287
- #: gallery-plugin.php:823
288
- msgid "Vertical"
289
- msgstr ""
290
-
291
- #: gallery-plugin.php:825
292
- msgid "top"
293
- msgstr ""
294
-
295
- #: gallery-plugin.php:827
296
- msgid "bottom"
297
- msgstr ""
298
-
299
- #: gallery-plugin.php:832
300
- msgid "Lightbox background"
301
- msgstr ""
302
-
303
- #: gallery-plugin.php:834
304
- msgid "Default"
305
- msgstr ""
306
-
307
- #: gallery-plugin.php:835
308
- msgid "Background transparency (from 0 to 1)"
309
- msgstr ""
310
-
311
- #: gallery-plugin.php:837
312
- msgid "Select a background color"
313
- msgstr ""
314
-
315
- #: gallery-plugin.php:839
316
- msgid "Background color"
317
- msgstr ""
318
-
319
- #: gallery-plugin.php:846
320
- #: gallery-plugin.php:985
321
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
322
- msgstr ""
323
-
324
- #: gallery-plugin.php:853
325
- msgid "Images with border"
326
- msgstr ""
327
-
328
- #: gallery-plugin.php:856
329
- msgid "Border width in px, just numbers"
330
- msgstr ""
331
-
332
- #: gallery-plugin.php:858
333
- #: gallery-plugin.php:860
334
- msgid "Select a border color"
335
- msgstr ""
336
-
337
- #: gallery-plugin.php:866
338
- #, fuzzy
339
- msgid "Number of images in the row"
340
- msgstr "Conta immagini"
341
-
342
- #: gallery-plugin.php:872
343
- msgid "Start slideshow"
344
- msgstr "Avvia presentazione"
345
-
346
- #: gallery-plugin.php:878
347
- msgid "Slideshow interval"
348
- msgstr "Intervallo presentazione"
349
-
350
- #: gallery-plugin.php:886
351
- #, fuzzy
352
- msgid "Attachment ID"
353
- msgstr "Id di visualizzazione"
354
-
355
- #: gallery-plugin.php:887
356
- #, fuzzy
357
- msgid "Image Name"
358
- msgstr "Immagine"
359
-
360
- #: gallery-plugin.php:889
361
- #, fuzzy
362
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
363
- msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
364
-
365
- #: gallery-plugin.php:890
366
- #, fuzzy
367
- msgid "Random"
368
- msgstr "Casuale"
369
-
370
- #: gallery-plugin.php:894
371
- #, fuzzy
372
- msgid "Sort images"
373
- msgstr "Conta immagini"
374
-
375
- #: gallery-plugin.php:896
376
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
377
- msgstr "ASC(ordine ascendente dal pi&ugrave; basso al pi&ugrave; alto - 1, 2, 3; a, b, c,)"
378
-
379
- #: gallery-plugin.php:897
380
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
381
- msgstr "DESC(ordine discendente dal pi&ugrave; alto al pi&ugrave; basso - 3, 2, 1; c, b, a,)"
382
-
383
- #: gallery-plugin.php:901
384
- msgid "Display text above the image"
385
- msgstr ""
386
-
387
- #: gallery-plugin.php:903
388
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
389
- msgstr ""
390
-
391
- #: gallery-plugin.php:907
392
- #, fuzzy
393
- msgid "Display the Back link"
394
- msgstr "Mostra lin di ritorno"
395
-
396
- #: gallery-plugin.php:913
397
- #, fuzzy
398
- msgid "Display the Back link in the shortcode"
399
- msgstr "Mostra il link di ritorno col codice"
400
-
401
- #: gallery-plugin.php:919
402
- msgid "The Back link text"
403
- msgstr ""
404
-
405
- #: gallery-plugin.php:925
406
- msgid "The Back link URL"
407
- msgstr ""
408
-
409
- #: gallery-plugin.php:927
410
- msgid "Gallery page (Page with Gallery Template)"
411
- msgstr ""
412
-
413
- #: gallery-plugin.php:929
414
- msgid "(Full URL to custom page)"
415
- msgstr ""
416
-
417
- #: gallery-plugin.php:933
418
- msgid "The Read More link text"
419
- msgstr ""
420
-
421
- #: gallery-plugin.php:939
422
- msgid "Add gallery to the search"
423
- msgstr ""
424
-
425
- #: gallery-plugin.php:955
426
- #: gallery-plugin.php:958
427
- #: gallery-plugin.php:962
428
- msgid "Using Custom Search powered by"
429
- msgstr ""
430
-
431
- #: gallery-plugin.php:958
432
- msgid "Activate Custom Search"
433
- msgstr ""
434
-
435
- #: gallery-plugin.php:962
436
- msgid "Download Custom Search"
437
- msgstr ""
438
-
439
- #: gallery-plugin.php:969
440
- msgid "Display Like buttons in the lightbox"
441
- msgstr ""
442
-
443
- #: gallery-plugin.php:971
444
- msgid "FaceBook"
445
- msgstr ""
446
-
447
- #: gallery-plugin.php:972
448
- #, fuzzy
449
- msgid "Twitter"
450
- msgstr "Titolo"
451
-
452
- #: gallery-plugin.php:973
453
- msgid "Pinterest"
454
- msgstr ""
455
-
456
- #: gallery-plugin.php:974
457
- msgid "Google +1"
458
- msgstr ""
459
-
460
- #: gallery-plugin.php:978
461
- #, fuzzy
462
- msgid "Slug for gallery item"
463
- msgstr "Grandezza per le immagini della galleria"
464
-
465
- #: gallery-plugin.php:980
466
- msgid "for any structure of permalinks except the default structure"
467
- msgstr ""
468
-
469
- #: gallery-plugin.php:993
470
- msgid "Save Changes"
471
- msgstr "Salva cambiamenti"
472
-
473
- #: gallery-plugin.php:1005
474
- #: gallery-plugin.php:1020
475
- msgid "Settings"
476
- msgstr "Impostazioni"
477
-
478
- #: gallery-plugin.php:1006
479
- msgid "FAQ"
480
- msgstr "FAQ "
481
-
482
- #: gallery-plugin.php:1007
483
- msgid "Support"
484
- msgstr "Supporto"
485
-
486
- #: gallery-plugin.php:1220
487
- #: template/gallery-single-template.php:77
488
- #, fuzzy
489
- msgid "Sorry, nothing found."
490
- msgstr "Spiacente - non è stato trovato nulla."
491
-
492
- #: gallery-plugin.php:1242
493
- #: template/gallery-single-template.php:103
494
- msgid "Download high resolution image"
495
- msgstr ""
496
-
497
- #: template/gallery-single-template.php:103
498
- #, fuzzy
499
- msgid "Image"
500
- msgstr "Immagine"
501
-
502
- #, fuzzy
503
- #~ msgid "PHP Max Upload Size"
504
- #~ msgstr "Carica file"
505
- #~ msgid "Activated plugins"
506
- #~ msgstr "Attivare plugin"
507
- #~ msgid "Read more"
508
- #~ msgstr "Leggi altro"
509
- #~ msgid "Installed plugins"
510
- #~ msgstr "Plugin installati"
511
- #~ msgid "Recommended plugins"
512
- #~ msgstr "Plugin consigliati"
513
-
514
- #, fuzzy
515
- #~ msgid "Free plugins"
516
- #~ msgstr "Plugin consigliati"
517
- #~ msgid "Download"
518
- #~ msgstr "Download"
519
- #~ msgid "Install %s"
520
- #~ msgstr "Installа %s"
521
- #~ msgid "Install now from wordpress.org"
522
- #~ msgstr "Installa ora da wordpress.org"
523
-
524
- #, fuzzy
525
- #~ msgid "If you have any questions, please contact us via"
526
- #~ msgstr ""
527
- #~ "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il "
528
- #~ "Form sul nostro sito."
529
-
530
- #, fuzzy
531
- #~ msgid "Active Plugins"
532
- #~ msgstr "Attivare plugin"
533
-
534
- #, fuzzy
535
- #~ msgid "Inactive Plugins"
536
- #~ msgstr "Attivare plugin"
537
-
538
- #, fuzzy
539
- #~ msgid "Send to support"
540
- #~ msgstr "Supporto"
541
- #~ msgid "Add New"
542
- #~ msgstr "Aggiungi nuova"
543
- #~ msgid "Search Galleries"
544
- #~ msgstr "Cerca galleria"
545
- #~ msgid "Attachments order by"
546
- #~ msgstr "Ordine di visualizzazione per"
547
- #~ msgid "The size of the cover album for gallery"
548
- #~ msgstr "La grandezza della copertina dall'album per la galleria"
549
- #~ msgid "attachment title"
550
- #~ msgstr "Titolo immagine"
551
- #~ msgid "date"
552
- #~ msgstr "Data"
553
- #~ msgid "Attachments order"
554
- #~ msgstr "Ordine di visualizzazione"
555
- #~ msgid "Label for Return link"
556
- #~ msgstr "Etichetta per il link di ritorno"
557
-
558
- #, fuzzy
559
- #~ msgid "URL for Return link"
560
- #~ msgstr "Etichetta per il link di ritorno"
561
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-ka_GE.mo DELETED
Binary file
languages/gallery-ka_GE.po DELETED
@@ -1,542 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: ka_GE\n"
13
- "X-Poedit-KeywordsList: __;_e;_x;esc_html__\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "გალერეა"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "გალერეა"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "ახალი გალერეას დამატება"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "ახალი გალერეას დამატება"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "გალერეას შესწორება"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "ახალი გალერეა"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "გალერეას ნახვა"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "გალერეას შესწორება"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "გალერეა არ მოძებნა"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "ფაილის ატვირთვა"
68
-
69
- #: gallery-plugin.php:192
70
- #, fuzzy
71
- msgid "Gallery Shortcode"
72
- msgstr "გალერეის პარამეტრები"
73
-
74
- #: gallery-plugin.php:210
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr ""
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "აირჩიეთ სურათი ასატვირთად:"
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
93
- msgstr ""
94
-
95
- #: gallery-plugin.php:229
96
- msgid "Please make a choice"
97
- msgstr ""
98
-
99
- #: gallery-plugin.php:229
100
- #: gallery-plugin.php:884
101
- #, fuzzy
102
- msgid "Sort images by"
103
- msgstr "სურათების რაოდენობა მწკრივში"
104
-
105
- #: gallery-plugin.php:229
106
- #, fuzzy
107
- msgid "sort images"
108
- msgstr "სურათების რაოდენობა მწკრივში"
109
-
110
- #: gallery-plugin.php:229
111
- msgid "on the plugin settings page ("
112
- msgstr ""
113
-
114
- #: gallery-plugin.php:273
115
- #: gallery-plugin.php:502
116
- msgid "Title"
117
- msgstr "სათაური"
118
-
119
- #: gallery-plugin.php:275
120
- msgid "Alt tag"
121
- msgstr ""
122
-
123
- #: gallery-plugin.php:276
124
- msgid "URL"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "(by click on image opens a link in a new window)"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:277
132
- msgid "This setting is available in Pro version"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:278
136
- msgid "Open the link"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Current window"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "New window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:279
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:292
152
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
153
- msgstr ""
154
-
155
- #: gallery-plugin.php:294
156
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
157
- msgstr ""
158
-
159
- #: gallery-plugin.php:503
160
- msgid "Author"
161
- msgstr "ავტორი"
162
-
163
- #: gallery-plugin.php:504
164
- #, fuzzy
165
- msgid "Photo"
166
- msgstr "ფოტო"
167
-
168
- #: gallery-plugin.php:505
169
- #, fuzzy
170
- msgid "Publishing"
171
- msgstr "საჯარო"
172
-
173
- #: gallery-plugin.php:506
174
- #: gallery-plugin.php:888
175
- msgid "Date"
176
- msgstr "თარიღი"
177
-
178
- #: gallery-plugin.php:632
179
- msgid "See images &raquo;"
180
- msgstr ""
181
-
182
- #: gallery-plugin.php:679
183
- msgid "requires"
184
- msgstr ""
185
-
186
- #: gallery-plugin.php:679
187
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
188
- msgstr ""
189
-
190
- #: gallery-plugin.php:679
191
- msgid "Back to the WordPress"
192
- msgstr ""
193
-
194
- #: gallery-plugin.php:679
195
- #, fuzzy
196
- msgid "Plugins page"
197
- msgstr "რეკომენდირებული დანამატები"
198
-
199
- #: gallery-plugin.php:764
200
- #, fuzzy
201
- msgid "Settings are saved"
202
- msgstr "პარამეტრები შენახულია"
203
-
204
- #: gallery-plugin.php:777
205
- #, fuzzy
206
- msgid "Gallery Settings"
207
- msgstr "გალერეის პარამეტრები"
208
-
209
- #: gallery-plugin.php:780
210
- 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:"
211
- msgstr ""
212
-
213
- #: gallery-plugin.php:784
214
- #, fuzzy
215
- msgid "Image size for the album cover"
216
- msgstr "Размер для "
217
-
218
- #: gallery-plugin.php:786
219
- #: gallery-plugin.php:794
220
- #: gallery-plugin.php:807
221
- #, fuzzy
222
- msgid "Image size"
223
- msgstr "ზომის სახელი"
224
-
225
- #: gallery-plugin.php:787
226
- #: gallery-plugin.php:795
227
- msgid "Width (in px)"
228
- msgstr "სიგანე(პიქსელებში)"
229
-
230
- #: gallery-plugin.php:788
231
- #: gallery-plugin.php:796
232
- msgid "Height (in px)"
233
- msgstr "სიმაღლე(პიქსელებში)"
234
-
235
- #: gallery-plugin.php:792
236
- #, fuzzy
237
- msgid "Gallery image size"
238
- msgstr "გალერეა"
239
-
240
- #: gallery-plugin.php:800
241
- #, fuzzy
242
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
243
- msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
244
-
245
- #: gallery-plugin.php:805
246
- msgid "Gallery image size in the lightbox"
247
- msgstr ""
248
-
249
- #: gallery-plugin.php:808
250
- #, fuzzy
251
- msgid "Max width (in px)"
252
- msgstr "სიგანე(პიქსელებში)"
253
-
254
- #: gallery-plugin.php:809
255
- #, fuzzy
256
- msgid "Max height (in px)"
257
- msgstr "სიმაღლე(პიქსელებში)"
258
-
259
- #: gallery-plugin.php:810
260
- msgid "Display a full size image in the lightbox"
261
- msgstr ""
262
-
263
- #: gallery-plugin.php:814
264
- msgid "Crop position"
265
- msgstr ""
266
-
267
- #: gallery-plugin.php:816
268
- msgid "Horizontal"
269
- msgstr ""
270
-
271
- #: gallery-plugin.php:818
272
- msgid "left"
273
- msgstr ""
274
-
275
- #: gallery-plugin.php:819
276
- #: gallery-plugin.php:826
277
- msgid "center"
278
- msgstr ""
279
-
280
- #: gallery-plugin.php:820
281
- msgid "right"
282
- msgstr ""
283
-
284
- #: gallery-plugin.php:823
285
- msgid "Vertical"
286
- msgstr ""
287
-
288
- #: gallery-plugin.php:825
289
- msgid "top"
290
- msgstr ""
291
-
292
- #: gallery-plugin.php:827
293
- msgid "bottom"
294
- msgstr ""
295
-
296
- #: gallery-plugin.php:832
297
- msgid "Lightbox background"
298
- msgstr ""
299
-
300
- #: gallery-plugin.php:834
301
- msgid "Default"
302
- msgstr ""
303
-
304
- #: gallery-plugin.php:835
305
- msgid "Background transparency (from 0 to 1)"
306
- msgstr ""
307
-
308
- #: gallery-plugin.php:837
309
- msgid "Select a background color"
310
- msgstr ""
311
-
312
- #: gallery-plugin.php:839
313
- msgid "Background color"
314
- msgstr ""
315
-
316
- #: gallery-plugin.php:846
317
- #: gallery-plugin.php:985
318
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
319
- msgstr ""
320
-
321
- #: gallery-plugin.php:853
322
- msgid "Images with border"
323
- msgstr ""
324
-
325
- #: gallery-plugin.php:856
326
- msgid "Border width in px, just numbers"
327
- msgstr ""
328
-
329
- #: gallery-plugin.php:858
330
- #: gallery-plugin.php:860
331
- msgid "Select a border color"
332
- msgstr ""
333
-
334
- #: gallery-plugin.php:866
335
- #, fuzzy
336
- msgid "Number of images in the row"
337
- msgstr "სურათების რაოდენობა მწკრივში"
338
-
339
- #: gallery-plugin.php:872
340
- msgid "Start slideshow"
341
- msgstr ""
342
-
343
- #: gallery-plugin.php:878
344
- msgid "Slideshow interval"
345
- msgstr ""
346
-
347
- #: gallery-plugin.php:886
348
- msgid "Attachment ID"
349
- msgstr ""
350
-
351
- #: gallery-plugin.php:887
352
- #, fuzzy
353
- msgid "Image Name"
354
- msgstr "ზომის სახელი"
355
-
356
- #: gallery-plugin.php:889
357
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
358
- msgstr ""
359
-
360
- #: gallery-plugin.php:890
361
- msgid "Random"
362
- msgstr ""
363
-
364
- #: gallery-plugin.php:894
365
- #, fuzzy
366
- msgid "Sort images"
367
- msgstr "სურათების რაოდენობა მწკრივში"
368
-
369
- #: gallery-plugin.php:896
370
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
371
- msgstr ""
372
-
373
- #: gallery-plugin.php:897
374
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
375
- msgstr ""
376
-
377
- #: gallery-plugin.php:901
378
- msgid "Display text above the image"
379
- msgstr ""
380
-
381
- #: gallery-plugin.php:903
382
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
383
- msgstr ""
384
-
385
- #: gallery-plugin.php:907
386
- msgid "Display the Back link"
387
- msgstr ""
388
-
389
- #: gallery-plugin.php:913
390
- msgid "Display the Back link in the shortcode"
391
- msgstr ""
392
-
393
- #: gallery-plugin.php:919
394
- msgid "The Back link text"
395
- msgstr ""
396
-
397
- #: gallery-plugin.php:925
398
- msgid "The Back link URL"
399
- msgstr ""
400
-
401
- #: gallery-plugin.php:927
402
- msgid "Gallery page (Page with Gallery Template)"
403
- msgstr ""
404
-
405
- #: gallery-plugin.php:929
406
- msgid "(Full URL to custom page)"
407
- msgstr ""
408
-
409
- #: gallery-plugin.php:933
410
- msgid "The Read More link text"
411
- msgstr ""
412
-
413
- #: gallery-plugin.php:939
414
- msgid "Add gallery to the search"
415
- msgstr ""
416
-
417
- #: gallery-plugin.php:955
418
- #: gallery-plugin.php:958
419
- #: gallery-plugin.php:962
420
- msgid "Using Custom Search powered by"
421
- msgstr ""
422
-
423
- #: gallery-plugin.php:958
424
- msgid "Activate Custom Search"
425
- msgstr ""
426
-
427
- #: gallery-plugin.php:962
428
- msgid "Download Custom Search"
429
- msgstr ""
430
-
431
- #: gallery-plugin.php:969
432
- msgid "Display Like buttons in the lightbox"
433
- msgstr ""
434
-
435
- #: gallery-plugin.php:971
436
- msgid "FaceBook"
437
- msgstr ""
438
-
439
- #: gallery-plugin.php:972
440
- #, fuzzy
441
- msgid "Twitter"
442
- msgstr "სათაური"
443
-
444
- #: gallery-plugin.php:973
445
- msgid "Pinterest"
446
- msgstr ""
447
-
448
- #: gallery-plugin.php:974
449
- msgid "Google +1"
450
- msgstr ""
451
-
452
- #: gallery-plugin.php:978
453
- #, fuzzy
454
- msgid "Slug for gallery item"
455
- msgstr "ზომა გალერეის სურათისთვის"
456
-
457
- #: gallery-plugin.php:980
458
- msgid "for any structure of permalinks except the default structure"
459
- msgstr ""
460
-
461
- #: gallery-plugin.php:993
462
- msgid "Save Changes"
463
- msgstr "ცვლილებების შენახვა"
464
-
465
- #: gallery-plugin.php:1005
466
- #: gallery-plugin.php:1020
467
- msgid "Settings"
468
- msgstr "პარამეტრები"
469
-
470
- #: gallery-plugin.php:1006
471
- msgid "FAQ"
472
- msgstr "FAQ"
473
-
474
- #: gallery-plugin.php:1007
475
- msgid "Support"
476
- msgstr "Support"
477
-
478
- #: gallery-plugin.php:1220
479
- #: template/gallery-single-template.php:77
480
- #, fuzzy
481
- msgid "Sorry, nothing found."
482
- msgstr "მაპატიეთ - არაფერია ნაპოვნი."
483
-
484
- #: gallery-plugin.php:1242
485
- #: template/gallery-single-template.php:103
486
- msgid "Download high resolution image"
487
- msgstr ""
488
-
489
- #: template/gallery-single-template.php:103
490
- msgid "Image"
491
- msgstr ""
492
-
493
- #, fuzzy
494
- #~ msgid "PHP Max Upload Size"
495
- #~ msgstr "ფაილის ატვირთვა"
496
- #~ msgid "Activated plugins"
497
- #~ msgstr "გააქტიურებული დანამატები:"
498
- #~ msgid "Read more"
499
- #~ msgstr "სრულად ნახვა"
500
- #~ msgid "Installed plugins"
501
- #~ msgstr "დაყენებული დანამატები"
502
- #~ msgid "Recommended plugins"
503
- #~ msgstr "რეკომენდირებული დანამატები"
504
-
505
- #, fuzzy
506
- #~ msgid "Free plugins"
507
- #~ msgstr "რეკომენდირებული დანამატები"
508
- #~ msgid "Download"
509
- #~ msgstr "გადმოტვირთვა"
510
- #~ msgid "Install %s"
511
- #~ msgstr "დაყენებულია %s"
512
- #~ msgid "Install now from wordpress.org"
513
- #~ msgstr "დააყენეთ wordpress.org-იდან"
514
-
515
- #, fuzzy
516
- #~ msgid "If you have any questions, please contact us via"
517
- #~ msgstr ""
518
- #~ "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე "
519
- #~ "plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
520
-
521
- #, fuzzy
522
- #~ msgid "Active Plugins"
523
- #~ msgstr "გააქტიურებული დანამატები:"
524
-
525
- #, fuzzy
526
- #~ msgid "Inactive Plugins"
527
- #~ msgstr "გააქტიურებული დანამატები:"
528
-
529
- #, fuzzy
530
- #~ msgid "Send to support"
531
- #~ msgstr "Support"
532
- #~ msgid "Add New"
533
- #~ msgstr "ახლის დამატება"
534
- #~ msgid "Search Galleries"
535
- #~ msgstr "გალერეას ძებნა"
536
- #~ msgid "The size of the cover album for gallery"
537
- #~ msgstr "ალბომის ყდის ზომა გალერეისთვის"
538
-
539
- #, fuzzy
540
- #~ msgid "date"
541
- #~ msgstr "თარიღი"
542
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-lt_LT.mo DELETED
Binary file
languages/gallery-lt_LT.po DELETED
@@ -1,561 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: lt_LT\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Galerijos"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Galerija"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Pridėti naują galeriją"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Pridėti naują galeriją"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Redaguoti galeriją"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Nauja galerija"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Peržiūrėti galeriją"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Redaguoti galeriją"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "Galerijų nėra"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Įkelti failą"
68
-
69
- #: gallery-plugin.php:192
70
- msgid "Gallery Shortcode"
71
- msgstr "Galerijos trumpasis kodas"
72
-
73
- #: gallery-plugin.php:210
74
- #, fuzzy
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr "Serveriui nesuteikta rašymo teisių į galerijos laikinąjį aplanką (gallery-plugin/upload/files). Prašome naudoti numatytąsias WordPress funkcijas paveikslėliams įkelti (failų galerija)"
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "Pasirinkite paveikslėlį įkėlimui:"
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "Prašome įjungti JavaScript jei norite naudotis failų įkėlikliu."
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
93
- msgstr ""
94
-
95
- #: gallery-plugin.php:229
96
- msgid "Please make a choice"
97
- msgstr ""
98
-
99
- #: gallery-plugin.php:229
100
- #: gallery-plugin.php:884
101
- #, fuzzy
102
- msgid "Sort images by"
103
- msgstr "Paveikslėlių eilėje kiekis"
104
-
105
- #: gallery-plugin.php:229
106
- #, fuzzy
107
- msgid "sort images"
108
- msgstr "Paveikslėlių eilėje kiekis"
109
-
110
- #: gallery-plugin.php:229
111
- msgid "on the plugin settings page ("
112
- msgstr ""
113
-
114
- #: gallery-plugin.php:273
115
- #: gallery-plugin.php:502
116
- msgid "Title"
117
- msgstr "Pavadinimas"
118
-
119
- #: gallery-plugin.php:275
120
- msgid "Alt tag"
121
- msgstr ""
122
-
123
- #: gallery-plugin.php:276
124
- msgid "URL"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "(by click on image opens a link in a new window)"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:277
132
- msgid "This setting is available in Pro version"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:278
136
- msgid "Open the link"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Current window"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "New window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:279
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:292
152
- #, fuzzy
153
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
154
- msgstr "Galite įterpti galeriją puslapyje ar įraše įterpdami šį trumpąjį kodą į turinį"
155
-
156
- #: gallery-plugin.php:294
157
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
158
- msgstr ""
159
-
160
- #: gallery-plugin.php:503
161
- msgid "Author"
162
- msgstr "Autorius"
163
-
164
- #: gallery-plugin.php:504
165
- #, fuzzy
166
- msgid "Photo"
167
- msgstr "Nuotraukos"
168
-
169
- #: gallery-plugin.php:505
170
- #, fuzzy
171
- msgid "Publishing"
172
- msgstr "Vieša"
173
-
174
- #: gallery-plugin.php:506
175
- #: gallery-plugin.php:888
176
- msgid "Date"
177
- msgstr "Data"
178
-
179
- #: gallery-plugin.php:632
180
- #, fuzzy
181
- msgid "See images &raquo;"
182
- msgstr "Peržiūrėti nuotrauką &raquo;"
183
-
184
- #: gallery-plugin.php:679
185
- msgid "requires"
186
- msgstr ""
187
-
188
- #: gallery-plugin.php:679
189
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
190
- msgstr ""
191
-
192
- #: gallery-plugin.php:679
193
- msgid "Back to the WordPress"
194
- msgstr ""
195
-
196
- #: gallery-plugin.php:679
197
- #, fuzzy
198
- msgid "Plugins page"
199
- msgstr "Rekomenduojami įskiepiai"
200
-
201
- #: gallery-plugin.php:764
202
- #, fuzzy
203
- msgid "Settings are saved"
204
- msgstr "Pasirinktys išsaugotos."
205
-
206
- #: gallery-plugin.php:777
207
- #, fuzzy
208
- msgid "Gallery Settings"
209
- msgstr "Galerijų pasirinktys"
210
-
211
- #: gallery-plugin.php:780
212
- #, fuzzy
213
- 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:"
214
- msgstr "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
215
-
216
- #: gallery-plugin.php:784
217
- #, fuzzy
218
- msgid "Image size for the album cover"
219
- msgstr "Размер для "
220
-
221
- #: gallery-plugin.php:786
222
- #: gallery-plugin.php:794
223
- #: gallery-plugin.php:807
224
- #, fuzzy
225
- msgid "Image size"
226
- msgstr "Paveikslėlio matmenų klasės vardas"
227
-
228
- #: gallery-plugin.php:787
229
- #: gallery-plugin.php:795
230
- msgid "Width (in px)"
231
- msgstr "Plotis (pikseliais)"
232
-
233
- #: gallery-plugin.php:788
234
- #: gallery-plugin.php:796
235
- msgid "Height (in px)"
236
- msgstr "Aukštis (pikseliais)"
237
-
238
- #: gallery-plugin.php:792
239
- #, fuzzy
240
- msgid "Gallery image size"
241
- msgstr "Galerijos"
242
-
243
- #: gallery-plugin.php:800
244
- #, fuzzy
245
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
246
- msgstr "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite naują paveikslėlį."
247
-
248
- #: gallery-plugin.php:805
249
- msgid "Gallery image size in the lightbox"
250
- msgstr ""
251
-
252
- #: gallery-plugin.php:808
253
- #, fuzzy
254
- msgid "Max width (in px)"
255
- msgstr "Plotis (pikseliais)"
256
-
257
- #: gallery-plugin.php:809
258
- #, fuzzy
259
- msgid "Max height (in px)"
260
- msgstr "Aukštis (pikseliais)"
261
-
262
- #: gallery-plugin.php:810
263
- msgid "Display a full size image in the lightbox"
264
- msgstr ""
265
-
266
- #: gallery-plugin.php:814
267
- msgid "Crop position"
268
- msgstr ""
269
-
270
- #: gallery-plugin.php:816
271
- msgid "Horizontal"
272
- msgstr ""
273
-
274
- #: gallery-plugin.php:818
275
- msgid "left"
276
- msgstr ""
277
-
278
- #: gallery-plugin.php:819
279
- #: gallery-plugin.php:826
280
- msgid "center"
281
- msgstr ""
282
-
283
- #: gallery-plugin.php:820
284
- msgid "right"
285
- msgstr ""
286
-
287
- #: gallery-plugin.php:823
288
- msgid "Vertical"
289
- msgstr ""
290
-
291
- #: gallery-plugin.php:825
292
- msgid "top"
293
- msgstr ""
294
-
295
- #: gallery-plugin.php:827
296
- msgid "bottom"
297
- msgstr ""
298
-
299
- #: gallery-plugin.php:832
300
- msgid "Lightbox background"
301
- msgstr ""
302
-
303
- #: gallery-plugin.php:834
304
- msgid "Default"
305
- msgstr ""
306
-
307
- #: gallery-plugin.php:835
308
- msgid "Background transparency (from 0 to 1)"
309
- msgstr ""
310
-
311
- #: gallery-plugin.php:837
312
- msgid "Select a background color"
313
- msgstr ""
314
-
315
- #: gallery-plugin.php:839
316
- msgid "Background color"
317
- msgstr ""
318
-
319
- #: gallery-plugin.php:846
320
- #: gallery-plugin.php:985
321
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
322
- msgstr ""
323
-
324
- #: gallery-plugin.php:853
325
- msgid "Images with border"
326
- msgstr ""
327
-
328
- #: gallery-plugin.php:856
329
- msgid "Border width in px, just numbers"
330
- msgstr ""
331
-
332
- #: gallery-plugin.php:858
333
- #: gallery-plugin.php:860
334
- msgid "Select a border color"
335
- msgstr ""
336
-
337
- #: gallery-plugin.php:866
338
- #, fuzzy
339
- msgid "Number of images in the row"
340
- msgstr "Paveikslėlių eilėje kiekis"
341
-
342
- #: gallery-plugin.php:872
343
- msgid "Start slideshow"
344
- msgstr "Pradėti demonstraciją"
345
-
346
- #: gallery-plugin.php:878
347
- msgid "Slideshow interval"
348
- msgstr "Demonstracijos trukmė"
349
-
350
- #: gallery-plugin.php:886
351
- #, fuzzy
352
- msgid "Attachment ID"
353
- msgstr "prisegtuko ID"
354
-
355
- #: gallery-plugin.php:887
356
- #, fuzzy
357
- msgid "Image Name"
358
- msgstr "Paveikslėlis"
359
-
360
- #: gallery-plugin.php:889
361
- #, fuzzy
362
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
363
- msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
364
-
365
- #: gallery-plugin.php:890
366
- #, fuzzy
367
- msgid "Random"
368
- msgstr "atsitiktine tvarka"
369
-
370
- #: gallery-plugin.php:894
371
- #, fuzzy
372
- msgid "Sort images"
373
- msgstr "Paveikslėlių eilėje kiekis"
374
-
375
- #: gallery-plugin.php:896
376
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
377
- msgstr "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, c)"
378
-
379
- #: gallery-plugin.php:897
380
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
381
- msgstr "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, a)"
382
-
383
- #: gallery-plugin.php:901
384
- msgid "Display text above the image"
385
- msgstr ""
386
-
387
- #: gallery-plugin.php:903
388
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
389
- msgstr ""
390
-
391
- #: gallery-plugin.php:907
392
- #, fuzzy
393
- msgid "Display the Back link"
394
- msgstr "Rodyti Sugrįžimo nuorodą"
395
-
396
- #: gallery-plugin.php:913
397
- #, fuzzy
398
- msgid "Display the Back link in the shortcode"
399
- msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
400
-
401
- #: gallery-plugin.php:919
402
- msgid "The Back link text"
403
- msgstr ""
404
-
405
- #: gallery-plugin.php:925
406
- msgid "The Back link URL"
407
- msgstr ""
408
-
409
- #: gallery-plugin.php:927
410
- msgid "Gallery page (Page with Gallery Template)"
411
- msgstr ""
412
-
413
- #: gallery-plugin.php:929
414
- msgid "(Full URL to custom page)"
415
- msgstr ""
416
-
417
- #: gallery-plugin.php:933
418
- msgid "The Read More link text"
419
- msgstr ""
420
-
421
- #: gallery-plugin.php:939
422
- msgid "Add gallery to the search"
423
- msgstr ""
424
-
425
- #: gallery-plugin.php:955
426
- #: gallery-plugin.php:958
427
- #: gallery-plugin.php:962
428
- msgid "Using Custom Search powered by"
429
- msgstr ""
430
-
431
- #: gallery-plugin.php:958
432
- msgid "Activate Custom Search"
433
- msgstr ""
434
-
435
- #: gallery-plugin.php:962
436
- msgid "Download Custom Search"
437
- msgstr ""
438
-
439
- #: gallery-plugin.php:969
440
- msgid "Display Like buttons in the lightbox"
441
- msgstr ""
442
-
443
- #: gallery-plugin.php:971
444
- msgid "FaceBook"
445
- msgstr ""
446
-
447
- #: gallery-plugin.php:972
448
- #, fuzzy
449
- msgid "Twitter"
450
- msgstr "Pavadinimas"
451
-
452
- #: gallery-plugin.php:973
453
- msgid "Pinterest"
454
- msgstr ""
455
-
456
- #: gallery-plugin.php:974
457
- msgid "Google +1"
458
- msgstr ""
459
-
460
- #: gallery-plugin.php:978
461
- #, fuzzy
462
- msgid "Slug for gallery item"
463
- msgstr "Galerijos paveikslėlio matmenys"
464
-
465
- #: gallery-plugin.php:980
466
- msgid "for any structure of permalinks except the default structure"
467
- msgstr ""
468
-
469
- #: gallery-plugin.php:993
470
- msgid "Save Changes"
471
- msgstr "Išsaugoti pakeitimus"
472
-
473
- #: gallery-plugin.php:1005
474
- #: gallery-plugin.php:1020
475
- msgid "Settings"
476
- msgstr "Nustatymai"
477
-
478
- #: gallery-plugin.php:1006
479
- msgid "FAQ"
480
- msgstr "D. U. K."
481
-
482
- #: gallery-plugin.php:1007
483
- msgid "Support"
484
- msgstr "Palaikymas"
485
-
486
- #: gallery-plugin.php:1220
487
- #: template/gallery-single-template.php:77
488
- #, fuzzy
489
- msgid "Sorry, nothing found."
490
- msgstr "Deja, nieko nerasta."
491
-
492
- #: gallery-plugin.php:1242
493
- #: template/gallery-single-template.php:103
494
- msgid "Download high resolution image"
495
- msgstr ""
496
-
497
- #: template/gallery-single-template.php:103
498
- #, fuzzy
499
- msgid "Image"
500
- msgstr "Paveikslėlis"
501
-
502
- #, fuzzy
503
- #~ msgid "PHP Max Upload Size"
504
- #~ msgstr "Įkelti failą"
505
- #~ msgid "Activated plugins"
506
- #~ msgstr "Įjungti įskiepiai"
507
- #~ msgid "Read more"
508
- #~ msgstr "Skaityti daugiau"
509
- #~ msgid "Installed plugins"
510
- #~ msgstr "Įdiegti įskiepiai"
511
- #~ msgid "Recommended plugins"
512
- #~ msgstr "Rekomenduojami įskiepiai"
513
-
514
- #, fuzzy
515
- #~ msgid "Free plugins"
516
- #~ msgstr "Rekomenduojami įskiepiai"
517
- #~ msgid "Download"
518
- #~ msgstr "Atsisiųsti"
519
- #~ msgid "Install %s"
520
- #~ msgstr "Įdiegti %s"
521
- #~ msgid "Install now from wordpress.org"
522
- #~ msgstr "Įdiegti tiesiai iš wordpress.org"
523
-
524
- #, fuzzy
525
- #~ msgid "If you have any questions, please contact us via"
526
- #~ msgstr ""
527
- #~ "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, "
528
- #~ "arba užpildykite susisiekimo formą mūsų tinklalapyje"
529
-
530
- #, fuzzy
531
- #~ msgid "Active Plugins"
532
- #~ msgstr "Įjungti įskiepiai"
533
-
534
- #, fuzzy
535
- #~ msgid "Inactive Plugins"
536
- #~ msgstr "Įjungti įskiepiai"
537
-
538
- #, fuzzy
539
- #~ msgid "Send to support"
540
- #~ msgstr "Palaikymas"
541
- #~ msgid "Add New"
542
- #~ msgstr "Pridėti naują"
543
- #~ msgid "Search Galleries"
544
- #~ msgstr "Ieškoti galerijose"
545
- #~ msgid "Attachments order by"
546
- #~ msgstr "Prisegtukus rikiuoti pagal"
547
- #~ msgid "The size of the cover album for gallery"
548
- #~ msgstr "Galerijos viršelio matmenys"
549
- #~ msgid "attachment title"
550
- #~ msgstr "prisegtuko pavadinimą"
551
- #~ msgid "date"
552
- #~ msgstr "datą"
553
- #~ msgid "Attachments order"
554
- #~ msgstr "Prisegtukų išdėstymas"
555
- #~ msgid "Label for Return link"
556
- #~ msgstr "Sugrįžimo nuorodos tekstas"
557
-
558
- #, fuzzy
559
- #~ msgid "URL for Return link"
560
- #~ msgstr "Sugrįžimo nuorodos tekstas"
561
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-nl_NL.mo DELETED
Binary file
languages/gallery-nl_NL.po DELETED
@@ -1,541 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Ronald <ronald@bhi.nl>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: nl_NL\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Fotoalbum's"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Fotoalbum"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Nieuw fotoalbum"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Nieuw fotoalbum"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Fotoalbum bewerken"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Nieuwe foto"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Foto bekijken"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Fotoalbum bewerken"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "Niets gevonden"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Foto's uploaden"
68
-
69
- #: gallery-plugin.php:192
70
- #, fuzzy
71
- msgid "Gallery Shortcode"
72
- msgstr "Fotoalbum opties"
73
-
74
- #: gallery-plugin.php:210
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr ""
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "Foto's uploaden: "
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "Activeer JavaScript om foto's te kunnen uploaden."
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
93
- msgstr ""
94
-
95
- #: gallery-plugin.php:229
96
- msgid "Please make a choice"
97
- msgstr ""
98
-
99
- #: gallery-plugin.php:229
100
- #: gallery-plugin.php:884
101
- #, fuzzy
102
- msgid "Sort images by"
103
- msgstr "Aantal afbeeldingen op een rij"
104
-
105
- #: gallery-plugin.php:229
106
- #, fuzzy
107
- msgid "sort images"
108
- msgstr "Aantal afbeeldingen op een rij"
109
-
110
- #: gallery-plugin.php:229
111
- msgid "on the plugin settings page ("
112
- msgstr ""
113
-
114
- #: gallery-plugin.php:273
115
- #: gallery-plugin.php:502
116
- msgid "Title"
117
- msgstr "Titel"
118
-
119
- #: gallery-plugin.php:275
120
- msgid "Alt tag"
121
- msgstr ""
122
-
123
- #: gallery-plugin.php:276
124
- msgid "URL"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "(by click on image opens a link in a new window)"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:277
132
- msgid "This setting is available in Pro version"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:278
136
- msgid "Open the link"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Current window"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "New window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:279
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:292
152
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
153
- msgstr ""
154
-
155
- #: gallery-plugin.php:294
156
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
157
- msgstr ""
158
-
159
- #: gallery-plugin.php:503
160
- msgid "Author"
161
- msgstr "Auteur"
162
-
163
- #: gallery-plugin.php:504
164
- #, fuzzy
165
- msgid "Photo"
166
- msgstr "Foto's"
167
-
168
- #: gallery-plugin.php:505
169
- #, fuzzy
170
- msgid "Publishing"
171
- msgstr "Gepubliceerd"
172
-
173
- #: gallery-plugin.php:506
174
- #: gallery-plugin.php:888
175
- msgid "Date"
176
- msgstr "Datum"
177
-
178
- #: gallery-plugin.php:632
179
- #, fuzzy
180
- msgid "See images &raquo;"
181
- msgstr "Bekijk foto &raquo;"
182
-
183
- #: gallery-plugin.php:679
184
- msgid "requires"
185
- msgstr ""
186
-
187
- #: gallery-plugin.php:679
188
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
189
- msgstr ""
190
-
191
- #: gallery-plugin.php:679
192
- msgid "Back to the WordPress"
193
- msgstr ""
194
-
195
- #: gallery-plugin.php:679
196
- #, fuzzy
197
- msgid "Plugins page"
198
- msgstr "Aanbevolen plugins"
199
-
200
- #: gallery-plugin.php:764
201
- #, fuzzy
202
- msgid "Settings are saved"
203
- msgstr "Opties opgeslagen"
204
-
205
- #: gallery-plugin.php:777
206
- #, fuzzy
207
- msgid "Gallery Settings"
208
- msgstr "Fotoalbum opties"
209
-
210
- #: gallery-plugin.php:780
211
- 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:"
212
- msgstr ""
213
-
214
- #: gallery-plugin.php:784
215
- #, fuzzy
216
- msgid "Image size for the album cover"
217
- msgstr "De afmetingen voor de cover van het album"
218
-
219
- #: gallery-plugin.php:786
220
- #: gallery-plugin.php:794
221
- #: gallery-plugin.php:807
222
- #, fuzzy
223
- msgid "Image size"
224
- msgstr "Afbeelding grootte"
225
-
226
- #: gallery-plugin.php:787
227
- #: gallery-plugin.php:795
228
- msgid "Width (in px)"
229
- msgstr "Breedte (in px)"
230
-
231
- #: gallery-plugin.php:788
232
- #: gallery-plugin.php:796
233
- msgid "Height (in px)"
234
- msgstr "Hoogte (in px)"
235
-
236
- #: gallery-plugin.php:792
237
- #, fuzzy
238
- msgid "Gallery image size"
239
- msgstr "Fotoalbum's"
240
-
241
- #: gallery-plugin.php:800
242
- #, fuzzy
243
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
244
- msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
245
-
246
- #: gallery-plugin.php:805
247
- msgid "Gallery image size in the lightbox"
248
- msgstr ""
249
-
250
- #: gallery-plugin.php:808
251
- #, fuzzy
252
- msgid "Max width (in px)"
253
- msgstr "Breedte (in px)"
254
-
255
- #: gallery-plugin.php:809
256
- #, fuzzy
257
- msgid "Max height (in px)"
258
- msgstr "Hoogte (in px)"
259
-
260
- #: gallery-plugin.php:810
261
- msgid "Display a full size image in the lightbox"
262
- msgstr ""
263
-
264
- #: gallery-plugin.php:814
265
- msgid "Crop position"
266
- msgstr ""
267
-
268
- #: gallery-plugin.php:816
269
- msgid "Horizontal"
270
- msgstr ""
271
-
272
- #: gallery-plugin.php:818
273
- msgid "left"
274
- msgstr ""
275
-
276
- #: gallery-plugin.php:819
277
- #: gallery-plugin.php:826
278
- msgid "center"
279
- msgstr ""
280
-
281
- #: gallery-plugin.php:820
282
- msgid "right"
283
- msgstr ""
284
-
285
- #: gallery-plugin.php:823
286
- msgid "Vertical"
287
- msgstr ""
288
-
289
- #: gallery-plugin.php:825
290
- msgid "top"
291
- msgstr ""
292
-
293
- #: gallery-plugin.php:827
294
- msgid "bottom"
295
- msgstr ""
296
-
297
- #: gallery-plugin.php:832
298
- msgid "Lightbox background"
299
- msgstr ""
300
-
301
- #: gallery-plugin.php:834
302
- msgid "Default"
303
- msgstr ""
304
-
305
- #: gallery-plugin.php:835
306
- msgid "Background transparency (from 0 to 1)"
307
- msgstr ""
308
-
309
- #: gallery-plugin.php:837
310
- msgid "Select a background color"
311
- msgstr ""
312
-
313
- #: gallery-plugin.php:839
314
- msgid "Background color"
315
- msgstr ""
316
-
317
- #: gallery-plugin.php:846
318
- #: gallery-plugin.php:985
319
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
320
- msgstr ""
321
-
322
- #: gallery-plugin.php:853
323
- msgid "Images with border"
324
- msgstr ""
325
-
326
- #: gallery-plugin.php:856
327
- msgid "Border width in px, just numbers"
328
- msgstr ""
329
-
330
- #: gallery-plugin.php:858
331
- #: gallery-plugin.php:860
332
- msgid "Select a border color"
333
- msgstr ""
334
-
335
- #: gallery-plugin.php:866
336
- #, fuzzy
337
- msgid "Number of images in the row"
338
- msgstr "Aantal afbeeldingen op een rij"
339
-
340
- #: gallery-plugin.php:872
341
- msgid "Start slideshow"
342
- msgstr ""
343
-
344
- #: gallery-plugin.php:878
345
- msgid "Slideshow interval"
346
- msgstr ""
347
-
348
- #: gallery-plugin.php:886
349
- msgid "Attachment ID"
350
- msgstr ""
351
-
352
- #: gallery-plugin.php:887
353
- #, fuzzy
354
- msgid "Image Name"
355
- msgstr "Afbeelding grootte"
356
-
357
- #: gallery-plugin.php:889
358
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
359
- msgstr ""
360
-
361
- #: gallery-plugin.php:890
362
- msgid "Random"
363
- msgstr ""
364
-
365
- #: gallery-plugin.php:894
366
- #, fuzzy
367
- msgid "Sort images"
368
- msgstr "Aantal afbeeldingen op een rij"
369
-
370
- #: gallery-plugin.php:896
371
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
372
- msgstr ""
373
-
374
- #: gallery-plugin.php:897
375
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
376
- msgstr ""
377
-
378
- #: gallery-plugin.php:901
379
- msgid "Display text above the image"
380
- msgstr ""
381
-
382
- #: gallery-plugin.php:903
383
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
384
- msgstr ""
385
-
386
- #: gallery-plugin.php:907
387
- msgid "Display the Back link"
388
- msgstr ""
389
-
390
- #: gallery-plugin.php:913
391
- msgid "Display the Back link in the shortcode"
392
- msgstr ""
393
-
394
- #: gallery-plugin.php:919
395
- msgid "The Back link text"
396
- msgstr ""
397
-
398
- #: gallery-plugin.php:925
399
- msgid "The Back link URL"
400
- msgstr ""
401
-
402
- #: gallery-plugin.php:927
403
- msgid "Gallery page (Page with Gallery Template)"
404
- msgstr ""
405
-
406
- #: gallery-plugin.php:929
407
- msgid "(Full URL to custom page)"
408
- msgstr ""
409
-
410
- #: gallery-plugin.php:933
411
- msgid "The Read More link text"
412
- msgstr ""
413
-
414
- #: gallery-plugin.php:939
415
- msgid "Add gallery to the search"
416
- msgstr ""
417
-
418
- #: gallery-plugin.php:955
419
- #: gallery-plugin.php:958
420
- #: gallery-plugin.php:962
421
- msgid "Using Custom Search powered by"
422
- msgstr ""
423
-
424
- #: gallery-plugin.php:958
425
- msgid "Activate Custom Search"
426
- msgstr ""
427
-
428
- #: gallery-plugin.php:962
429
- msgid "Download Custom Search"
430
- msgstr ""
431
-
432
- #: gallery-plugin.php:969
433
- msgid "Display Like buttons in the lightbox"
434
- msgstr ""
435
-
436
- #: gallery-plugin.php:971
437
- msgid "FaceBook"
438
- msgstr ""
439
-
440
- #: gallery-plugin.php:972
441
- #, fuzzy
442
- msgid "Twitter"
443
- msgstr "Titel"
444
-
445
- #: gallery-plugin.php:973
446
- msgid "Pinterest"
447
- msgstr ""
448
-
449
- #: gallery-plugin.php:974
450
- msgid "Google +1"
451
- msgstr ""
452
-
453
- #: gallery-plugin.php:978
454
- #, fuzzy
455
- msgid "Slug for gallery item"
456
- msgstr "Grootte voor album afbeelding"
457
-
458
- #: gallery-plugin.php:980
459
- msgid "for any structure of permalinks except the default structure"
460
- msgstr ""
461
-
462
- #: gallery-plugin.php:993
463
- msgid "Save Changes"
464
- msgstr "Bewaar veranderingen"
465
-
466
- #: gallery-plugin.php:1005
467
- #: gallery-plugin.php:1020
468
- msgid "Settings"
469
- msgstr "Instellingen"
470
-
471
- #: gallery-plugin.php:1006
472
- msgid "FAQ"
473
- msgstr "FAQ"
474
-
475
- #: gallery-plugin.php:1007
476
- msgid "Support"
477
- msgstr "Support"
478
-
479
- #: gallery-plugin.php:1220
480
- #: template/gallery-single-template.php:77
481
- #, fuzzy
482
- msgid "Sorry, nothing found."
483
- msgstr "Helaas - niets gevonden"
484
-
485
- #: gallery-plugin.php:1242
486
- #: template/gallery-single-template.php:103
487
- msgid "Download high resolution image"
488
- msgstr ""
489
-
490
- #: template/gallery-single-template.php:103
491
- msgid "Image"
492
- msgstr ""
493
-
494
- #, fuzzy
495
- #~ msgid "PHP Max Upload Size"
496
- #~ msgstr "Foto's uploaden"
497
- #~ msgid "Activated plugins"
498
- #~ msgstr "Geactiveerde plugins"
499
- #~ msgid "Read more"
500
- #~ msgstr "Lees verder"
501
- #~ msgid "Installed plugins"
502
- #~ msgstr "Geinstalleerde plugins"
503
- #~ msgid "Recommended plugins"
504
- #~ msgstr "Aanbevolen plugins"
505
-
506
- #, fuzzy
507
- #~ msgid "Free plugins"
508
- #~ msgstr "Aanbevolen plugins"
509
- #~ msgid "Download"
510
- #~ msgstr "Download"
511
- #~ msgid "Install %s"
512
- #~ msgstr "Install %s"
513
- #~ msgid "Install now from wordpress.org"
514
- #~ msgstr "Installeer nu vanaf wordpress.org"
515
-
516
- #, fuzzy
517
- #~ msgid "If you have any questions, please contact us via"
518
- #~ msgstr ""
519
- #~ "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of "
520
- #~ "vul het contactformulier in op onze website"
521
-
522
- #, fuzzy
523
- #~ msgid "Active Plugins"
524
- #~ msgstr "Geactiveerde plugins"
525
-
526
- #, fuzzy
527
- #~ msgid "Inactive Plugins"
528
- #~ msgstr "Geactiveerde plugins"
529
-
530
- #, fuzzy
531
- #~ msgid "Send to support"
532
- #~ msgstr "Support"
533
- #~ msgid "Add New"
534
- #~ msgstr "Nieuw fotoalbum"
535
- #~ msgid "Search Galleries"
536
- #~ msgstr "Zoeken"
537
-
538
- #, fuzzy
539
- #~ msgid "date"
540
- #~ msgstr "Datum"
541
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gallery-pl_PL.mo DELETED
Binary file
languages/gallery-pl_PL.po DELETED
@@ -1,544 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: gallery\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+0300\n"
7
- "Last-Translator: \n"
8
- "Language-Team: BWS <bestwebsoft.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Language: pl_PL\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: gallery-plugin.php:101
20
- #: gallery-plugin.php:771
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
-
24
- #: gallery-plugin.php:126
25
- #: gallery-plugin.php:136
26
- msgid "Galleries"
27
- msgstr "Galerie zdjęć"
28
-
29
- #: gallery-plugin.php:127
30
- #: gallery-plugin.php:606
31
- msgid "Gallery"
32
- msgstr "Galeria zdjęć"
33
-
34
- #: gallery-plugin.php:128
35
- #, fuzzy
36
- msgid "Add a Gallery"
37
- msgstr "Dodaj nową galerię"
38
-
39
- #: gallery-plugin.php:129
40
- msgid "Add New Gallery"
41
- msgstr "Dodaj nową galerię"
42
-
43
- #: gallery-plugin.php:130
44
- msgid "Edit Gallery"
45
- msgstr "Edytuj galerię"
46
-
47
- #: gallery-plugin.php:131
48
- msgid "New Gallery"
49
- msgstr "Nowa galeria"
50
-
51
- #: gallery-plugin.php:132
52
- msgid "View Gallery"
53
- msgstr "Zobacz galerię"
54
-
55
- #: gallery-plugin.php:133
56
- #, fuzzy
57
- msgid "Find a Gallery"
58
- msgstr "Edytuj galerię"
59
-
60
- #: gallery-plugin.php:134
61
- #, fuzzy
62
- msgid "No Gallery found"
63
- msgstr "Nie znaleziono żadnej galerii"
64
-
65
- #: gallery-plugin.php:191
66
- msgid "Upload File"
67
- msgstr "Wgraj plik"
68
-
69
- #: gallery-plugin.php:192
70
- #, fuzzy
71
- msgid "Gallery Shortcode"
72
- msgstr "Opcje galerii."
73
-
74
- #: gallery-plugin.php:210
75
- msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
76
- msgstr ""
77
-
78
- #: gallery-plugin.php:214
79
- #, fuzzy
80
- msgid "Choose an image for upload:"
81
- msgstr "Wybierz zrzut ekrany do wgrania na serwer"
82
-
83
- #: gallery-plugin.php:219
84
- msgid "Please enable JavaScript to use the file uploader."
85
- msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
86
-
87
- #: gallery-plugin.php:226
88
- msgid "Allow the download link for all images in this gallery"
89
- msgstr ""
90
-
91
- #: gallery-plugin.php:227
92
- msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
93
- msgstr ""
94
-
95
- #: gallery-plugin.php:229
96
- msgid "Please make a choice"
97
- msgstr ""
98
-
99
- #: gallery-plugin.php:229
100
- #: gallery-plugin.php:884
101
- #, fuzzy
102
- msgid "Sort images by"
103
- msgstr "Ilość obrazków w rzędzie"
104
-
105
- #: gallery-plugin.php:229
106
- #, fuzzy
107
- msgid "sort images"
108
- msgstr "Ilość obrazków w rzędzie"
109
-
110
- #: gallery-plugin.php:229
111
- msgid "on the plugin settings page ("
112
- msgstr ""
113
-
114
- #: gallery-plugin.php:273
115
- #: gallery-plugin.php:502
116
- msgid "Title"
117
- msgstr "Tytuł"
118
-
119
- #: gallery-plugin.php:275
120
- msgid "Alt tag"
121
- msgstr ""
122
-
123
- #: gallery-plugin.php:276
124
- msgid "URL"
125
- msgstr ""
126
-
127
- #: gallery-plugin.php:276
128
- msgid "(by click on image opens a link in a new window)"
129
- msgstr ""
130
-
131
- #: gallery-plugin.php:277
132
- msgid "This setting is available in Pro version"
133
- msgstr ""
134
-
135
- #: gallery-plugin.php:278
136
- msgid "Open the link"
137
- msgstr ""
138
-
139
- #: gallery-plugin.php:278
140
- msgid "Current window"
141
- msgstr ""
142
-
143
- #: gallery-plugin.php:278
144
- msgid "New window"
145
- msgstr ""
146
-
147
- #: gallery-plugin.php:279
148
- msgid "Delete"
149
- msgstr ""
150
-
151
- #: gallery-plugin.php:292
152
- msgid "You can add a Single Gallery to the page or post by inserting this shortcode into the content"
153
- msgstr ""
154
-
155
- #: gallery-plugin.php:294
156
- msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
157
- msgstr ""
158
-
159
- #: gallery-plugin.php:503
160
- msgid "Author"
161
- msgstr "Autor"
162
-
163
- #: gallery-plugin.php:504
164
- #, fuzzy
165
- msgid "Photo"
166
- msgstr "Zdjęcie"
167
-
168
- #: gallery-plugin.php:505
169
- #, fuzzy
170
- msgid "Publishing"
171
- msgstr "Publiczne"
172
-
173
- #: gallery-plugin.php:506
174
- #: gallery-plugin.php:888
175
- msgid "Date"
176
- msgstr "Data"
177
-
178
- #: gallery-plugin.php:632
179
- #, fuzzy
180
- msgid "See images &raquo;"
181
- msgstr "Zobacz zdjęcia &raquo;"
182
-
183
- #: gallery-plugin.php:679
184
- msgid "requires"
185
- msgstr ""
186
-
187
- #: gallery-plugin.php:679
188
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
189
- msgstr ""
190
-
191
- #: gallery-plugin.php:679
192
- msgid "Back to the WordPress"
193
- msgstr ""
194
-
195
- #: gallery-plugin.php:679
196
- #, fuzzy
197
- msgid "Plugins page"
198
- msgstr "Rekomendowane pluginy"
199
-
200
- #: gallery-plugin.php:764
201
- #, fuzzy
202
- msgid "Settings are saved"
203
- msgstr "Opcje zostały zapisane."
204
-
205
- #: gallery-plugin.php:777
206
- #, fuzzy
207
- msgid "Gallery Settings"
208
- msgstr "Opcje galerii."
209
-
210
- #: gallery-plugin.php:780
211
- 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:"
212
- msgstr ""
213
-
214
- #: gallery-plugin.php:784
215
- #, fuzzy
216
- msgid "Image size for the album cover"
217
- msgstr "Размер для "
218
-
219
- #: gallery-plugin.php:786
220
- #: gallery-plugin.php:794
221
- #: gallery-plugin.php:807
222
- #, fuzzy
223
- msgid "Image size"
224
- msgstr "Nazwa rozmiaru obrazka"
225
-
226
- #: gallery-plugin.php:787
227
- #: gallery-plugin.php:795
228
- msgid "Width (in px)"
229
- msgstr "Szerokość (w px)"
230
-
231
- #: gallery-plugin.php:788
232
- #: gallery-plugin.php:796
233
- msgid "Height (in px)"
234
- msgstr "Wysokość (w px)"
235
-
236
- #: gallery-plugin.php:792
237
- #, fuzzy
238
- msgid "Gallery image size"
239
- msgstr "Galerie zdjęć"
240
-
241
- #: gallery-plugin.php:800
242
- #, fuzzy
243
- msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
244
- msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
245
-
246
- #: gallery-plugin.php:805
247
- msgid "Gallery image size in the lightbox"
248
- msgstr ""
249
-
250
- #: gallery-plugin.php:808
251
- #, fuzzy
252
- msgid "Max width (in px)"
253
- msgstr "Szerokość (w px)"
254
-
255
- #: gallery-plugin.php:809
256
- #, fuzzy
257
- msgid "Max height (in px)"
258
- msgstr "Wysokość (w px)"
259
-
260
- #: gallery-plugin.php:810
261
- msgid "Display a full size image in the lightbox"
262
- msgstr ""
263
-
264
- #: gallery-plugin.php:814
265
- msgid "Crop position"
266
- msgstr ""
267
-
268
- #: gallery-plugin.php:816
269
- msgid "Horizontal"
270
- msgstr ""
271
-
272
- #: gallery-plugin.php:818
273
- msgid "left"
274
- msgstr ""
275
-
276
- #: gallery-plugin.php:819
277
- #: gallery-plugin.php:826
278
- msgid "center"
279
- msgstr ""
280
-
281
- #: gallery-plugin.php:820
282
- msgid "right"
283
- msgstr ""
284
-
285
- #: gallery-plugin.php:823
286
- msgid "Vertical"
287
- msgstr ""
288
-
289
- #: gallery-plugin.php:825
290
- msgid "top"
291
- msgstr ""
292
-
293
- #: gallery-plugin.php:827
294
- msgid "bottom"
295
- msgstr ""
296
-
297
- #: gallery-plugin.php:832
298
- msgid "Lightbox background"
299
- msgstr ""
300
-
301
- #: gallery-plugin.php:834
302
- msgid "Default"
303
- msgstr ""
304
-
305
- #: gallery-plugin.php:835
306
- msgid "Background transparency (from 0 to 1)"
307
- msgstr ""
308
-
309
- #: gallery-plugin.php:837
310
- msgid "Select a background color"
311
- msgstr ""
312
-
313
- #: gallery-plugin.php:839
314
- msgid "Background color"
315
- msgstr ""
316
-
317
- #: gallery-plugin.php:846
318
- #: gallery-plugin.php:985
319
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
320
- msgstr ""
321
-
322
- #: gallery-plugin.php:853
323
- msgid "Images with border"
324
- msgstr ""
325
-
326
- #: gallery-plugin.php:856
327
- msgid "Border width in px, just numbers"
328
- msgstr ""
329
-
330
- #: gallery-plugin.php:858
331
- #: gallery-plugin.php:860
332
- msgid "Select a border color"
333
- msgstr ""
334
-
335
- #: gallery-plugin.php:866
336
- #, fuzzy
337
- msgid "Number of images in the row"
338
- msgstr "Ilość obrazków w rzędzie"
339
-
340
- #: gallery-plugin.php:872
341
- msgid "Start slideshow"
342
- msgstr ""
343
-
344
- #: gallery-plugin.php:878
345
- msgid "Slideshow interval"
346
- msgstr ""
347
-
348
- #: gallery-plugin.php:886
349
- msgid "Attachment ID"
350
- msgstr ""
351
-
352
- #: gallery-plugin.php:887
353
- #, fuzzy
354
- msgid "Image Name"
355
- msgstr "Nazwa rozmiaru obrazka"
356
-
357
- #: gallery-plugin.php:889
358
- msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
359
- msgstr ""
360
-
361
- #: gallery-plugin.php:890
362
- msgid "Random"
363
- msgstr ""
364
-
365
- #: gallery-plugin.php:894
366
- #, fuzzy
367
- msgid "Sort images"
368
- msgstr "Ilość obrazków w rzędzie"
369
-
370
- #: gallery-plugin.php:896
371
- msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
372
- msgstr ""
373
-
374
- #: gallery-plugin.php:897
375
- msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
376
- msgstr ""
377
-
378
- #: gallery-plugin.php:901
379
- msgid "Display text above the image"
380
- msgstr ""
381
-
382
- #: gallery-plugin.php:903
383
- msgid "Turn off the checkbox, if you want to display text just in a lightbox"
384
- msgstr ""
385
-
386
- #: gallery-plugin.php:907
387
- msgid "Display the Back link"
388
- msgstr ""
389
-
390
- #: gallery-plugin.php:913
391
- msgid "Display the Back link in the shortcode"
392
- msgstr ""
393
-
394
- #: gallery-plugin.php:919
395
- msgid "The Back link text"
396
- msgstr ""
397
-
398
- #: gallery-plugin.php:925
399
- msgid "The Back link URL"
400
- msgstr ""
401
-
402
- #: gallery-plugin.php:927
403
- msgid "Gallery page (Page with Gallery Template)"
404
- msgstr ""
405
-
406
- #: gallery-plugin.php:929
407
- msgid "(Full URL to custom page)"
408
- msgstr ""
409
-
410
- #: gallery-plugin.php:933
411
- msgid "The Read More link text"
412
- msgstr ""
413
-
414
- #: gallery-plugin.php:939
415
- msgid "Add gallery to the search"
416
- msgstr ""
417
-
418
- #: gallery-plugin.php:955
419
- #: gallery-plugin.php:958
420
- #: gallery-plugin.php:962
421
- msgid "Using Custom Search powered by"
422
- msgstr ""
423
-
424
- #: gallery-plugin.php:958
425
- msgid "Activate Custom Search"
426
- msgstr ""
427
-
428
- #: gallery-plugin.php:962
429
- msgid "Download Custom Search"
430
- msgstr ""
431
-
432
- #: gallery-plugin.php:969
433
- msgid "Display Like buttons in the lightbox"
434
- msgstr ""
435
-
436
- #: gallery-plugin.php:971
437
- msgid "FaceBook"
438
- msgstr ""
439
-
440
- #: gallery-plugin.php:972
441
- #, fuzzy
442
- msgid "Twitter"
443
- msgstr "Tytuł"
444
-
445
- #: gallery-plugin.php:973
446
- msgid "Pinterest"
447
- msgstr ""
448
-
449
- #: gallery-plugin.php:974
450
- msgid "Google +1"
451
- msgstr ""
452
-
453
- #: gallery-plugin.php:978
454
- #, fuzzy
455
- msgid "Slug for gallery item"
456
- msgstr "Rozmiar dla obrazka w galerii"
457
-
458
- #: gallery-plugin.php:980
459
- msgid "for any structure of permalinks except the default structure"
460
- msgstr ""
461
-
462
- #: gallery-plugin.php:993
463
- msgid "Save Changes"
464
- msgstr "Zapisz zmiany"
465
-
466
- #: gallery-plugin.php:1005
467
- #: gallery-plugin.php:1020
468
- msgid "Settings"
469
- msgstr "Ustawienia"
470
-
471
- #: gallery-plugin.php:1006
472
- msgid "FAQ"
473
- msgstr "FAQ "
474
-
475
- #: gallery-plugin.php:1007
476
- msgid "Support"
477
- msgstr "Wsparcie"
478
-
479
- #: gallery-plugin.php:1220
480
- #: template/gallery-single-template.php:77
481
- #, fuzzy
482
- msgid "Sorry, nothing found."
483
- msgstr "Przykro nam - nic nie znaleziono."
484
-
485
- #: gallery-plugin.php:1242
486
- #: template/gallery-single-template.php:103
487
- msgid "Download high resolution image"
488
- msgstr ""
489
-
490
- #: template/gallery-single-template.php:103
491
- msgid "Image"
492
- msgstr ""
493
-
494
- #, fuzzy
495
- #~ msgid "PHP Max Upload Size"
496
- #~ msgstr "Wgraj plik"
497
- #~ msgid "Activated plugins"
498
- #~ msgstr "Aktywny plugin"
499
- #~ msgid "Read more"
500
- #~ msgstr "Czytaj dalej"
501
- #~ msgid "Installed plugins"
502
- #~ msgstr "Zainstalowane pluginy"
503
- #~ msgid "Recommended plugins"
504
- #~ msgstr "Rekomendowane pluginy"
505
-
506
- #, fuzzy
507
- #~ msgid "Free plugins"
508
- #~ msgstr "Rekomendowane pluginy"
509
- #~ msgid "Download"
510
- #~ msgstr "Pobierz"
511
- #~ msgid "Install %s"
512
- #~ msgstr "Zainstaluj %s"
513
- #~ msgid "Install now from wordpress.org"
514
- #~ msgstr "Zainstaluj teraz z wordpress.org"
515
-
516
- #, fuzzy
517
- #~ msgid "If you have any questions, please contact us via"
518
- #~ msgstr ""
519
- #~ "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres "
520
- #~ "plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej "
521
- #~ "stronie."
522
-
523
- #, fuzzy
524
- #~ msgid "Active Plugins"
525
- #~ msgstr "Aktywny plugin"
526
-
527
- #, fuzzy
528
- #~ msgid "Inactive Plugins"
529
- #~ msgstr "Aktywny plugin"
530
-
531
- #, fuzzy
532
- #~ msgid "Send to support"
533
- #~ msgstr "Wsparcie"
534
- #~ msgid "Add New"
535
- #~ msgstr "Dodaj nową"
536
- #~ msgid "Search Galleries"
537
- #~ msgstr "Szukaj galerii"
538
- #~ msgid "The size of the cover album for gallery"
539
- #~ msgstr "Rozmiar okładki albumu"
540
-
541
- #, fuzzy
542
- #~ msgid "date"
543
- #~ msgstr "Data"
544
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:28+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
9
  "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
20
 
21
  # @ gallery
22
  #: gallery-plugin.php:101
23
- #: gallery-plugin.php:771
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
 
@@ -113,7 +113,7 @@ msgstr "Por favor, faça uma escolha"
113
 
114
  # @ gallery
115
  #: gallery-plugin.php:229
116
- #: gallery-plugin.php:884
117
  msgid "Sort images by"
118
  msgstr "Ordenar imagens por"
119
 
@@ -199,372 +199,388 @@ msgstr "Publicação"
199
 
200
  # @ gallery
201
  #: gallery-plugin.php:506
202
- #: gallery-plugin.php:888
203
  msgid "Date"
204
  msgstr "Data"
205
 
206
  # @ gallery
207
- #: gallery-plugin.php:632
208
  msgid "See images &raquo;"
209
  msgstr "Ver imagens &raquo;"
210
 
211
- #: gallery-plugin.php:679
212
  msgid "requires"
213
  msgstr ""
214
 
215
- #: gallery-plugin.php:679
216
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
217
  msgstr ""
218
 
219
- #: gallery-plugin.php:679
220
  msgid "Back to the WordPress"
221
  msgstr ""
222
 
223
- #: gallery-plugin.php:679
224
  msgid "Plugins page"
225
  msgstr ""
226
 
227
  # @ gallery
228
- #: gallery-plugin.php:764
229
  msgid "Settings are saved"
230
  msgstr "As configurações estão salvas"
231
 
232
  # @ gallery
233
- #: gallery-plugin.php:777
234
  msgid "Gallery Settings"
235
  msgstr "Configurações da Galeria"
236
 
237
  # @ gallery
238
- #: gallery-plugin.php:780
239
  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:"
240
  msgstr "Se você quiser adicionar uma Galeria específica em sua página ou post, basta copiar e colar este shortcode em seu post ou página:"
241
 
242
  # @ gallery
243
- #: gallery-plugin.php:784
244
  msgid "Image size for the album cover"
245
  msgstr "Tamanho da imagem de capa do álbum"
246
 
247
  # @ gallery
248
- #: gallery-plugin.php:786
249
- #: gallery-plugin.php:794
250
- #: gallery-plugin.php:807
251
  msgid "Image size"
252
  msgstr "Tamanho da imagem"
253
 
254
  # @ gallery
255
- #: gallery-plugin.php:787
256
- #: gallery-plugin.php:795
257
  msgid "Width (in px)"
258
  msgstr "Largura (em px)"
259
 
260
  # @ gallery
261
- #: gallery-plugin.php:788
262
- #: gallery-plugin.php:796
263
  msgid "Height (in px)"
264
  msgstr "Altura (em px)"
265
 
266
  # @ gallery
267
- #: gallery-plugin.php:792
268
  msgid "Gallery image size"
269
  msgstr "Tamanho da imagem da galeria"
270
 
271
  # @ gallery
272
- #: gallery-plugin.php:800
273
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
274
  msgstr "WordPress irá criar uma nova miniatura com os tamanhos especificados quando você enviar uma nova foto."
275
 
276
  # @ gallery
277
- #: gallery-plugin.php:805
278
  msgid "Gallery image size in the lightbox"
279
  msgstr "Tamanho da imagem da galeria no Lightbox"
280
 
281
  # @ gallery
282
- #: gallery-plugin.php:808
283
  msgid "Max width (in px)"
284
  msgstr "Largura máxima (em px)"
285
 
286
  # @ gallery
287
- #: gallery-plugin.php:809
288
  msgid "Max height (in px)"
289
  msgstr "Altura máxima (em px)"
290
 
291
  # @ gallery
292
- #: gallery-plugin.php:810
293
  msgid "Display a full size image in the lightbox"
294
  msgstr "Exibir a imagem em tamanho original no Lightbox"
295
 
296
  # @ gallery
297
- #: gallery-plugin.php:814
298
  msgid "Crop position"
299
  msgstr "Posição de recorte"
300
 
301
  # @ gallery
302
- #: gallery-plugin.php:816
303
  msgid "Horizontal"
304
  msgstr "Horizontal"
305
 
306
  # @ gallery
307
- #: gallery-plugin.php:818
308
  msgid "left"
309
  msgstr "esquerda"
310
 
311
  # @ gallery
312
- #: gallery-plugin.php:819
313
- #: gallery-plugin.php:826
314
  msgid "center"
315
  msgstr "centro"
316
 
317
  # @ gallery
318
- #: gallery-plugin.php:820
319
  msgid "right"
320
  msgstr "direita"
321
 
322
  # @ gallery
323
- #: gallery-plugin.php:823
324
  msgid "Vertical"
325
  msgstr "Vertical"
326
 
327
  # @ gallery
328
- #: gallery-plugin.php:825
329
  msgid "top"
330
  msgstr "topo"
331
 
332
  # @ gallery
333
- #: gallery-plugin.php:827
334
  msgid "bottom"
335
  msgstr "fundo"
336
 
337
  # @ gallery
338
- #: gallery-plugin.php:832
339
  msgid "Lightbox background"
340
  msgstr "Fundo do Lightbox"
341
 
342
  # @ gallery
343
- #: gallery-plugin.php:834
344
  msgid "Default"
345
  msgstr "Padrão"
346
 
347
  # @ gallery
348
- #: gallery-plugin.php:835
349
  msgid "Background transparency (from 0 to 1)"
350
  msgstr "Transparência de background (de 0 a 1)"
351
 
352
  # @ gallery
353
- #: gallery-plugin.php:837
354
  msgid "Select a background color"
355
  msgstr "Selecionar uma cor de fundo"
356
 
357
  # @ gallery
358
- #: gallery-plugin.php:839
359
  msgid "Background color"
360
  msgstr "Cor de fundo"
361
 
362
  # @ gallery
363
- #: gallery-plugin.php:846
364
- #: gallery-plugin.php:985
365
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
366
  msgstr "Esta função está disponível na versão Pro do plugin. Para saber mais detalhes, por favor siga o link"
367
 
368
  # @ gallery
369
- #: gallery-plugin.php:853
370
  msgid "Images with border"
371
  msgstr "Imagens com borda"
372
 
373
  # @ gallery
374
- #: gallery-plugin.php:856
375
  msgid "Border width in px, just numbers"
376
  msgstr "Largura da borda em px, apenas os números"
377
 
378
  # @ gallery
379
- #: gallery-plugin.php:858
380
- #: gallery-plugin.php:860
381
  msgid "Select a border color"
382
  msgstr "Escolha a cor da borda"
383
 
384
  # @ gallery
385
- #: gallery-plugin.php:866
386
  msgid "Number of images in the row"
387
  msgstr "Número de imagens por linha"
388
 
389
  # @ gallery
390
- #: gallery-plugin.php:872
391
  msgid "Start slideshow"
392
  msgstr "Iniciar Apresentação de Slides"
393
 
394
  # @ gallery
395
- #: gallery-plugin.php:878
396
  msgid "Slideshow interval"
397
  msgstr "Intervalo de tempo entre cada Slide"
398
 
 
 
 
 
399
  # @ gallery
400
- #: gallery-plugin.php:886
401
  msgid "Attachment ID"
402
  msgstr "ID do anexo"
403
 
404
  # @ gallery
405
- #: gallery-plugin.php:887
406
  msgid "Image Name"
407
  msgstr "Nome da Imagem"
408
 
409
  # @ gallery
410
- #: gallery-plugin.php:889
411
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
412
  msgstr "Critério de ordenação (o campo de ordenação na caixa de diálogo em Adicionar Mídia)"
413
 
414
  # @ gallery
415
- #: gallery-plugin.php:890
416
  msgid "Random"
417
  msgstr "Aleatório"
418
 
419
  # @ gallery
420
- #: gallery-plugin.php:894
421
  msgid "Sort images"
422
  msgstr "Ordenar imagens:"
423
 
424
  # @ gallery
425
- #: gallery-plugin.php:896
426
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
427
  msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
428
 
429
  # @ gallery
430
- #: gallery-plugin.php:897
431
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
432
  msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
433
 
434
  # @ gallery
435
- #: gallery-plugin.php:901
436
  msgid "Display text above the image"
437
  msgstr "Mostrar texto acima da imagem"
438
 
439
  # @ gallery
440
- #: gallery-plugin.php:903
441
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
442
  msgstr "Desmarque a caixa de seleção, se você deseja mostrar texto apenas numa lightbox"
443
 
444
  # @ gallery
445
- #: gallery-plugin.php:907
446
  msgid "Display the Back link"
447
  msgstr "Exibir o link Voltar"
448
 
449
  # @ gallery
450
- #: gallery-plugin.php:913
451
  msgid "Display the Back link in the shortcode"
452
  msgstr "Exibir o link Voltar no shortcode"
453
 
454
  # @ gallery
455
- #: gallery-plugin.php:919
456
  msgid "The Back link text"
457
  msgstr "Texto do link Voltar"
458
 
459
  # @ gallery
460
- #: gallery-plugin.php:925
461
  msgid "The Back link URL"
462
  msgstr "URL do link Voltar"
463
 
464
  # @ gallery
465
- #: gallery-plugin.php:927
466
  msgid "Gallery page (Page with Gallery Template)"
467
  msgstr "Página da Galeria (página usando o Modelo de Galeria)"
468
 
469
  # @ gallery
470
- #: gallery-plugin.php:929
471
  msgid "(Full URL to custom page)"
472
  msgstr "(URL completa para a página personalizada)"
473
 
474
  # @ gallery
475
- #: gallery-plugin.php:933
476
  msgid "The Read More link text"
477
  msgstr "Texto do link Leia Mais"
478
 
479
- #: gallery-plugin.php:939
480
  msgid "Add gallery to the search"
481
  msgstr ""
482
 
483
- #: gallery-plugin.php:955
484
  #: gallery-plugin.php:958
485
- #: gallery-plugin.php:962
 
486
  msgid "Using Custom Search powered by"
487
  msgstr ""
488
 
489
- #: gallery-plugin.php:958
490
  msgid "Activate Custom Search"
491
  msgstr ""
492
 
493
- #: gallery-plugin.php:962
494
  msgid "Download Custom Search"
495
  msgstr ""
496
 
497
  # @ gallery
498
- #: gallery-plugin.php:969
499
  msgid "Display Like buttons in the lightbox"
500
  msgstr "Exibir botões de Curtir no Lightbox"
501
 
502
  # @ gallery
503
- #: gallery-plugin.php:971
504
  msgid "FaceBook"
505
  msgstr "Facebook"
506
 
507
  # @ gallery
508
- #: gallery-plugin.php:972
509
  msgid "Twitter"
510
  msgstr "Twitter"
511
 
512
  # @ gallery
513
- #: gallery-plugin.php:973
514
  msgid "Pinterest"
515
  msgstr "Pinterest"
516
 
517
  # @ gallery
518
- #: gallery-plugin.php:974
519
  msgid "Google +1"
520
  msgstr "Google +1"
521
 
522
  # @ gallery
523
- #: gallery-plugin.php:978
524
  msgid "Slug for gallery item"
525
  msgstr "Slug para o item da galeria"
526
 
527
  # @ gallery
528
- #: gallery-plugin.php:980
529
  msgid "for any structure of permalinks except the default structure"
530
  msgstr "para qualquer estrutura de links permanentes, exceto a estrutura padrão"
531
 
532
  # @ default
533
- #: gallery-plugin.php:993
534
  msgid "Save Changes"
535
  msgstr "Salvar Alterações"
536
 
537
  # @ bestwebsoft
538
  # @ gallery
539
- #: gallery-plugin.php:1005
540
- #: gallery-plugin.php:1020
541
  msgid "Settings"
542
  msgstr "Configurações"
543
 
544
  # @ gallery
545
- #: gallery-plugin.php:1006
546
  msgid "FAQ"
547
  msgstr "FAQ"
548
 
549
  # @ gallery
550
- #: gallery-plugin.php:1007
551
  msgid "Support"
552
  msgstr "Suporte"
553
 
554
  # @ gallery
555
- #: gallery-plugin.php:1220
556
- #: template/gallery-single-template.php:77
557
  msgid "Sorry, nothing found."
558
  msgstr "Desculpe, nada foi encontrado."
559
 
560
  # @ gallery
561
- #: gallery-plugin.php:1242
562
- #: template/gallery-single-template.php:103
563
  msgid "Download high resolution image"
564
  msgstr "Download de imagem de alta resolução"
565
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  # @ gallery
567
- #: template/gallery-single-template.php:103
568
  msgid "Image"
569
  msgstr "Imagem"
570
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:35+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:35+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
9
  "MIME-Version: 1.0\n"
20
 
21
  # @ gallery
22
  #: gallery-plugin.php:101
23
+ #: gallery-plugin.php:768
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
 
113
 
114
  # @ gallery
115
  #: gallery-plugin.php:229
116
+ #: gallery-plugin.php:887
117
  msgid "Sort images by"
118
  msgstr "Ordenar imagens por"
119
 
199
 
200
  # @ gallery
201
  #: gallery-plugin.php:506
202
+ #: gallery-plugin.php:891
203
  msgid "Date"
204
  msgstr "Data"
205
 
206
  # @ gallery
207
+ #: gallery-plugin.php:630
208
  msgid "See images &raquo;"
209
  msgstr "Ver imagens &raquo;"
210
 
211
+ #: gallery-plugin.php:677
212
  msgid "requires"
213
  msgstr ""
214
 
215
+ #: gallery-plugin.php:677
216
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
217
  msgstr ""
218
 
219
+ #: gallery-plugin.php:677
220
  msgid "Back to the WordPress"
221
  msgstr ""
222
 
223
+ #: gallery-plugin.php:677
224
  msgid "Plugins page"
225
  msgstr ""
226
 
227
  # @ gallery
228
+ #: gallery-plugin.php:761
229
  msgid "Settings are saved"
230
  msgstr "As configurações estão salvas"
231
 
232
  # @ gallery
233
+ #: gallery-plugin.php:774
234
  msgid "Gallery Settings"
235
  msgstr "Configurações da Galeria"
236
 
237
  # @ gallery
238
+ #: gallery-plugin.php:777
239
  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:"
240
  msgstr "Se você quiser adicionar uma Galeria específica em sua página ou post, basta copiar e colar este shortcode em seu post ou página:"
241
 
242
  # @ gallery
243
+ #: gallery-plugin.php:781
244
  msgid "Image size for the album cover"
245
  msgstr "Tamanho da imagem de capa do álbum"
246
 
247
  # @ gallery
248
+ #: gallery-plugin.php:783
249
+ #: gallery-plugin.php:791
250
+ #: gallery-plugin.php:804
251
  msgid "Image size"
252
  msgstr "Tamanho da imagem"
253
 
254
  # @ gallery
255
+ #: gallery-plugin.php:784
256
+ #: gallery-plugin.php:792
257
  msgid "Width (in px)"
258
  msgstr "Largura (em px)"
259
 
260
  # @ gallery
261
+ #: gallery-plugin.php:785
262
+ #: gallery-plugin.php:793
263
  msgid "Height (in px)"
264
  msgstr "Altura (em px)"
265
 
266
  # @ gallery
267
+ #: gallery-plugin.php:789
268
  msgid "Gallery image size"
269
  msgstr "Tamanho da imagem da galeria"
270
 
271
  # @ gallery
272
+ #: gallery-plugin.php:797
273
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
274
  msgstr "WordPress irá criar uma nova miniatura com os tamanhos especificados quando você enviar uma nova foto."
275
 
276
  # @ gallery
277
+ #: gallery-plugin.php:802
278
  msgid "Gallery image size in the lightbox"
279
  msgstr "Tamanho da imagem da galeria no Lightbox"
280
 
281
  # @ gallery
282
+ #: gallery-plugin.php:805
283
  msgid "Max width (in px)"
284
  msgstr "Largura máxima (em px)"
285
 
286
  # @ gallery
287
+ #: gallery-plugin.php:806
288
  msgid "Max height (in px)"
289
  msgstr "Altura máxima (em px)"
290
 
291
  # @ gallery
292
+ #: gallery-plugin.php:807
293
  msgid "Display a full size image in the lightbox"
294
  msgstr "Exibir a imagem em tamanho original no Lightbox"
295
 
296
  # @ gallery
297
+ #: gallery-plugin.php:811
298
  msgid "Crop position"
299
  msgstr "Posição de recorte"
300
 
301
  # @ gallery
302
+ #: gallery-plugin.php:813
303
  msgid "Horizontal"
304
  msgstr "Horizontal"
305
 
306
  # @ gallery
307
+ #: gallery-plugin.php:815
308
  msgid "left"
309
  msgstr "esquerda"
310
 
311
  # @ gallery
312
+ #: gallery-plugin.php:816
313
+ #: gallery-plugin.php:823
314
  msgid "center"
315
  msgstr "centro"
316
 
317
  # @ gallery
318
+ #: gallery-plugin.php:817
319
  msgid "right"
320
  msgstr "direita"
321
 
322
  # @ gallery
323
+ #: gallery-plugin.php:820
324
  msgid "Vertical"
325
  msgstr "Vertical"
326
 
327
  # @ gallery
328
+ #: gallery-plugin.php:822
329
  msgid "top"
330
  msgstr "topo"
331
 
332
  # @ gallery
333
+ #: gallery-plugin.php:824
334
  msgid "bottom"
335
  msgstr "fundo"
336
 
337
  # @ gallery
338
+ #: gallery-plugin.php:829
339
  msgid "Lightbox background"
340
  msgstr "Fundo do Lightbox"
341
 
342
  # @ gallery
343
+ #: gallery-plugin.php:831
344
  msgid "Default"
345
  msgstr "Padrão"
346
 
347
  # @ gallery
348
+ #: gallery-plugin.php:832
349
  msgid "Background transparency (from 0 to 1)"
350
  msgstr "Transparência de background (de 0 a 1)"
351
 
352
  # @ gallery
353
+ #: gallery-plugin.php:834
354
  msgid "Select a background color"
355
  msgstr "Selecionar uma cor de fundo"
356
 
357
  # @ gallery
358
+ #: gallery-plugin.php:836
359
  msgid "Background color"
360
  msgstr "Cor de fundo"
361
 
362
  # @ gallery
363
+ #: gallery-plugin.php:843
364
+ #: gallery-plugin.php:988
365
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
366
  msgstr "Esta função está disponível na versão Pro do plugin. Para saber mais detalhes, por favor siga o link"
367
 
368
  # @ gallery
369
+ #: gallery-plugin.php:850
370
  msgid "Images with border"
371
  msgstr "Imagens com borda"
372
 
373
  # @ gallery
374
+ #: gallery-plugin.php:853
375
  msgid "Border width in px, just numbers"
376
  msgstr "Largura da borda em px, apenas os números"
377
 
378
  # @ gallery
379
+ #: gallery-plugin.php:855
380
+ #: gallery-plugin.php:857
381
  msgid "Select a border color"
382
  msgstr "Escolha a cor da borda"
383
 
384
  # @ gallery
385
+ #: gallery-plugin.php:863
386
  msgid "Number of images in the row"
387
  msgstr "Número de imagens por linha"
388
 
389
  # @ gallery
390
+ #: gallery-plugin.php:869
391
  msgid "Start slideshow"
392
  msgstr "Iniciar Apresentação de Slides"
393
 
394
  # @ gallery
395
+ #: gallery-plugin.php:875
396
  msgid "Slideshow interval"
397
  msgstr "Intervalo de tempo entre cada Slide"
398
 
399
+ #: gallery-plugin.php:881
400
+ msgid "Use single lightbox for multiple galleries on one page"
401
+ msgstr ""
402
+
403
  # @ gallery
404
+ #: gallery-plugin.php:889
405
  msgid "Attachment ID"
406
  msgstr "ID do anexo"
407
 
408
  # @ gallery
409
+ #: gallery-plugin.php:890
410
  msgid "Image Name"
411
  msgstr "Nome da Imagem"
412
 
413
  # @ gallery
414
+ #: gallery-plugin.php:892
415
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
416
  msgstr "Critério de ordenação (o campo de ordenação na caixa de diálogo em Adicionar Mídia)"
417
 
418
  # @ gallery
419
+ #: gallery-plugin.php:893
420
  msgid "Random"
421
  msgstr "Aleatório"
422
 
423
  # @ gallery
424
+ #: gallery-plugin.php:897
425
  msgid "Sort images"
426
  msgstr "Ordenar imagens:"
427
 
428
  # @ gallery
429
+ #: gallery-plugin.php:899
430
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
431
  msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
432
 
433
  # @ gallery
434
+ #: gallery-plugin.php:900
435
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
436
  msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
437
 
438
  # @ gallery
439
+ #: gallery-plugin.php:904
440
  msgid "Display text above the image"
441
  msgstr "Mostrar texto acima da imagem"
442
 
443
  # @ gallery
444
+ #: gallery-plugin.php:906
445
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
446
  msgstr "Desmarque a caixa de seleção, se você deseja mostrar texto apenas numa lightbox"
447
 
448
  # @ gallery
449
+ #: gallery-plugin.php:910
450
  msgid "Display the Back link"
451
  msgstr "Exibir o link Voltar"
452
 
453
  # @ gallery
454
+ #: gallery-plugin.php:916
455
  msgid "Display the Back link in the shortcode"
456
  msgstr "Exibir o link Voltar no shortcode"
457
 
458
  # @ gallery
459
+ #: gallery-plugin.php:922
460
  msgid "The Back link text"
461
  msgstr "Texto do link Voltar"
462
 
463
  # @ gallery
464
+ #: gallery-plugin.php:928
465
  msgid "The Back link URL"
466
  msgstr "URL do link Voltar"
467
 
468
  # @ gallery
469
+ #: gallery-plugin.php:930
470
  msgid "Gallery page (Page with Gallery Template)"
471
  msgstr "Página da Galeria (página usando o Modelo de Galeria)"
472
 
473
  # @ gallery
474
+ #: gallery-plugin.php:932
475
  msgid "(Full URL to custom page)"
476
  msgstr "(URL completa para a página personalizada)"
477
 
478
  # @ gallery
479
+ #: gallery-plugin.php:936
480
  msgid "The Read More link text"
481
  msgstr "Texto do link Leia Mais"
482
 
483
+ #: gallery-plugin.php:942
484
  msgid "Add gallery to the search"
485
  msgstr ""
486
 
 
487
  #: gallery-plugin.php:958
488
+ #: gallery-plugin.php:961
489
+ #: gallery-plugin.php:965
490
  msgid "Using Custom Search powered by"
491
  msgstr ""
492
 
493
+ #: gallery-plugin.php:961
494
  msgid "Activate Custom Search"
495
  msgstr ""
496
 
497
+ #: gallery-plugin.php:965
498
  msgid "Download Custom Search"
499
  msgstr ""
500
 
501
  # @ gallery
502
+ #: gallery-plugin.php:972
503
  msgid "Display Like buttons in the lightbox"
504
  msgstr "Exibir botões de Curtir no Lightbox"
505
 
506
  # @ gallery
507
+ #: gallery-plugin.php:974
508
  msgid "FaceBook"
509
  msgstr "Facebook"
510
 
511
  # @ gallery
512
+ #: gallery-plugin.php:975
513
  msgid "Twitter"
514
  msgstr "Twitter"
515
 
516
  # @ gallery
517
+ #: gallery-plugin.php:976
518
  msgid "Pinterest"
519
  msgstr "Pinterest"
520
 
521
  # @ gallery
522
+ #: gallery-plugin.php:977
523
  msgid "Google +1"
524
  msgstr "Google +1"
525
 
526
  # @ gallery
527
+ #: gallery-plugin.php:981
528
  msgid "Slug for gallery item"
529
  msgstr "Slug para o item da galeria"
530
 
531
  # @ gallery
532
+ #: gallery-plugin.php:983
533
  msgid "for any structure of permalinks except the default structure"
534
  msgstr "para qualquer estrutura de links permanentes, exceto a estrutura padrão"
535
 
536
  # @ default
537
+ #: gallery-plugin.php:996
538
  msgid "Save Changes"
539
  msgstr "Salvar Alterações"
540
 
541
  # @ bestwebsoft
542
  # @ gallery
543
+ #: gallery-plugin.php:1008
544
+ #: gallery-plugin.php:1023
545
  msgid "Settings"
546
  msgstr "Configurações"
547
 
548
  # @ gallery
549
+ #: gallery-plugin.php:1009
550
  msgid "FAQ"
551
  msgstr "FAQ"
552
 
553
  # @ gallery
554
+ #: gallery-plugin.php:1010
555
  msgid "Support"
556
  msgstr "Suporte"
557
 
558
  # @ gallery
559
+ #: gallery-plugin.php:1222
560
+ #: template/gallery-single-template.php:76
561
  msgid "Sorry, nothing found."
562
  msgstr "Desculpe, nada foi encontrado."
563
 
564
  # @ gallery
565
+ #: gallery-plugin.php:1244
566
+ #: template/gallery-single-template.php:102
567
  msgid "Download high resolution image"
568
  msgstr "Download de imagem de alta resolução"
569
 
570
+ #: gallery-plugin.php:1464
571
+ msgid "Learn More"
572
+ msgstr ""
573
+
574
+ #: gallery-plugin.php:1466
575
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
576
+ msgstr ""
577
+
578
+ #: gallery-plugin.php:1467
579
+ msgid "Extend standard plugin functionality with new great options."
580
+ msgstr ""
581
+
582
  # @ gallery
583
+ #: template/gallery-single-template.php:102
584
  msgid "Image"
585
  msgstr "Imagem"
586
 
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:28+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:29+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@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:101
20
- #: gallery-plugin.php:771
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
 
@@ -92,7 +92,7 @@ msgid "Please make a choice"
92
  msgstr "Пожалуйста, выберите"
93
 
94
  #: gallery-plugin.php:229
95
- #: gallery-plugin.php:884
96
  msgid "Sort images by"
97
  msgstr "Изображения сортируются по"
98
 
@@ -162,307 +162,323 @@ msgid "Publishing"
162
  msgstr "Опубликование"
163
 
164
  #: gallery-plugin.php:506
165
- #: gallery-plugin.php:888
166
  msgid "Date"
167
  msgstr "Дата"
168
 
169
- #: gallery-plugin.php:632
170
  msgid "See images &raquo;"
171
  msgstr "Смотреть фотографии &raquo;"
172
 
173
- #: gallery-plugin.php:679
174
  msgid "requires"
175
  msgstr "требует"
176
 
177
- #: gallery-plugin.php:679
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr "или выше, поэтому плагин был деактивирован! Пожалуйста обновите WordPress и попробуйте снова."
180
 
181
- #: gallery-plugin.php:679
182
  msgid "Back to the WordPress"
183
  msgstr "Вернуться на WordPress"
184
 
185
- #: gallery-plugin.php:679
186
  msgid "Plugins page"
187
  msgstr "страницу плагинов"
188
 
189
- #: gallery-plugin.php:764
190
  msgid "Settings are saved"
191
  msgstr "Опции сохранены"
192
 
193
- #: gallery-plugin.php:777
194
  msgid "Gallery Settings"
195
  msgstr "Настройки Галереи"
196
 
197
- #: gallery-plugin.php:780
198
  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:"
199
  msgstr "Если вы хотели бы добавить Галерею на вашу страницу или пост, просто скопируйте и поместите этот шорткод в контент поста или страницы:"
200
 
201
- #: gallery-plugin.php:784
202
  msgid "Image size for the album cover"
203
  msgstr "Размер изображения для обложки альбома галереи"
204
 
205
- #: gallery-plugin.php:786
206
- #: gallery-plugin.php:794
207
- #: gallery-plugin.php:807
208
  msgid "Image size"
209
  msgstr "Название размера изображения"
210
 
211
- #: gallery-plugin.php:787
212
- #: gallery-plugin.php:795
213
  msgid "Width (in px)"
214
  msgstr "Ширина (в px)"
215
 
216
- #: gallery-plugin.php:788
217
- #: gallery-plugin.php:796
218
  msgid "Height (in px)"
219
  msgstr "Высота (в px)"
220
 
221
- #: gallery-plugin.php:792
222
  msgid "Gallery image size"
223
  msgstr "Размер изображений Галереи"
224
 
225
- #: gallery-plugin.php:800
226
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
227
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
228
 
229
- #: gallery-plugin.php:805
230
  msgid "Gallery image size in the lightbox"
231
  msgstr "Размер изображений Галереи в лайтбоксе"
232
 
233
- #: gallery-plugin.php:808
234
  msgid "Max width (in px)"
235
  msgstr "Макс. ширина (в px)"
236
 
237
- #: gallery-plugin.php:809
238
  msgid "Max height (in px)"
239
  msgstr "Макс. высота (в px)"
240
 
241
- #: gallery-plugin.php:810
242
  msgid "Display a full size image in the lightbox"
243
  msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
244
 
245
- #: gallery-plugin.php:814
246
  msgid "Crop position"
247
  msgstr "Позиция обрезки"
248
 
249
- #: gallery-plugin.php:816
250
  msgid "Horizontal"
251
  msgstr "Горизонтальная"
252
 
253
- #: gallery-plugin.php:818
254
  msgid "left"
255
  msgstr "лево"
256
 
257
- #: gallery-plugin.php:819
258
- #: gallery-plugin.php:826
259
  msgid "center"
260
  msgstr "центр"
261
 
262
- #: gallery-plugin.php:820
263
  msgid "right"
264
  msgstr "право"
265
 
266
- #: gallery-plugin.php:823
267
  msgid "Vertical"
268
  msgstr "Вертикальная"
269
 
270
- #: gallery-plugin.php:825
271
  msgid "top"
272
  msgstr "верх"
273
 
274
- #: gallery-plugin.php:827
275
  msgid "bottom"
276
  msgstr "низ"
277
 
278
- #: gallery-plugin.php:832
279
  msgid "Lightbox background"
280
  msgstr "Фон лайтбокса"
281
 
282
- #: gallery-plugin.php:834
283
  msgid "Default"
284
  msgstr "По-умолчанию"
285
 
286
- #: gallery-plugin.php:835
287
  msgid "Background transparency (from 0 to 1)"
288
  msgstr "Прозрачность для фона (от 0 до 1)"
289
 
290
- #: gallery-plugin.php:837
291
  msgid "Select a background color"
292
  msgstr "Выберите цвет фона"
293
 
294
- #: gallery-plugin.php:839
295
  msgid "Background color"
296
  msgstr "Цвет фона"
297
 
298
- #: gallery-plugin.php:846
299
- #: gallery-plugin.php:985
300
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
301
  msgstr "Этот функционал доступен в Pro версии плагина. Для детального ознакомления, перейдите по ссылке"
302
 
303
- #: gallery-plugin.php:853
304
  msgid "Images with border"
305
  msgstr "Изображения с рамкой"
306
 
307
- #: gallery-plugin.php:856
308
  msgid "Border width in px, just numbers"
309
  msgstr "Ширина рамки в px, только числа"
310
 
311
- #: gallery-plugin.php:858
312
- #: gallery-plugin.php:860
313
  msgid "Select a border color"
314
  msgstr "Выберите цвет рамки"
315
 
316
- #: gallery-plugin.php:866
317
  msgid "Number of images in the row"
318
  msgstr "Количество изображений в строке"
319
 
320
- #: gallery-plugin.php:872
321
  msgid "Start slideshow"
322
  msgstr "Начать слайдшоу"
323
 
324
- #: gallery-plugin.php:878
325
  msgid "Slideshow interval"
326
  msgstr "Интервал времени при показе слайдшоу"
327
 
328
- #: gallery-plugin.php:886
 
 
 
 
329
  msgid "Attachment ID"
330
  msgstr "id изображения"
331
 
332
- #: gallery-plugin.php:887
333
  msgid "Image Name"
334
  msgstr "названию изображения"
335
 
336
- #: gallery-plugin.php:889
337
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
338
  msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
339
 
340
- #: gallery-plugin.php:890
341
  msgid "Random"
342
  msgstr "произвольно"
343
 
344
- #: gallery-plugin.php:894
345
  msgid "Sort images"
346
  msgstr "Сортировать изображения"
347
 
348
- #: gallery-plugin.php:896
349
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
350
  msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
351
 
352
- #: gallery-plugin.php:897
353
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
354
  msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
355
 
356
- #: gallery-plugin.php:901
357
  msgid "Display text above the image"
358
  msgstr "Отображение текста над изображением"
359
 
360
- #: gallery-plugin.php:903
361
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
362
  msgstr "Отключите чекбокс, если вы хотите отображать текст только в лайтбоксе"
363
 
364
- #: gallery-plugin.php:907
365
  msgid "Display the Back link"
366
  msgstr "Отображать ссылку Вернуться"
367
 
368
- #: gallery-plugin.php:913
369
  msgid "Display the Back link in the shortcode"
370
  msgstr "Отображаться ссылку Вернуться в шорткоде"
371
 
372
- #: gallery-plugin.php:919
373
  msgid "The Back link text"
374
  msgstr "Текст для ссылки Вернуться"
375
 
376
- #: gallery-plugin.php:925
377
  msgid "The Back link URL"
378
  msgstr "URL для ссылки Вернуться"
379
 
380
- #: gallery-plugin.php:927
381
  msgid "Gallery page (Page with Gallery Template)"
382
  msgstr "Страница галереи (Страница с Gallery Template)"
383
 
384
- #: gallery-plugin.php:929
385
  msgid "(Full URL to custom page)"
386
  msgstr "(Полная ссылка на пользовательскую страницу)"
387
 
388
- #: gallery-plugin.php:933
389
  msgid "The Read More link text"
390
  msgstr "Текст для ссылки Вернуться"
391
 
392
- #: gallery-plugin.php:939
393
  msgid "Add gallery to the search"
394
  msgstr "Добавить галерею в поиск"
395
 
396
- #: gallery-plugin.php:955
397
  #: gallery-plugin.php:958
398
- #: gallery-plugin.php:962
 
399
  msgid "Using Custom Search powered by"
400
  msgstr "Используя Custom Search, разработанный"
401
 
402
- #: gallery-plugin.php:958
403
  msgid "Activate Custom Search"
404
  msgstr "Активировать Custom Search"
405
 
406
- #: gallery-plugin.php:962
407
  msgid "Download Custom Search"
408
  msgstr "Загрузить Custom Search"
409
 
410
- #: gallery-plugin.php:969
411
  msgid "Display Like buttons in the lightbox"
412
  msgstr "Отображать Like кнопки в лайтбоксе"
413
 
414
- #: gallery-plugin.php:971
415
  msgid "FaceBook"
416
  msgstr "FaceBook"
417
 
418
- #: gallery-plugin.php:972
419
  msgid "Twitter"
420
  msgstr "Twitter"
421
 
422
- #: gallery-plugin.php:973
423
  msgid "Pinterest"
424
  msgstr "Pinterest"
425
 
426
- #: gallery-plugin.php:974
427
  msgid "Google +1"
428
  msgstr "Google +1"
429
 
430
- #: gallery-plugin.php:978
431
  msgid "Slug for gallery item"
432
  msgstr "Название для элементов галереи"
433
 
434
- #: gallery-plugin.php:980
435
  msgid "for any structure of permalinks except the default structure"
436
  msgstr "для любой структуры ссылок, за исключением структуры по умолчанию"
437
 
438
- #: gallery-plugin.php:993
439
  msgid "Save Changes"
440
  msgstr "Сохранить изменения"
441
 
442
- #: gallery-plugin.php:1005
443
- #: gallery-plugin.php:1020
444
  msgid "Settings"
445
  msgstr "Настройки"
446
 
447
- #: gallery-plugin.php:1006
448
  msgid "FAQ"
449
  msgstr "FAQ"
450
 
451
- #: gallery-plugin.php:1007
452
  msgid "Support"
453
  msgstr "Поддержка"
454
 
455
- #: gallery-plugin.php:1220
456
- #: template/gallery-single-template.php:77
457
  msgid "Sorry, nothing found."
458
  msgstr "Извините, ничего не найдено."
459
 
460
- #: gallery-plugin.php:1242
461
- #: template/gallery-single-template.php:103
462
  msgid "Download high resolution image"
463
  msgstr "Скачать изображение в высоком разрешении"
464
 
465
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
466
  msgid "Image"
467
  msgstr "Изображение"
468
 
@@ -532,8 +548,6 @@ msgstr "Изображение"
532
  #~ msgstr "Извините, ваш email не может быть отправлен."
533
  #~ msgid "Activated plugins"
534
  #~ msgstr "Активированные плагины"
535
- #~ msgid "Read more"
536
- #~ msgstr "Подробнее..."
537
  #~ msgid "Installed plugins"
538
  #~ msgstr "Установленные плагины"
539
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:35+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:37+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:101
20
+ #: gallery-plugin.php:768
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
 
92
  msgstr "Пожалуйста, выберите"
93
 
94
  #: gallery-plugin.php:229
95
+ #: gallery-plugin.php:887
96
  msgid "Sort images by"
97
  msgstr "Изображения сортируются по"
98
 
162
  msgstr "Опубликование"
163
 
164
  #: gallery-plugin.php:506
165
+ #: gallery-plugin.php:891
166
  msgid "Date"
167
  msgstr "Дата"
168
 
169
+ #: gallery-plugin.php:630
170
  msgid "See images &raquo;"
171
  msgstr "Смотреть фотографии &raquo;"
172
 
173
+ #: gallery-plugin.php:677
174
  msgid "requires"
175
  msgstr "требует"
176
 
177
+ #: gallery-plugin.php:677
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr "или выше, поэтому плагин был деактивирован! Пожалуйста обновите WordPress и попробуйте снова."
180
 
181
+ #: gallery-plugin.php:677
182
  msgid "Back to the WordPress"
183
  msgstr "Вернуться на WordPress"
184
 
185
+ #: gallery-plugin.php:677
186
  msgid "Plugins page"
187
  msgstr "страницу плагинов"
188
 
189
+ #: gallery-plugin.php:761
190
  msgid "Settings are saved"
191
  msgstr "Опции сохранены"
192
 
193
+ #: gallery-plugin.php:774
194
  msgid "Gallery Settings"
195
  msgstr "Настройки Галереи"
196
 
197
+ #: gallery-plugin.php:777
198
  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:"
199
  msgstr "Если вы хотели бы добавить Галерею на вашу страницу или пост, просто скопируйте и поместите этот шорткод в контент поста или страницы:"
200
 
201
+ #: gallery-plugin.php:781
202
  msgid "Image size for the album cover"
203
  msgstr "Размер изображения для обложки альбома галереи"
204
 
205
+ #: gallery-plugin.php:783
206
+ #: gallery-plugin.php:791
207
+ #: gallery-plugin.php:804
208
  msgid "Image size"
209
  msgstr "Название размера изображения"
210
 
211
+ #: gallery-plugin.php:784
212
+ #: gallery-plugin.php:792
213
  msgid "Width (in px)"
214
  msgstr "Ширина (в px)"
215
 
216
+ #: gallery-plugin.php:785
217
+ #: gallery-plugin.php:793
218
  msgid "Height (in px)"
219
  msgstr "Высота (в px)"
220
 
221
+ #: gallery-plugin.php:789
222
  msgid "Gallery image size"
223
  msgstr "Размер изображений Галереи"
224
 
225
+ #: gallery-plugin.php:797
226
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
227
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
228
 
229
+ #: gallery-plugin.php:802
230
  msgid "Gallery image size in the lightbox"
231
  msgstr "Размер изображений Галереи в лайтбоксе"
232
 
233
+ #: gallery-plugin.php:805
234
  msgid "Max width (in px)"
235
  msgstr "Макс. ширина (в px)"
236
 
237
+ #: gallery-plugin.php:806
238
  msgid "Max height (in px)"
239
  msgstr "Макс. высота (в px)"
240
 
241
+ #: gallery-plugin.php:807
242
  msgid "Display a full size image in the lightbox"
243
  msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
244
 
245
+ #: gallery-plugin.php:811
246
  msgid "Crop position"
247
  msgstr "Позиция обрезки"
248
 
249
+ #: gallery-plugin.php:813
250
  msgid "Horizontal"
251
  msgstr "Горизонтальная"
252
 
253
+ #: gallery-plugin.php:815
254
  msgid "left"
255
  msgstr "лево"
256
 
257
+ #: gallery-plugin.php:816
258
+ #: gallery-plugin.php:823
259
  msgid "center"
260
  msgstr "центр"
261
 
262
+ #: gallery-plugin.php:817
263
  msgid "right"
264
  msgstr "право"
265
 
266
+ #: gallery-plugin.php:820
267
  msgid "Vertical"
268
  msgstr "Вертикальная"
269
 
270
+ #: gallery-plugin.php:822
271
  msgid "top"
272
  msgstr "верх"
273
 
274
+ #: gallery-plugin.php:824
275
  msgid "bottom"
276
  msgstr "низ"
277
 
278
+ #: gallery-plugin.php:829
279
  msgid "Lightbox background"
280
  msgstr "Фон лайтбокса"
281
 
282
+ #: gallery-plugin.php:831
283
  msgid "Default"
284
  msgstr "По-умолчанию"
285
 
286
+ #: gallery-plugin.php:832
287
  msgid "Background transparency (from 0 to 1)"
288
  msgstr "Прозрачность для фона (от 0 до 1)"
289
 
290
+ #: gallery-plugin.php:834
291
  msgid "Select a background color"
292
  msgstr "Выберите цвет фона"
293
 
294
+ #: gallery-plugin.php:836
295
  msgid "Background color"
296
  msgstr "Цвет фона"
297
 
298
+ #: gallery-plugin.php:843
299
+ #: gallery-plugin.php:988
300
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
301
  msgstr "Этот функционал доступен в Pro версии плагина. Для детального ознакомления, перейдите по ссылке"
302
 
303
+ #: gallery-plugin.php:850
304
  msgid "Images with border"
305
  msgstr "Изображения с рамкой"
306
 
307
+ #: gallery-plugin.php:853
308
  msgid "Border width in px, just numbers"
309
  msgstr "Ширина рамки в px, только числа"
310
 
311
+ #: gallery-plugin.php:855
312
+ #: gallery-plugin.php:857
313
  msgid "Select a border color"
314
  msgstr "Выберите цвет рамки"
315
 
316
+ #: gallery-plugin.php:863
317
  msgid "Number of images in the row"
318
  msgstr "Количество изображений в строке"
319
 
320
+ #: gallery-plugin.php:869
321
  msgid "Start slideshow"
322
  msgstr "Начать слайдшоу"
323
 
324
+ #: gallery-plugin.php:875
325
  msgid "Slideshow interval"
326
  msgstr "Интервал времени при показе слайдшоу"
327
 
328
+ #: gallery-plugin.php:881
329
+ msgid "Use single lightbox for multiple galleries on one page"
330
+ msgstr "Использовать один лайтбокс для нескольких галерей на одной странице"
331
+
332
+ #: gallery-plugin.php:889
333
  msgid "Attachment ID"
334
  msgstr "id изображения"
335
 
336
+ #: gallery-plugin.php:890
337
  msgid "Image Name"
338
  msgstr "названию изображения"
339
 
340
+ #: gallery-plugin.php:892
341
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
342
  msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
343
 
344
+ #: gallery-plugin.php:893
345
  msgid "Random"
346
  msgstr "произвольно"
347
 
348
+ #: gallery-plugin.php:897
349
  msgid "Sort images"
350
  msgstr "Сортировать изображения"
351
 
352
+ #: gallery-plugin.php:899
353
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
354
  msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
355
 
356
+ #: gallery-plugin.php:900
357
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
358
  msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
359
 
360
+ #: gallery-plugin.php:904
361
  msgid "Display text above the image"
362
  msgstr "Отображение текста над изображением"
363
 
364
+ #: gallery-plugin.php:906
365
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
366
  msgstr "Отключите чекбокс, если вы хотите отображать текст только в лайтбоксе"
367
 
368
+ #: gallery-plugin.php:910
369
  msgid "Display the Back link"
370
  msgstr "Отображать ссылку Вернуться"
371
 
372
+ #: gallery-plugin.php:916
373
  msgid "Display the Back link in the shortcode"
374
  msgstr "Отображаться ссылку Вернуться в шорткоде"
375
 
376
+ #: gallery-plugin.php:922
377
  msgid "The Back link text"
378
  msgstr "Текст для ссылки Вернуться"
379
 
380
+ #: gallery-plugin.php:928
381
  msgid "The Back link URL"
382
  msgstr "URL для ссылки Вернуться"
383
 
384
+ #: gallery-plugin.php:930
385
  msgid "Gallery page (Page with Gallery Template)"
386
  msgstr "Страница галереи (Страница с Gallery Template)"
387
 
388
+ #: gallery-plugin.php:932
389
  msgid "(Full URL to custom page)"
390
  msgstr "(Полная ссылка на пользовательскую страницу)"
391
 
392
+ #: gallery-plugin.php:936
393
  msgid "The Read More link text"
394
  msgstr "Текст для ссылки Вернуться"
395
 
396
+ #: gallery-plugin.php:942
397
  msgid "Add gallery to the search"
398
  msgstr "Добавить галерею в поиск"
399
 
 
400
  #: gallery-plugin.php:958
401
+ #: gallery-plugin.php:961
402
+ #: gallery-plugin.php:965
403
  msgid "Using Custom Search powered by"
404
  msgstr "Используя Custom Search, разработанный"
405
 
406
+ #: gallery-plugin.php:961
407
  msgid "Activate Custom Search"
408
  msgstr "Активировать Custom Search"
409
 
410
+ #: gallery-plugin.php:965
411
  msgid "Download Custom Search"
412
  msgstr "Загрузить Custom Search"
413
 
414
+ #: gallery-plugin.php:972
415
  msgid "Display Like buttons in the lightbox"
416
  msgstr "Отображать Like кнопки в лайтбоксе"
417
 
418
+ #: gallery-plugin.php:974
419
  msgid "FaceBook"
420
  msgstr "FaceBook"
421
 
422
+ #: gallery-plugin.php:975
423
  msgid "Twitter"
424
  msgstr "Twitter"
425
 
426
+ #: gallery-plugin.php:976
427
  msgid "Pinterest"
428
  msgstr "Pinterest"
429
 
430
+ #: gallery-plugin.php:977
431
  msgid "Google +1"
432
  msgstr "Google +1"
433
 
434
+ #: gallery-plugin.php:981
435
  msgid "Slug for gallery item"
436
  msgstr "Название для элементов галереи"
437
 
438
+ #: gallery-plugin.php:983
439
  msgid "for any structure of permalinks except the default structure"
440
  msgstr "для любой структуры ссылок, за исключением структуры по умолчанию"
441
 
442
+ #: gallery-plugin.php:996
443
  msgid "Save Changes"
444
  msgstr "Сохранить изменения"
445
 
446
+ #: gallery-plugin.php:1008
447
+ #: gallery-plugin.php:1023
448
  msgid "Settings"
449
  msgstr "Настройки"
450
 
451
+ #: gallery-plugin.php:1009
452
  msgid "FAQ"
453
  msgstr "FAQ"
454
 
455
+ #: gallery-plugin.php:1010
456
  msgid "Support"
457
  msgstr "Поддержка"
458
 
459
+ #: gallery-plugin.php:1222
460
+ #: template/gallery-single-template.php:76
461
  msgid "Sorry, nothing found."
462
  msgstr "Извините, ничего не найдено."
463
 
464
+ #: gallery-plugin.php:1244
465
+ #: template/gallery-single-template.php:102
466
  msgid "Download high resolution image"
467
  msgstr "Скачать изображение в высоком разрешении"
468
 
469
+ #: gallery-plugin.php:1464
470
+ msgid "Learn More"
471
+ msgstr "Подробнее"
472
+
473
+ #: gallery-plugin.php:1466
474
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
475
+ msgstr "Пора обновить <strong>плагин Галерея</strong> до <strong>PRO</strong> версии!"
476
+
477
+ #: gallery-plugin.php:1467
478
+ msgid "Extend standard plugin functionality with new great options."
479
+ msgstr "Расширить стандартный функционал плагина новыми опциями."
480
+
481
+ #: template/gallery-single-template.php:102
482
  msgid "Image"
483
  msgstr "Изображение"
484
 
548
  #~ msgstr "Извините, ваш email не может быть отправлен."
549
  #~ msgid "Activated plugins"
550
  #~ msgstr "Активированные плагины"
 
 
551
  #~ msgid "Installed plugins"
552
  #~ msgstr "Установленные плагины"
553
  #~ msgid "Recommended plugins"
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-11-01 13:29+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:30+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www.georgijevic.info, andrijanan@webhostinggeeks.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:101
21
- #: gallery-plugin.php:771
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 "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" nisu pronađeni u direktorijumu vaše teme. Molimo vas da ih kopirate iz direktorijuma `/wp-content/plugins/gallery-plugin/template/` u direktorijum vaše teme za ispravan rad modula Galerija"
24
 
@@ -93,7 +93,7 @@ msgid "Please make a choice"
93
  msgstr "Molimo vas izaberite"
94
 
95
  #: gallery-plugin.php:229
96
- #: gallery-plugin.php:884
97
  msgid "Sort images by"
98
  msgstr "Poređaj slike po"
99
 
@@ -163,312 +163,329 @@ msgid "Publishing"
163
  msgstr "Izdanje"
164
 
165
  #: gallery-plugin.php:506
166
- #: gallery-plugin.php:888
167
  msgid "Date"
168
  msgstr "Datum"
169
 
170
- #: gallery-plugin.php:632
171
  msgid "See images &raquo;"
172
  msgstr "Pogledaj sliku &raquo;"
173
 
174
- #: gallery-plugin.php:679
175
  msgid "requires"
176
  msgstr ""
177
 
178
- #: gallery-plugin.php:679
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr ""
181
 
182
- #: gallery-plugin.php:679
183
  msgid "Back to the WordPress"
184
  msgstr ""
185
 
186
- #: gallery-plugin.php:679
187
  #, fuzzy
188
  msgid "Plugins page"
189
  msgstr "Pro moduli"
190
 
191
- #: gallery-plugin.php:764
192
  msgid "Settings are saved"
193
  msgstr "Podešavanja su sačuvana"
194
 
195
- #: gallery-plugin.php:777
196
  msgid "Gallery Settings"
197
  msgstr "Podešavanja Galerije"
198
 
199
- #: gallery-plugin.php:780
200
  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:"
201
  msgstr "Ako želite da dodate Jedinstvenu Galeriju na vašu stranicu ili post, samo kopirajte i prelepite ovaj kratki kod na vaš post ili stranicu:"
202
 
203
- #: gallery-plugin.php:784
204
  msgid "Image size for the album cover"
205
  msgstr "Veličina slike za naslovnu stranicu albuma"
206
 
207
- #: gallery-plugin.php:786
208
- #: gallery-plugin.php:794
209
- #: gallery-plugin.php:807
210
  msgid "Image size"
211
  msgstr "Veličina slike"
212
 
213
- #: gallery-plugin.php:787
214
- #: gallery-plugin.php:795
215
  msgid "Width (in px)"
216
  msgstr "Širina (u pikselima)"
217
 
218
- #: gallery-plugin.php:788
219
- #: gallery-plugin.php:796
220
  msgid "Height (in px)"
221
  msgstr "Visina (u pikselima)"
222
 
223
- #: gallery-plugin.php:792
224
  msgid "Gallery image size"
225
  msgstr "Veličina slika u galeriji"
226
 
227
- #: gallery-plugin.php:800
228
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
229
  msgstr "WordPress će kreirati novi umanjeni prikaz sa navedenim dimenzijama kada učitate novu sliku."
230
 
231
- #: gallery-plugin.php:805
232
  msgid "Gallery image size in the lightbox"
233
  msgstr "Veličina slika u galeriji u lightbox skriptu"
234
 
235
- #: gallery-plugin.php:808
236
  msgid "Max width (in px)"
237
  msgstr "Max širina (u pikselima)"
238
 
239
- #: gallery-plugin.php:809
240
  msgid "Max height (in px)"
241
  msgstr "Max visina (u pikselima)"
242
 
243
- #: gallery-plugin.php:810
244
  msgid "Display a full size image in the lightbox"
245
  msgstr "Prikaži sliku u punoj veličini u lightbox-u"
246
 
247
- #: gallery-plugin.php:814
248
  msgid "Crop position"
249
  msgstr "Pozicija za kropovanje"
250
 
251
- #: gallery-plugin.php:816
252
  msgid "Horizontal"
253
  msgstr "Horizontalno"
254
 
255
- #: gallery-plugin.php:818
256
  msgid "left"
257
  msgstr "levo"
258
 
259
- #: gallery-plugin.php:819
260
- #: gallery-plugin.php:826
261
  msgid "center"
262
  msgstr "centar"
263
 
264
- #: gallery-plugin.php:820
265
  msgid "right"
266
  msgstr "desno"
267
 
268
- #: gallery-plugin.php:823
269
  msgid "Vertical"
270
  msgstr "Vertikalno"
271
 
272
- #: gallery-plugin.php:825
273
  msgid "top"
274
  msgstr "vrh"
275
 
276
- #: gallery-plugin.php:827
277
  msgid "bottom"
278
  msgstr "dno"
279
 
280
- #: gallery-plugin.php:832
281
  msgid "Lightbox background"
282
  msgstr "Lightbox pozadina"
283
 
284
- #: gallery-plugin.php:834
285
  msgid "Default"
286
  msgstr "Podrazumevano"
287
 
288
- #: gallery-plugin.php:835
289
  msgid "Background transparency (from 0 to 1)"
290
  msgstr "Pozadinska transparentnost (od 0 do 1)"
291
 
292
- #: gallery-plugin.php:837
293
  msgid "Select a background color"
294
  msgstr "Izaberi pozadinsku boju"
295
 
296
- #: gallery-plugin.php:839
297
  msgid "Background color"
298
  msgstr "Pozadinska boja"
299
 
300
- #: gallery-plugin.php:846
301
- #: gallery-plugin.php:985
302
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
303
  msgstr "Ova funkcija je dostupna u Pro verziji modula. Za više detalja pratite ovaj link"
304
 
305
- #: gallery-plugin.php:853
306
  msgid "Images with border"
307
  msgstr "Slike sa okvirima"
308
 
309
- #: gallery-plugin.php:856
310
  msgid "Border width in px, just numbers"
311
  msgstr "Širina okvira u pikselima, samo brojevi"
312
 
313
- #: gallery-plugin.php:858
314
- #: gallery-plugin.php:860
315
  msgid "Select a border color"
316
  msgstr "Izaberite boju okvira"
317
 
318
- #: gallery-plugin.php:866
319
  msgid "Number of images in the row"
320
  msgstr "Broj slika u redu"
321
 
322
- #: gallery-plugin.php:872
323
  msgid "Start slideshow"
324
  msgstr "Započni projekciju slajdova"
325
 
326
- #: gallery-plugin.php:878
327
  msgid "Slideshow interval"
328
  msgstr "Interval projekcije slajdova"
329
 
330
- #: gallery-plugin.php:886
 
 
 
 
331
  msgid "Attachment ID"
332
  msgstr "ID priloga"
333
 
334
- #: gallery-plugin.php:887
335
  msgid "Image Name"
336
  msgstr "Ime slike"
337
 
338
- #: gallery-plugin.php:889
339
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
340
  msgstr "Raspoređivanje (polje za unos za sortiranje u dijalogu Insert / Upload Media Gallery)"
341
 
342
- #: gallery-plugin.php:890
343
  msgid "Random"
344
  msgstr "Nasumično"
345
 
346
- #: gallery-plugin.php:894
347
  msgid "Sort images"
348
  msgstr "Sortiraj slike"
349
 
350
- #: gallery-plugin.php:896
351
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
352
  msgstr "ASC (rastući redosled od najnižih do najviših vrednosti - 1, 2, 3; a, b, c)"
353
 
354
- #: gallery-plugin.php:897
355
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
356
  msgstr "DESC (opadajući redosled od najviših do najnižih vrednosti - 3, 2, 1; c, b, a)"
357
 
358
- #: gallery-plugin.php:901
359
  msgid "Display text above the image"
360
  msgstr "Prikaži tekst iznad slike"
361
 
362
- #: gallery-plugin.php:903
363
  #, fuzzy
364
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
365
  msgstr "Ako želite da prikažete tekst samo u lightbox-u"
366
 
367
- #: gallery-plugin.php:907
368
  msgid "Display the Back link"
369
  msgstr "Prikaži povratni link"
370
 
371
- #: gallery-plugin.php:913
372
  msgid "Display the Back link in the shortcode"
373
  msgstr "Prikaži povratni link u kratkom kodu"
374
 
375
- #: gallery-plugin.php:919
376
  msgid "The Back link text"
377
  msgstr "Tekst u povratnom linku"
378
 
379
- #: gallery-plugin.php:925
380
  msgid "The Back link URL"
381
  msgstr "URL povratnog linka"
382
 
383
- #: gallery-plugin.php:927
384
  msgid "Gallery page (Page with Gallery Template)"
385
  msgstr "Stranica galerije (Stranica sa šablonom galerije)"
386
 
387
- #: gallery-plugin.php:929
388
  msgid "(Full URL to custom page)"
389
  msgstr "(Puni URL ka korisničkoj stranici)"
390
 
391
- #: gallery-plugin.php:933
392
  msgid "The Read More link text"
393
  msgstr "Tekst u linku Pročitaj više"
394
 
395
- #: gallery-plugin.php:939
396
  msgid "Add gallery to the search"
397
  msgstr ""
398
 
399
- #: gallery-plugin.php:955
400
  #: gallery-plugin.php:958
401
- #: gallery-plugin.php:962
 
402
  msgid "Using Custom Search powered by"
403
  msgstr ""
404
 
405
- #: gallery-plugin.php:958
406
  msgid "Activate Custom Search"
407
  msgstr ""
408
 
409
- #: gallery-plugin.php:962
410
  msgid "Download Custom Search"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:969
414
  #, fuzzy
415
  msgid "Display Like buttons in the lightbox"
416
  msgstr "Afficher une image en taille normale dans le boite"
417
 
418
- #: gallery-plugin.php:971
419
  msgid "FaceBook"
420
  msgstr "FaceBook"
421
 
422
- #: gallery-plugin.php:972
423
  #, fuzzy
424
  msgid "Twitter"
425
  msgstr "Titre"
426
 
427
- #: gallery-plugin.php:973
428
  msgid "Pinterest"
429
  msgstr "Pinterest"
430
 
431
- #: gallery-plugin.php:974
432
  msgid "Google +1"
433
  msgstr "Google +1"
434
 
435
- #: gallery-plugin.php:978
436
  #, fuzzy
437
  msgid "Slug for gallery item"
438
  msgstr "Taille de la vignette de la galerie"
439
 
440
- #: gallery-plugin.php:980
441
  msgid "for any structure of permalinks except the default structure"
442
  msgstr ""
443
 
444
- #: gallery-plugin.php:993
445
  msgid "Save Changes"
446
  msgstr "Sačuvaj izmene"
447
 
448
- #: gallery-plugin.php:1005
449
- #: gallery-plugin.php:1020
450
  msgid "Settings"
451
  msgstr "Podešavanja"
452
 
453
- #: gallery-plugin.php:1006
454
  msgid "FAQ"
455
  msgstr "FAQ"
456
 
457
- #: gallery-plugin.php:1007
458
  msgid "Support"
459
  msgstr "Podrška"
460
 
461
- #: gallery-plugin.php:1220
462
- #: template/gallery-single-template.php:77
463
  msgid "Sorry, nothing found."
464
  msgstr "Nažalost nije pronađeno"
465
 
466
- #: gallery-plugin.php:1242
467
- #: template/gallery-single-template.php:103
468
  msgid "Download high resolution image"
469
  msgstr "Preuzmi sliku u visokoj rezoluciji"
470
 
471
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  msgid "Image"
473
  msgstr "Slika"
474
 
@@ -542,8 +559,6 @@ msgstr "Slika"
542
  #~ msgstr "Nažalost mejl poruka nije prosleđena"
543
  #~ msgid "Activated plugins"
544
  #~ msgstr "Aktivirani moduli"
545
- #~ msgid "Read more"
546
- #~ msgstr "Pročitaj više"
547
  #~ msgid "Installed plugins"
548
  #~ msgstr "Instalirani moduli"
549
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:37+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:38+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www.georgijevic.info, andrijanan@webhostinggeeks.com>\n"
9
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:101
21
+ #: gallery-plugin.php:768
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 "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" nisu pronađeni u direktorijumu vaše teme. Molimo vas da ih kopirate iz direktorijuma `/wp-content/plugins/gallery-plugin/template/` u direktorijum vaše teme za ispravan rad modula Galerija"
24
 
93
  msgstr "Molimo vas izaberite"
94
 
95
  #: gallery-plugin.php:229
96
+ #: gallery-plugin.php:887
97
  msgid "Sort images by"
98
  msgstr "Poređaj slike po"
99
 
163
  msgstr "Izdanje"
164
 
165
  #: gallery-plugin.php:506
166
+ #: gallery-plugin.php:891
167
  msgid "Date"
168
  msgstr "Datum"
169
 
170
+ #: gallery-plugin.php:630
171
  msgid "See images &raquo;"
172
  msgstr "Pogledaj sliku &raquo;"
173
 
174
+ #: gallery-plugin.php:677
175
  msgid "requires"
176
  msgstr ""
177
 
178
+ #: gallery-plugin.php:677
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr ""
181
 
182
+ #: gallery-plugin.php:677
183
  msgid "Back to the WordPress"
184
  msgstr ""
185
 
186
+ #: gallery-plugin.php:677
187
  #, fuzzy
188
  msgid "Plugins page"
189
  msgstr "Pro moduli"
190
 
191
+ #: gallery-plugin.php:761
192
  msgid "Settings are saved"
193
  msgstr "Podešavanja su sačuvana"
194
 
195
+ #: gallery-plugin.php:774
196
  msgid "Gallery Settings"
197
  msgstr "Podešavanja Galerije"
198
 
199
+ #: gallery-plugin.php:777
200
  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:"
201
  msgstr "Ako želite da dodate Jedinstvenu Galeriju na vašu stranicu ili post, samo kopirajte i prelepite ovaj kratki kod na vaš post ili stranicu:"
202
 
203
+ #: gallery-plugin.php:781
204
  msgid "Image size for the album cover"
205
  msgstr "Veličina slike za naslovnu stranicu albuma"
206
 
207
+ #: gallery-plugin.php:783
208
+ #: gallery-plugin.php:791
209
+ #: gallery-plugin.php:804
210
  msgid "Image size"
211
  msgstr "Veličina slike"
212
 
213
+ #: gallery-plugin.php:784
214
+ #: gallery-plugin.php:792
215
  msgid "Width (in px)"
216
  msgstr "Širina (u pikselima)"
217
 
218
+ #: gallery-plugin.php:785
219
+ #: gallery-plugin.php:793
220
  msgid "Height (in px)"
221
  msgstr "Visina (u pikselima)"
222
 
223
+ #: gallery-plugin.php:789
224
  msgid "Gallery image size"
225
  msgstr "Veličina slika u galeriji"
226
 
227
+ #: gallery-plugin.php:797
228
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
229
  msgstr "WordPress će kreirati novi umanjeni prikaz sa navedenim dimenzijama kada učitate novu sliku."
230
 
231
+ #: gallery-plugin.php:802
232
  msgid "Gallery image size in the lightbox"
233
  msgstr "Veličina slika u galeriji u lightbox skriptu"
234
 
235
+ #: gallery-plugin.php:805
236
  msgid "Max width (in px)"
237
  msgstr "Max širina (u pikselima)"
238
 
239
+ #: gallery-plugin.php:806
240
  msgid "Max height (in px)"
241
  msgstr "Max visina (u pikselima)"
242
 
243
+ #: gallery-plugin.php:807
244
  msgid "Display a full size image in the lightbox"
245
  msgstr "Prikaži sliku u punoj veličini u lightbox-u"
246
 
247
+ #: gallery-plugin.php:811
248
  msgid "Crop position"
249
  msgstr "Pozicija za kropovanje"
250
 
251
+ #: gallery-plugin.php:813
252
  msgid "Horizontal"
253
  msgstr "Horizontalno"
254
 
255
+ #: gallery-plugin.php:815
256
  msgid "left"
257
  msgstr "levo"
258
 
259
+ #: gallery-plugin.php:816
260
+ #: gallery-plugin.php:823
261
  msgid "center"
262
  msgstr "centar"
263
 
264
+ #: gallery-plugin.php:817
265
  msgid "right"
266
  msgstr "desno"
267
 
268
+ #: gallery-plugin.php:820
269
  msgid "Vertical"
270
  msgstr "Vertikalno"
271
 
272
+ #: gallery-plugin.php:822
273
  msgid "top"
274
  msgstr "vrh"
275
 
276
+ #: gallery-plugin.php:824
277
  msgid "bottom"
278
  msgstr "dno"
279
 
280
+ #: gallery-plugin.php:829
281
  msgid "Lightbox background"
282
  msgstr "Lightbox pozadina"
283
 
284
+ #: gallery-plugin.php:831
285
  msgid "Default"
286
  msgstr "Podrazumevano"
287
 
288
+ #: gallery-plugin.php:832
289
  msgid "Background transparency (from 0 to 1)"
290
  msgstr "Pozadinska transparentnost (od 0 do 1)"
291
 
292
+ #: gallery-plugin.php:834
293
  msgid "Select a background color"
294
  msgstr "Izaberi pozadinsku boju"
295
 
296
+ #: gallery-plugin.php:836
297
  msgid "Background color"
298
  msgstr "Pozadinska boja"
299
 
300
+ #: gallery-plugin.php:843
301
+ #: gallery-plugin.php:988
302
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
303
  msgstr "Ova funkcija je dostupna u Pro verziji modula. Za više detalja pratite ovaj link"
304
 
305
+ #: gallery-plugin.php:850
306
  msgid "Images with border"
307
  msgstr "Slike sa okvirima"
308
 
309
+ #: gallery-plugin.php:853
310
  msgid "Border width in px, just numbers"
311
  msgstr "Širina okvira u pikselima, samo brojevi"
312
 
313
+ #: gallery-plugin.php:855
314
+ #: gallery-plugin.php:857
315
  msgid "Select a border color"
316
  msgstr "Izaberite boju okvira"
317
 
318
+ #: gallery-plugin.php:863
319
  msgid "Number of images in the row"
320
  msgstr "Broj slika u redu"
321
 
322
+ #: gallery-plugin.php:869
323
  msgid "Start slideshow"
324
  msgstr "Započni projekciju slajdova"
325
 
326
+ #: gallery-plugin.php:875
327
  msgid "Slideshow interval"
328
  msgstr "Interval projekcije slajdova"
329
 
330
+ #: gallery-plugin.php:881
331
+ msgid "Use single lightbox for multiple galleries on one page"
332
+ msgstr ""
333
+
334
+ #: gallery-plugin.php:889
335
  msgid "Attachment ID"
336
  msgstr "ID priloga"
337
 
338
+ #: gallery-plugin.php:890
339
  msgid "Image Name"
340
  msgstr "Ime slike"
341
 
342
+ #: gallery-plugin.php:892
343
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
344
  msgstr "Raspoređivanje (polje za unos za sortiranje u dijalogu Insert / Upload Media Gallery)"
345
 
346
+ #: gallery-plugin.php:893
347
  msgid "Random"
348
  msgstr "Nasumično"
349
 
350
+ #: gallery-plugin.php:897
351
  msgid "Sort images"
352
  msgstr "Sortiraj slike"
353
 
354
+ #: gallery-plugin.php:899
355
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
356
  msgstr "ASC (rastući redosled od najnižih do najviših vrednosti - 1, 2, 3; a, b, c)"
357
 
358
+ #: gallery-plugin.php:900
359
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
360
  msgstr "DESC (opadajući redosled od najviših do najnižih vrednosti - 3, 2, 1; c, b, a)"
361
 
362
+ #: gallery-plugin.php:904
363
  msgid "Display text above the image"
364
  msgstr "Prikaži tekst iznad slike"
365
 
366
+ #: gallery-plugin.php:906
367
  #, fuzzy
368
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
369
  msgstr "Ako želite da prikažete tekst samo u lightbox-u"
370
 
371
+ #: gallery-plugin.php:910
372
  msgid "Display the Back link"
373
  msgstr "Prikaži povratni link"
374
 
375
+ #: gallery-plugin.php:916
376
  msgid "Display the Back link in the shortcode"
377
  msgstr "Prikaži povratni link u kratkom kodu"
378
 
379
+ #: gallery-plugin.php:922
380
  msgid "The Back link text"
381
  msgstr "Tekst u povratnom linku"
382
 
383
+ #: gallery-plugin.php:928
384
  msgid "The Back link URL"
385
  msgstr "URL povratnog linka"
386
 
387
+ #: gallery-plugin.php:930
388
  msgid "Gallery page (Page with Gallery Template)"
389
  msgstr "Stranica galerije (Stranica sa šablonom galerije)"
390
 
391
+ #: gallery-plugin.php:932
392
  msgid "(Full URL to custom page)"
393
  msgstr "(Puni URL ka korisničkoj stranici)"
394
 
395
+ #: gallery-plugin.php:936
396
  msgid "The Read More link text"
397
  msgstr "Tekst u linku Pročitaj više"
398
 
399
+ #: gallery-plugin.php:942
400
  msgid "Add gallery to the search"
401
  msgstr ""
402
 
 
403
  #: gallery-plugin.php:958
404
+ #: gallery-plugin.php:961
405
+ #: gallery-plugin.php:965
406
  msgid "Using Custom Search powered by"
407
  msgstr ""
408
 
409
+ #: gallery-plugin.php:961
410
  msgid "Activate Custom Search"
411
  msgstr ""
412
 
413
+ #: gallery-plugin.php:965
414
  msgid "Download Custom Search"
415
  msgstr ""
416
 
417
+ #: gallery-plugin.php:972
418
  #, fuzzy
419
  msgid "Display Like buttons in the lightbox"
420
  msgstr "Afficher une image en taille normale dans le boite"
421
 
422
+ #: gallery-plugin.php:974
423
  msgid "FaceBook"
424
  msgstr "FaceBook"
425
 
426
+ #: gallery-plugin.php:975
427
  #, fuzzy
428
  msgid "Twitter"
429
  msgstr "Titre"
430
 
431
+ #: gallery-plugin.php:976
432
  msgid "Pinterest"
433
  msgstr "Pinterest"
434
 
435
+ #: gallery-plugin.php:977
436
  msgid "Google +1"
437
  msgstr "Google +1"
438
 
439
+ #: gallery-plugin.php:981
440
  #, fuzzy
441
  msgid "Slug for gallery item"
442
  msgstr "Taille de la vignette de la galerie"
443
 
444
+ #: gallery-plugin.php:983
445
  msgid "for any structure of permalinks except the default structure"
446
  msgstr ""
447
 
448
+ #: gallery-plugin.php:996
449
  msgid "Save Changes"
450
  msgstr "Sačuvaj izmene"
451
 
452
+ #: gallery-plugin.php:1008
453
+ #: gallery-plugin.php:1023
454
  msgid "Settings"
455
  msgstr "Podešavanja"
456
 
457
+ #: gallery-plugin.php:1009
458
  msgid "FAQ"
459
  msgstr "FAQ"
460
 
461
+ #: gallery-plugin.php:1010
462
  msgid "Support"
463
  msgstr "Podrška"
464
 
465
+ #: gallery-plugin.php:1222
466
+ #: template/gallery-single-template.php:76
467
  msgid "Sorry, nothing found."
468
  msgstr "Nažalost nije pronađeno"
469
 
470
+ #: gallery-plugin.php:1244
471
+ #: template/gallery-single-template.php:102
472
  msgid "Download high resolution image"
473
  msgstr "Preuzmi sliku u visokoj rezoluciji"
474
 
475
+ #: gallery-plugin.php:1464
476
+ #, fuzzy
477
+ msgid "Learn More"
478
+ msgstr "Pročitaj više"
479
+
480
+ #: gallery-plugin.php:1466
481
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
482
+ msgstr ""
483
+
484
+ #: gallery-plugin.php:1467
485
+ msgid "Extend standard plugin functionality with new great options."
486
+ msgstr ""
487
+
488
+ #: template/gallery-single-template.php:102
489
  msgid "Image"
490
  msgstr "Slika"
491
 
559
  #~ msgstr "Nažalost mejl poruka nije prosleđena"
560
  #~ msgid "Activated plugins"
561
  #~ msgstr "Aktivirani moduli"
 
 
562
  #~ msgid "Installed plugins"
563
  #~ msgstr "Instalirani moduli"
564
  #~ msgid "Recommended plugins"
languages/gallery-tr.mo CHANGED
Binary file
languages/gallery-tr.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-11-01 13:30+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:101
21
- #: gallery-plugin.php:771
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 "\"gallery-template.php\" ve \"gallery-single-template.php\" dosyaları tema klasörünüzde bulunamadı. Lütfen bu dosyaları `/wp-content/plugins/gallery-plugin/template/` dizininden tema dizininize kopyalayınız. Aksi halde Galeri eklentisi doğru çalışmayacaktır."
24
 
@@ -93,7 +93,7 @@ msgid "Please make a choice"
93
  msgstr "Lütfen bir seçim yapınız"
94
 
95
  #: gallery-plugin.php:229
96
- #: gallery-plugin.php:884
97
  msgid "Sort images by"
98
  msgstr "Resimleri sırala buna göre sırala"
99
 
@@ -163,310 +163,327 @@ msgid "Publishing"
163
  msgstr "Yayınlama"
164
 
165
  #: gallery-plugin.php:506
166
- #: gallery-plugin.php:888
167
  msgid "Date"
168
  msgstr "Tarih"
169
 
170
- #: gallery-plugin.php:632
171
  msgid "See images &raquo;"
172
  msgstr "Resimleri Gör &raquo;"
173
 
174
- #: gallery-plugin.php:679
175
  msgid "requires"
176
  msgstr ""
177
 
178
- #: gallery-plugin.php:679
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr ""
181
 
182
- #: gallery-plugin.php:679
183
  msgid "Back to the WordPress"
184
  msgstr ""
185
 
186
- #: gallery-plugin.php:679
187
  #, fuzzy
188
  msgid "Plugins page"
189
  msgstr "Pro eklentiler"
190
 
191
- #: gallery-plugin.php:764
192
  msgid "Settings are saved"
193
  msgstr "Ayarlar kaydedildi"
194
 
195
- #: gallery-plugin.php:777
196
  msgid "Gallery Settings"
197
  msgstr "Galeri ayarları"
198
 
199
- #: gallery-plugin.php:780
200
  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:"
201
  msgstr "Sayfa ya da yazılara tekil galeri eklemek için bu kısa kodu kopyalayıp sayfa ya da yazı içerisine yapıştırın:"
202
 
203
- #: gallery-plugin.php:784
204
  msgid "Image size for the album cover"
205
  msgstr "Albüm kapağı için resim boyuru"
206
 
207
- #: gallery-plugin.php:786
208
- #: gallery-plugin.php:794
209
- #: gallery-plugin.php:807
210
  msgid "Image size"
211
  msgstr "Resim boyutu"
212
 
213
- #: gallery-plugin.php:787
214
- #: gallery-plugin.php:795
215
  msgid "Width (in px)"
216
  msgstr "Yatay boyut (px)"
217
 
218
- #: gallery-plugin.php:788
219
- #: gallery-plugin.php:796
220
  msgid "Height (in px)"
221
  msgstr "Yükseklik (px)"
222
 
223
- #: gallery-plugin.php:792
224
  msgid "Gallery image size"
225
  msgstr "Galeri resim boyutu"
226
 
227
- #: gallery-plugin.php:800
228
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
229
  msgstr "Yeni bir resim yüklediğinizde Wordpress belirlernen boyutlarda bir thumbnail oluşturacaktır."
230
 
231
- #: gallery-plugin.php:805
232
  msgid "Gallery image size in the lightbox"
233
  msgstr "Lightbox içerisindeki resim boyutu"
234
 
235
- #: gallery-plugin.php:808
236
  msgid "Max width (in px)"
237
  msgstr "Maksimum yatay boyut (px)"
238
 
239
- #: gallery-plugin.php:809
240
  msgid "Max height (in px)"
241
  msgstr "Maksimum yükseklik (px)"
242
 
243
- #: gallery-plugin.php:810
244
  msgid "Display a full size image in the lightbox"
245
  msgstr "Lightbox içerisinde tam boyutlu resim göster"
246
 
247
- #: gallery-plugin.php:814
248
  msgid "Crop position"
249
  msgstr "Kırpma konumu"
250
 
251
- #: gallery-plugin.php:816
252
  msgid "Horizontal"
253
  msgstr "Yatay"
254
 
255
- #: gallery-plugin.php:818
256
  msgid "left"
257
  msgstr "sol"
258
 
259
- #: gallery-plugin.php:819
260
- #: gallery-plugin.php:826
261
  msgid "center"
262
  msgstr "orta"
263
 
264
- #: gallery-plugin.php:820
265
  msgid "right"
266
  msgstr "sağ"
267
 
268
- #: gallery-plugin.php:823
269
  msgid "Vertical"
270
  msgstr "Dikey"
271
 
272
- #: gallery-plugin.php:825
273
  msgid "top"
274
  msgstr "üst"
275
 
276
- #: gallery-plugin.php:827
277
  msgid "bottom"
278
  msgstr "alt"
279
 
280
- #: gallery-plugin.php:832
281
  msgid "Lightbox background"
282
  msgstr "Lightbox arkaplanı"
283
 
284
- #: gallery-plugin.php:834
285
  msgid "Default"
286
  msgstr "Öntanımlı"
287
 
288
- #: gallery-plugin.php:835
289
  msgid "Background transparency (from 0 to 1)"
290
  msgstr "Arkaplan saydamlığı (0 - 10 arasında)"
291
 
292
- #: gallery-plugin.php:837
293
  msgid "Select a background color"
294
  msgstr "Arkaplan rengi seçiniz"
295
 
296
- #: gallery-plugin.php:839
297
  msgid "Background color"
298
  msgstr "Arka plan rengi"
299
 
300
- #: gallery-plugin.php:846
301
- #: gallery-plugin.php:985
302
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
303
  msgstr "Bu özellik Pro versiyonda etkindir. Detaylar için linke tıklayın."
304
 
305
- #: gallery-plugin.php:853
306
  msgid "Images with border"
307
  msgstr "Çerçeveli resimler"
308
 
309
- #: gallery-plugin.php:856
310
  msgid "Border width in px, just numbers"
311
  msgstr "Çerçeve kalınlığı (px) [sadece sayı yazınız]"
312
 
313
- #: gallery-plugin.php:858
314
- #: gallery-plugin.php:860
315
  msgid "Select a border color"
316
  msgstr "Çerçeve rengi seçiniz"
317
 
318
- #: gallery-plugin.php:866
319
  msgid "Number of images in the row"
320
  msgstr "Bir satırdaki resim sayısı"
321
 
322
- #: gallery-plugin.php:872
323
  msgid "Start slideshow"
324
  msgstr "Slayt gösterisini başlat"
325
 
326
- #: gallery-plugin.php:878
327
  msgid "Slideshow interval"
328
  msgstr "Slayt gösterisi sıklığı"
329
 
330
- #: gallery-plugin.php:886
 
 
 
 
331
  msgid "Attachment ID"
332
  msgstr "Ek ID"
333
 
334
- #: gallery-plugin.php:887
335
  msgid "Image Name"
336
  msgstr "Resim İsmi"
337
 
338
- #: gallery-plugin.php:889
339
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
340
  msgstr "Sıralama"
341
 
342
- #: gallery-plugin.php:890
343
  msgid "Random"
344
  msgstr "Rastgele"
345
 
346
- #: gallery-plugin.php:894
347
  msgid "Sort images"
348
  msgstr "Resimleri sırala"
349
 
350
- #: gallery-plugin.php:896
351
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
352
  msgstr "Artan Sırada (1,2,3; a,b,c)"
353
 
354
- #: gallery-plugin.php:897
355
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
356
  msgstr "Azalan Sırada (3,2,1;c,b,a)"
357
 
358
- #: gallery-plugin.php:901
359
  msgid "Display text above the image"
360
  msgstr "Görsel üzerinde yazı göster"
361
 
362
- #: gallery-plugin.php:903
363
  #, fuzzy
364
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
365
  msgstr "Eğer lightbox içerisinde yazı göstermek isterseniz"
366
 
367
- #: gallery-plugin.php:907
368
  msgid "Display the Back link"
369
  msgstr "Geri linkini göster"
370
 
371
- #: gallery-plugin.php:913
372
  msgid "Display the Back link in the shortcode"
373
  msgstr "Kısa kodda Geri linkini göster"
374
 
375
- #: gallery-plugin.php:919
376
  msgid "The Back link text"
377
  msgstr "Geri linki başlığı"
378
 
379
- #: gallery-plugin.php:925
380
  msgid "The Back link URL"
381
  msgstr "Geri linki URL'si"
382
 
383
- #: gallery-plugin.php:927
384
  msgid "Gallery page (Page with Gallery Template)"
385
  msgstr "Galeri sayfası"
386
 
387
- #: gallery-plugin.php:929
388
  msgid "(Full URL to custom page)"
389
  msgstr "(Özel sayfaya(custom page) tam link)"
390
 
391
- #: gallery-plugin.php:933
392
  msgid "The Read More link text"
393
  msgstr "Devamını oku linki için etiket"
394
 
395
- #: gallery-plugin.php:939
396
  msgid "Add gallery to the search"
397
  msgstr ""
398
 
399
- #: gallery-plugin.php:955
400
  #: gallery-plugin.php:958
401
- #: gallery-plugin.php:962
 
402
  msgid "Using Custom Search powered by"
403
  msgstr ""
404
 
405
- #: gallery-plugin.php:958
406
  msgid "Activate Custom Search"
407
  msgstr ""
408
 
409
- #: gallery-plugin.php:962
410
  msgid "Download Custom Search"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:969
414
  msgid "Display Like buttons in the lightbox"
415
  msgstr "Lightbox içerisinde beğen butonlarını göster"
416
 
417
- #: gallery-plugin.php:971
418
  msgid "FaceBook"
419
  msgstr "Facebook"
420
 
421
- #: gallery-plugin.php:972
422
  msgid "Twitter"
423
  msgstr "Twitter"
424
 
425
- #: gallery-plugin.php:973
426
  msgid "Pinterest"
427
  msgstr "Pinterest"
428
 
429
- #: gallery-plugin.php:974
430
  msgid "Google +1"
431
  msgstr "Google +1"
432
 
433
- #: gallery-plugin.php:978
434
  #, fuzzy
435
  msgid "Slug for gallery item"
436
  msgstr "Розмір зображення галерея"
437
 
438
- #: gallery-plugin.php:980
439
  msgid "for any structure of permalinks except the default structure"
440
  msgstr ""
441
 
442
- #: gallery-plugin.php:993
443
  msgid "Save Changes"
444
  msgstr "Değişiklikleri Kaydet"
445
 
446
- #: gallery-plugin.php:1005
447
- #: gallery-plugin.php:1020
448
  msgid "Settings"
449
  msgstr "Ayarlar"
450
 
451
- #: gallery-plugin.php:1006
452
  msgid "FAQ"
453
  msgstr "SSS"
454
 
455
- #: gallery-plugin.php:1007
456
  msgid "Support"
457
  msgstr "Destek"
458
 
459
- #: gallery-plugin.php:1220
460
- #: template/gallery-single-template.php:77
461
  msgid "Sorry, nothing found."
462
  msgstr "Üzgünüz, sonuç bulunamadı."
463
 
464
- #: gallery-plugin.php:1242
465
- #: template/gallery-single-template.php:103
466
  msgid "Download high resolution image"
467
  msgstr "Yüksek çözünürlüklü görseli indir"
468
 
469
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
470
  msgid "Image"
471
  msgstr "Görsel"
472
 
@@ -475,8 +492,6 @@ msgstr "Görsel"
475
  #~ msgstr "Resim Yükle"
476
  #~ msgid "Activated plugins"
477
  #~ msgstr "Etkinleştirilmiş eklentiler"
478
- #~ msgid "Read more"
479
- #~ msgstr "Devamını Oku"
480
  #~ msgid "Installed plugins"
481
  #~ msgstr "Yüklü eklentiler"
482
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:38+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:101
21
+ #: gallery-plugin.php:768
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 "\"gallery-template.php\" ve \"gallery-single-template.php\" dosyaları tema klasörünüzde bulunamadı. Lütfen bu dosyaları `/wp-content/plugins/gallery-plugin/template/` dizininden tema dizininize kopyalayınız. Aksi halde Galeri eklentisi doğru çalışmayacaktır."
24
 
93
  msgstr "Lütfen bir seçim yapınız"
94
 
95
  #: gallery-plugin.php:229
96
+ #: gallery-plugin.php:887
97
  msgid "Sort images by"
98
  msgstr "Resimleri sırala buna göre sırala"
99
 
163
  msgstr "Yayınlama"
164
 
165
  #: gallery-plugin.php:506
166
+ #: gallery-plugin.php:891
167
  msgid "Date"
168
  msgstr "Tarih"
169
 
170
+ #: gallery-plugin.php:630
171
  msgid "See images &raquo;"
172
  msgstr "Resimleri Gör &raquo;"
173
 
174
+ #: gallery-plugin.php:677
175
  msgid "requires"
176
  msgstr ""
177
 
178
+ #: gallery-plugin.php:677
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr ""
181
 
182
+ #: gallery-plugin.php:677
183
  msgid "Back to the WordPress"
184
  msgstr ""
185
 
186
+ #: gallery-plugin.php:677
187
  #, fuzzy
188
  msgid "Plugins page"
189
  msgstr "Pro eklentiler"
190
 
191
+ #: gallery-plugin.php:761
192
  msgid "Settings are saved"
193
  msgstr "Ayarlar kaydedildi"
194
 
195
+ #: gallery-plugin.php:774
196
  msgid "Gallery Settings"
197
  msgstr "Galeri ayarları"
198
 
199
+ #: gallery-plugin.php:777
200
  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:"
201
  msgstr "Sayfa ya da yazılara tekil galeri eklemek için bu kısa kodu kopyalayıp sayfa ya da yazı içerisine yapıştırın:"
202
 
203
+ #: gallery-plugin.php:781
204
  msgid "Image size for the album cover"
205
  msgstr "Albüm kapağı için resim boyuru"
206
 
207
+ #: gallery-plugin.php:783
208
+ #: gallery-plugin.php:791
209
+ #: gallery-plugin.php:804
210
  msgid "Image size"
211
  msgstr "Resim boyutu"
212
 
213
+ #: gallery-plugin.php:784
214
+ #: gallery-plugin.php:792
215
  msgid "Width (in px)"
216
  msgstr "Yatay boyut (px)"
217
 
218
+ #: gallery-plugin.php:785
219
+ #: gallery-plugin.php:793
220
  msgid "Height (in px)"
221
  msgstr "Yükseklik (px)"
222
 
223
+ #: gallery-plugin.php:789
224
  msgid "Gallery image size"
225
  msgstr "Galeri resim boyutu"
226
 
227
+ #: gallery-plugin.php:797
228
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
229
  msgstr "Yeni bir resim yüklediğinizde Wordpress belirlernen boyutlarda bir thumbnail oluşturacaktır."
230
 
231
+ #: gallery-plugin.php:802
232
  msgid "Gallery image size in the lightbox"
233
  msgstr "Lightbox içerisindeki resim boyutu"
234
 
235
+ #: gallery-plugin.php:805
236
  msgid "Max width (in px)"
237
  msgstr "Maksimum yatay boyut (px)"
238
 
239
+ #: gallery-plugin.php:806
240
  msgid "Max height (in px)"
241
  msgstr "Maksimum yükseklik (px)"
242
 
243
+ #: gallery-plugin.php:807
244
  msgid "Display a full size image in the lightbox"
245
  msgstr "Lightbox içerisinde tam boyutlu resim göster"
246
 
247
+ #: gallery-plugin.php:811
248
  msgid "Crop position"
249
  msgstr "Kırpma konumu"
250
 
251
+ #: gallery-plugin.php:813
252
  msgid "Horizontal"
253
  msgstr "Yatay"
254
 
255
+ #: gallery-plugin.php:815
256
  msgid "left"
257
  msgstr "sol"
258
 
259
+ #: gallery-plugin.php:816
260
+ #: gallery-plugin.php:823
261
  msgid "center"
262
  msgstr "orta"
263
 
264
+ #: gallery-plugin.php:817
265
  msgid "right"
266
  msgstr "sağ"
267
 
268
+ #: gallery-plugin.php:820
269
  msgid "Vertical"
270
  msgstr "Dikey"
271
 
272
+ #: gallery-plugin.php:822
273
  msgid "top"
274
  msgstr "üst"
275
 
276
+ #: gallery-plugin.php:824
277
  msgid "bottom"
278
  msgstr "alt"
279
 
280
+ #: gallery-plugin.php:829
281
  msgid "Lightbox background"
282
  msgstr "Lightbox arkaplanı"
283
 
284
+ #: gallery-plugin.php:831
285
  msgid "Default"
286
  msgstr "Öntanımlı"
287
 
288
+ #: gallery-plugin.php:832
289
  msgid "Background transparency (from 0 to 1)"
290
  msgstr "Arkaplan saydamlığı (0 - 10 arasında)"
291
 
292
+ #: gallery-plugin.php:834
293
  msgid "Select a background color"
294
  msgstr "Arkaplan rengi seçiniz"
295
 
296
+ #: gallery-plugin.php:836
297
  msgid "Background color"
298
  msgstr "Arka plan rengi"
299
 
300
+ #: gallery-plugin.php:843
301
+ #: gallery-plugin.php:988
302
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
303
  msgstr "Bu özellik Pro versiyonda etkindir. Detaylar için linke tıklayın."
304
 
305
+ #: gallery-plugin.php:850
306
  msgid "Images with border"
307
  msgstr "Çerçeveli resimler"
308
 
309
+ #: gallery-plugin.php:853
310
  msgid "Border width in px, just numbers"
311
  msgstr "Çerçeve kalınlığı (px) [sadece sayı yazınız]"
312
 
313
+ #: gallery-plugin.php:855
314
+ #: gallery-plugin.php:857
315
  msgid "Select a border color"
316
  msgstr "Çerçeve rengi seçiniz"
317
 
318
+ #: gallery-plugin.php:863
319
  msgid "Number of images in the row"
320
  msgstr "Bir satırdaki resim sayısı"
321
 
322
+ #: gallery-plugin.php:869
323
  msgid "Start slideshow"
324
  msgstr "Slayt gösterisini başlat"
325
 
326
+ #: gallery-plugin.php:875
327
  msgid "Slideshow interval"
328
  msgstr "Slayt gösterisi sıklığı"
329
 
330
+ #: gallery-plugin.php:881
331
+ msgid "Use single lightbox for multiple galleries on one page"
332
+ msgstr ""
333
+
334
+ #: gallery-plugin.php:889
335
  msgid "Attachment ID"
336
  msgstr "Ek ID"
337
 
338
+ #: gallery-plugin.php:890
339
  msgid "Image Name"
340
  msgstr "Resim İsmi"
341
 
342
+ #: gallery-plugin.php:892
343
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
344
  msgstr "Sıralama"
345
 
346
+ #: gallery-plugin.php:893
347
  msgid "Random"
348
  msgstr "Rastgele"
349
 
350
+ #: gallery-plugin.php:897
351
  msgid "Sort images"
352
  msgstr "Resimleri sırala"
353
 
354
+ #: gallery-plugin.php:899
355
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
356
  msgstr "Artan Sırada (1,2,3; a,b,c)"
357
 
358
+ #: gallery-plugin.php:900
359
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
360
  msgstr "Azalan Sırada (3,2,1;c,b,a)"
361
 
362
+ #: gallery-plugin.php:904
363
  msgid "Display text above the image"
364
  msgstr "Görsel üzerinde yazı göster"
365
 
366
+ #: gallery-plugin.php:906
367
  #, fuzzy
368
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
369
  msgstr "Eğer lightbox içerisinde yazı göstermek isterseniz"
370
 
371
+ #: gallery-plugin.php:910
372
  msgid "Display the Back link"
373
  msgstr "Geri linkini göster"
374
 
375
+ #: gallery-plugin.php:916
376
  msgid "Display the Back link in the shortcode"
377
  msgstr "Kısa kodda Geri linkini göster"
378
 
379
+ #: gallery-plugin.php:922
380
  msgid "The Back link text"
381
  msgstr "Geri linki başlığı"
382
 
383
+ #: gallery-plugin.php:928
384
  msgid "The Back link URL"
385
  msgstr "Geri linki URL'si"
386
 
387
+ #: gallery-plugin.php:930
388
  msgid "Gallery page (Page with Gallery Template)"
389
  msgstr "Galeri sayfası"
390
 
391
+ #: gallery-plugin.php:932
392
  msgid "(Full URL to custom page)"
393
  msgstr "(Özel sayfaya(custom page) tam link)"
394
 
395
+ #: gallery-plugin.php:936
396
  msgid "The Read More link text"
397
  msgstr "Devamını oku linki için etiket"
398
 
399
+ #: gallery-plugin.php:942
400
  msgid "Add gallery to the search"
401
  msgstr ""
402
 
 
403
  #: gallery-plugin.php:958
404
+ #: gallery-plugin.php:961
405
+ #: gallery-plugin.php:965
406
  msgid "Using Custom Search powered by"
407
  msgstr ""
408
 
409
+ #: gallery-plugin.php:961
410
  msgid "Activate Custom Search"
411
  msgstr ""
412
 
413
+ #: gallery-plugin.php:965
414
  msgid "Download Custom Search"
415
  msgstr ""
416
 
417
+ #: gallery-plugin.php:972
418
  msgid "Display Like buttons in the lightbox"
419
  msgstr "Lightbox içerisinde beğen butonlarını göster"
420
 
421
+ #: gallery-plugin.php:974
422
  msgid "FaceBook"
423
  msgstr "Facebook"
424
 
425
+ #: gallery-plugin.php:975
426
  msgid "Twitter"
427
  msgstr "Twitter"
428
 
429
+ #: gallery-plugin.php:976
430
  msgid "Pinterest"
431
  msgstr "Pinterest"
432
 
433
+ #: gallery-plugin.php:977
434
  msgid "Google +1"
435
  msgstr "Google +1"
436
 
437
+ #: gallery-plugin.php:981
438
  #, fuzzy
439
  msgid "Slug for gallery item"
440
  msgstr "Розмір зображення галерея"
441
 
442
+ #: gallery-plugin.php:983
443
  msgid "for any structure of permalinks except the default structure"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:996
447
  msgid "Save Changes"
448
  msgstr "Değişiklikleri Kaydet"
449
 
450
+ #: gallery-plugin.php:1008
451
+ #: gallery-plugin.php:1023
452
  msgid "Settings"
453
  msgstr "Ayarlar"
454
 
455
+ #: gallery-plugin.php:1009
456
  msgid "FAQ"
457
  msgstr "SSS"
458
 
459
+ #: gallery-plugin.php:1010
460
  msgid "Support"
461
  msgstr "Destek"
462
 
463
+ #: gallery-plugin.php:1222
464
+ #: template/gallery-single-template.php:76
465
  msgid "Sorry, nothing found."
466
  msgstr "Üzgünüz, sonuç bulunamadı."
467
 
468
+ #: gallery-plugin.php:1244
469
+ #: template/gallery-single-template.php:102
470
  msgid "Download high resolution image"
471
  msgstr "Yüksek çözünürlüklü görseli indir"
472
 
473
+ #: gallery-plugin.php:1464
474
+ #, fuzzy
475
+ msgid "Learn More"
476
+ msgstr "Devamını Oku"
477
+
478
+ #: gallery-plugin.php:1466
479
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
480
+ msgstr ""
481
+
482
+ #: gallery-plugin.php:1467
483
+ msgid "Extend standard plugin functionality with new great options."
484
+ msgstr ""
485
+
486
+ #: template/gallery-single-template.php:102
487
  msgid "Image"
488
  msgstr "Görsel"
489
 
492
  #~ msgstr "Resim Yükle"
493
  #~ msgid "Activated plugins"
494
  #~ msgstr "Etkinleştirilmiş eklentiler"
 
 
495
  #~ msgid "Installed plugins"
496
  #~ msgstr "Yüklü eklentiler"
497
  #~ msgid "Recommended plugins"
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-11-01 13:30+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:30+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: http://bestwebsoft.com <http://support.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:101
20
- #: gallery-plugin.php:771
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
 
@@ -92,7 +92,7 @@ msgid "Please make a choice"
92
  msgstr "Будь ласка, виберіть"
93
 
94
  #: gallery-plugin.php:229
95
- #: gallery-plugin.php:884
96
  msgid "Sort images by"
97
  msgstr "Сортувати зображення за "
98
 
@@ -162,308 +162,325 @@ msgid "Publishing"
162
  msgstr "Публікування"
163
 
164
  #: gallery-plugin.php:506
165
- #: gallery-plugin.php:888
166
  msgid "Date"
167
  msgstr "Дата "
168
 
169
- #: gallery-plugin.php:632
170
  msgid "See images &raquo;"
171
  msgstr "Дивитися фото &raquo;"
172
 
173
- #: gallery-plugin.php:679
174
  msgid "requires"
175
  msgstr ""
176
 
177
- #: gallery-plugin.php:679
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr ""
180
 
181
- #: gallery-plugin.php:679
182
  msgid "Back to the WordPress"
183
  msgstr ""
184
 
185
- #: gallery-plugin.php:679
186
  #, fuzzy
187
  msgid "Plugins page"
188
  msgstr "Плагіни про-версії"
189
 
190
- #: gallery-plugin.php:764
191
  msgid "Settings are saved"
192
  msgstr "Установки збережено."
193
 
194
- #: gallery-plugin.php:777
195
  msgid "Gallery Settings"
196
  msgstr "Параметри галереї"
197
 
198
- #: gallery-plugin.php:780
199
  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:"
200
  msgstr "Якщо ви хочете додати Галерею на вашу сторінку або у ваш запис, просто скопіюйте та розмістіть даний шорткод в контент вашого запису або стоінки:"
201
 
202
- #: gallery-plugin.php:784
203
  msgid "Image size for the album cover"
204
  msgstr "Розмір зображення для обкладинки альбому"
205
 
206
- #: gallery-plugin.php:786
207
- #: gallery-plugin.php:794
208
- #: gallery-plugin.php:807
209
  msgid "Image size"
210
  msgstr "Розмір зображення"
211
 
212
- #: gallery-plugin.php:787
213
- #: gallery-plugin.php:795
214
  msgid "Width (in px)"
215
  msgstr "Ширина (в px)"
216
 
217
- #: gallery-plugin.php:788
218
- #: gallery-plugin.php:796
219
  msgid "Height (in px)"
220
  msgstr "Висота (в px)"
221
 
222
- #: gallery-plugin.php:792
223
  msgid "Gallery image size"
224
  msgstr "Розмір зображення галереї"
225
 
226
- #: gallery-plugin.php:800
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "WordPress створить копію ескізу з заданими розмірами, коли ви завантажити нову фотографію."
229
 
230
- #: gallery-plugin.php:805
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Розмір зображень Галереї в лайтбоксі"
233
 
234
- #: gallery-plugin.php:808
235
  msgid "Max width (in px)"
236
  msgstr "Макс. ширина (в px)"
237
 
238
- #: gallery-plugin.php:809
239
  msgid "Max height (in px)"
240
  msgstr "Макс. висота (в px)"
241
 
242
- #: gallery-plugin.php:810
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Відображати повне зображення в лайтбоксі"
245
 
246
- #: gallery-plugin.php:814
247
  msgid "Crop position"
248
  msgstr "Позиція обтинання"
249
 
250
- #: gallery-plugin.php:816
251
  msgid "Horizontal"
252
  msgstr "Горизонтальна"
253
 
254
- #: gallery-plugin.php:818
255
  msgid "left"
256
  msgstr "зліва"
257
 
258
- #: gallery-plugin.php:819
259
- #: gallery-plugin.php:826
260
  msgid "center"
261
  msgstr "центр"
262
 
263
- #: gallery-plugin.php:820
264
  msgid "right"
265
  msgstr "зправа"
266
 
267
- #: gallery-plugin.php:823
268
  msgid "Vertical"
269
  msgstr "Вертикальна"
270
 
271
- #: gallery-plugin.php:825
272
  msgid "top"
273
  msgstr "верх"
274
 
275
- #: gallery-plugin.php:827
276
  msgid "bottom"
277
  msgstr "низ"
278
 
279
- #: gallery-plugin.php:832
280
  msgid "Lightbox background"
281
  msgstr "Фон лайтбокса"
282
 
283
- #: gallery-plugin.php:834
284
  msgid "Default"
285
  msgstr "Стандартне значення"
286
 
287
- #: gallery-plugin.php:835
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Прозорість для фону (від 0 до 1)"
290
 
291
- #: gallery-plugin.php:837
292
  msgid "Select a background color"
293
  msgstr "Вберіть колір фону"
294
 
295
- #: gallery-plugin.php:839
296
  msgid "Background color"
297
  msgstr "Колір фону"
298
 
299
- #: gallery-plugin.php:846
300
- #: gallery-plugin.php:985
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Даний функціонал доступний у про-версії плагіну. За додатковою інформацією, будь ласка, перейдіть за посиланням"
303
 
304
- #: gallery-plugin.php:853
305
  msgid "Images with border"
306
  msgstr "Зображення з рамкою"
307
 
308
- #: gallery-plugin.php:856
309
  msgid "Border width in px, just numbers"
310
  msgstr "Ширина рамки у пікселях, тільки числа"
311
 
312
- #: gallery-plugin.php:858
313
- #: gallery-plugin.php:860
314
  msgid "Select a border color"
315
  msgstr "Виберіть колір рамки"
316
 
317
- #: gallery-plugin.php:866
318
  msgid "Number of images in the row"
319
  msgstr "Кількість зображень у рядку"
320
 
321
- #: gallery-plugin.php:872
322
  msgid "Start slideshow"
323
  msgstr "Розпочати слайд-шоу"
324
 
325
- #: gallery-plugin.php:878
326
  msgid "Slideshow interval"
327
  msgstr "Інтервал часу при показі слайд-шоу"
328
 
329
- #: gallery-plugin.php:886
 
 
 
 
330
  msgid "Attachment ID"
331
  msgstr "ID зображення"
332
 
333
- #: gallery-plugin.php:887
334
  msgid "Image Name"
335
  msgstr "Ім'я зображення"
336
 
337
- #: gallery-plugin.php:889
338
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
339
  msgstr "Порядок сортування (поле для введення порядку сортирування у діалозі Insert / Upload Media Gallery)"
340
 
341
- #: gallery-plugin.php:890
342
  msgid "Random"
343
  msgstr "Довільно"
344
 
345
- #: gallery-plugin.php:894
346
  msgid "Sort images"
347
  msgstr "Сортувати зображення"
348
 
349
- #: gallery-plugin.php:896
350
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
351
  msgstr "ASC (в порядку зростання від найменшого до найбільшого значення - 1, 2, 3, а, б, в)"
352
 
353
- #: gallery-plugin.php:897
354
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
355
  msgstr "DESC (за зменшенням від найбільшого до найменшого значення - 3, 2, 1, C, B)"
356
 
357
- #: gallery-plugin.php:901
358
  msgid "Display text above the image"
359
  msgstr "Відображення тексту над зображенням"
360
 
361
- #: gallery-plugin.php:903
362
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
363
  msgstr "Вимкніть позначку, якщо ви хочете відображати текст тільки у лайтбоксі"
364
 
365
- #: gallery-plugin.php:907
366
  msgid "Display the Back link"
367
  msgstr "Відображати посилання Повернутися"
368
 
369
- #: gallery-plugin.php:913
370
  msgid "Display the Back link in the shortcode"
371
  msgstr "Відображати посилання Повернутися у шорткоді"
372
 
373
- #: gallery-plugin.php:919
374
  msgid "The Back link text"
375
  msgstr "Текст для посилання Повернутися"
376
 
377
- #: gallery-plugin.php:925
378
  msgid "The Back link URL"
379
  msgstr "URL для посилання Повернутися"
380
 
381
- #: gallery-plugin.php:927
382
  msgid "Gallery page (Page with Gallery Template)"
383
  msgstr "Сторінка Галереї (сторінка з шаблоном галереї)"
384
 
385
- #: gallery-plugin.php:929
386
  msgid "(Full URL to custom page)"
387
  msgstr "(Повне посилання на сторінку користувача)"
388
 
389
- #: gallery-plugin.php:933
390
  msgid "The Read More link text"
391
  msgstr "Текст для посилання Дізнатися більше"
392
 
393
- #: gallery-plugin.php:939
394
  msgid "Add gallery to the search"
395
  msgstr ""
396
 
397
- #: gallery-plugin.php:955
398
  #: gallery-plugin.php:958
399
- #: gallery-plugin.php:962
 
400
  msgid "Using Custom Search powered by"
401
  msgstr ""
402
 
403
- #: gallery-plugin.php:958
404
  msgid "Activate Custom Search"
405
  msgstr ""
406
 
407
- #: gallery-plugin.php:962
408
  msgid "Download Custom Search"
409
  msgstr ""
410
 
411
- #: gallery-plugin.php:969
412
  msgid "Display Like buttons in the lightbox"
413
  msgstr "Відображати Like кнопки у лайтбоксі"
414
 
415
- #: gallery-plugin.php:971
416
  msgid "FaceBook"
417
  msgstr "FaceBook"
418
 
419
- #: gallery-plugin.php:972
420
  msgid "Twitter"
421
  msgstr "Twitter"
422
 
423
- #: gallery-plugin.php:973
424
  msgid "Pinterest"
425
  msgstr "Pinterest"
426
 
427
- #: gallery-plugin.php:974
428
  msgid "Google +1"
429
  msgstr "Google +1"
430
 
431
- #: gallery-plugin.php:978
432
  msgid "Slug for gallery item"
433
  msgstr "Назва для єлементів Галереї"
434
 
435
- #: gallery-plugin.php:980
436
  msgid "for any structure of permalinks except the default structure"
437
  msgstr "для будь-якої структури, за винятком структуру за замовчуванням"
438
 
439
- #: gallery-plugin.php:993
440
  msgid "Save Changes"
441
  msgstr "Зберегти зміни"
442
 
443
- #: gallery-plugin.php:1005
444
- #: gallery-plugin.php:1020
445
  msgid "Settings"
446
  msgstr "Установки"
447
 
448
- #: gallery-plugin.php:1006
449
  msgid "FAQ"
450
  msgstr "FAQ "
451
 
452
- #: gallery-plugin.php:1007
453
  msgid "Support"
454
  msgstr "Підтримка"
455
 
456
- #: gallery-plugin.php:1220
457
- #: template/gallery-single-template.php:77
458
  msgid "Sorry, nothing found."
459
  msgstr "Вибачте - нічого не знайдено."
460
 
461
- #: gallery-plugin.php:1242
462
- #: template/gallery-single-template.php:103
463
  msgid "Download high resolution image"
464
  msgstr "Завантажити зображення у високій роздільності "
465
 
466
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Image"
468
  msgstr "Зображення"
469
 
@@ -533,8 +550,6 @@ msgstr "Зображення"
533
  #~ msgstr "Вибачте, електронне повідомлення не може бути відправлено."
534
  #~ msgid "Activated plugins"
535
  #~ msgstr "Активовані плагіни"
536
- #~ msgid "Read more"
537
- #~ msgstr "Читати далі"
538
  #~ msgid "Installed plugins"
539
  #~ msgstr "Встановлених модулів"
540
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:38+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:38+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: http://bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:101
20
+ #: gallery-plugin.php:768
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
 
92
  msgstr "Будь ласка, виберіть"
93
 
94
  #: gallery-plugin.php:229
95
+ #: gallery-plugin.php:887
96
  msgid "Sort images by"
97
  msgstr "Сортувати зображення за "
98
 
162
  msgstr "Публікування"
163
 
164
  #: gallery-plugin.php:506
165
+ #: gallery-plugin.php:891
166
  msgid "Date"
167
  msgstr "Дата "
168
 
169
+ #: gallery-plugin.php:630
170
  msgid "See images &raquo;"
171
  msgstr "Дивитися фото &raquo;"
172
 
173
+ #: gallery-plugin.php:677
174
  msgid "requires"
175
  msgstr ""
176
 
177
+ #: gallery-plugin.php:677
178
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
179
  msgstr ""
180
 
181
+ #: gallery-plugin.php:677
182
  msgid "Back to the WordPress"
183
  msgstr ""
184
 
185
+ #: gallery-plugin.php:677
186
  #, fuzzy
187
  msgid "Plugins page"
188
  msgstr "Плагіни про-версії"
189
 
190
+ #: gallery-plugin.php:761
191
  msgid "Settings are saved"
192
  msgstr "Установки збережено."
193
 
194
+ #: gallery-plugin.php:774
195
  msgid "Gallery Settings"
196
  msgstr "Параметри галереї"
197
 
198
+ #: gallery-plugin.php:777
199
  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:"
200
  msgstr "Якщо ви хочете додати Галерею на вашу сторінку або у ваш запис, просто скопіюйте та розмістіть даний шорткод в контент вашого запису або стоінки:"
201
 
202
+ #: gallery-plugin.php:781
203
  msgid "Image size for the album cover"
204
  msgstr "Розмір зображення для обкладинки альбому"
205
 
206
+ #: gallery-plugin.php:783
207
+ #: gallery-plugin.php:791
208
+ #: gallery-plugin.php:804
209
  msgid "Image size"
210
  msgstr "Розмір зображення"
211
 
212
+ #: gallery-plugin.php:784
213
+ #: gallery-plugin.php:792
214
  msgid "Width (in px)"
215
  msgstr "Ширина (в px)"
216
 
217
+ #: gallery-plugin.php:785
218
+ #: gallery-plugin.php:793
219
  msgid "Height (in px)"
220
  msgstr "Висота (в px)"
221
 
222
+ #: gallery-plugin.php:789
223
  msgid "Gallery image size"
224
  msgstr "Розмір зображення галереї"
225
 
226
+ #: gallery-plugin.php:797
227
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
228
  msgstr "WordPress створить копію ескізу з заданими розмірами, коли ви завантажити нову фотографію."
229
 
230
+ #: gallery-plugin.php:802
231
  msgid "Gallery image size in the lightbox"
232
  msgstr "Розмір зображень Галереї в лайтбоксі"
233
 
234
+ #: gallery-plugin.php:805
235
  msgid "Max width (in px)"
236
  msgstr "Макс. ширина (в px)"
237
 
238
+ #: gallery-plugin.php:806
239
  msgid "Max height (in px)"
240
  msgstr "Макс. висота (в px)"
241
 
242
+ #: gallery-plugin.php:807
243
  msgid "Display a full size image in the lightbox"
244
  msgstr "Відображати повне зображення в лайтбоксі"
245
 
246
+ #: gallery-plugin.php:811
247
  msgid "Crop position"
248
  msgstr "Позиція обтинання"
249
 
250
+ #: gallery-plugin.php:813
251
  msgid "Horizontal"
252
  msgstr "Горизонтальна"
253
 
254
+ #: gallery-plugin.php:815
255
  msgid "left"
256
  msgstr "зліва"
257
 
258
+ #: gallery-plugin.php:816
259
+ #: gallery-plugin.php:823
260
  msgid "center"
261
  msgstr "центр"
262
 
263
+ #: gallery-plugin.php:817
264
  msgid "right"
265
  msgstr "зправа"
266
 
267
+ #: gallery-plugin.php:820
268
  msgid "Vertical"
269
  msgstr "Вертикальна"
270
 
271
+ #: gallery-plugin.php:822
272
  msgid "top"
273
  msgstr "верх"
274
 
275
+ #: gallery-plugin.php:824
276
  msgid "bottom"
277
  msgstr "низ"
278
 
279
+ #: gallery-plugin.php:829
280
  msgid "Lightbox background"
281
  msgstr "Фон лайтбокса"
282
 
283
+ #: gallery-plugin.php:831
284
  msgid "Default"
285
  msgstr "Стандартне значення"
286
 
287
+ #: gallery-plugin.php:832
288
  msgid "Background transparency (from 0 to 1)"
289
  msgstr "Прозорість для фону (від 0 до 1)"
290
 
291
+ #: gallery-plugin.php:834
292
  msgid "Select a background color"
293
  msgstr "Вберіть колір фону"
294
 
295
+ #: gallery-plugin.php:836
296
  msgid "Background color"
297
  msgstr "Колір фону"
298
 
299
+ #: gallery-plugin.php:843
300
+ #: gallery-plugin.php:988
301
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
302
  msgstr "Даний функціонал доступний у про-версії плагіну. За додатковою інформацією, будь ласка, перейдіть за посиланням"
303
 
304
+ #: gallery-plugin.php:850
305
  msgid "Images with border"
306
  msgstr "Зображення з рамкою"
307
 
308
+ #: gallery-plugin.php:853
309
  msgid "Border width in px, just numbers"
310
  msgstr "Ширина рамки у пікселях, тільки числа"
311
 
312
+ #: gallery-plugin.php:855
313
+ #: gallery-plugin.php:857
314
  msgid "Select a border color"
315
  msgstr "Виберіть колір рамки"
316
 
317
+ #: gallery-plugin.php:863
318
  msgid "Number of images in the row"
319
  msgstr "Кількість зображень у рядку"
320
 
321
+ #: gallery-plugin.php:869
322
  msgid "Start slideshow"
323
  msgstr "Розпочати слайд-шоу"
324
 
325
+ #: gallery-plugin.php:875
326
  msgid "Slideshow interval"
327
  msgstr "Інтервал часу при показі слайд-шоу"
328
 
329
+ #: gallery-plugin.php:881
330
+ msgid "Use single lightbox for multiple galleries on one page"
331
+ msgstr ""
332
+
333
+ #: gallery-plugin.php:889
334
  msgid "Attachment ID"
335
  msgstr "ID зображення"
336
 
337
+ #: gallery-plugin.php:890
338
  msgid "Image Name"
339
  msgstr "Ім'я зображення"
340
 
341
+ #: gallery-plugin.php:892
342
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
343
  msgstr "Порядок сортування (поле для введення порядку сортирування у діалозі Insert / Upload Media Gallery)"
344
 
345
+ #: gallery-plugin.php:893
346
  msgid "Random"
347
  msgstr "Довільно"
348
 
349
+ #: gallery-plugin.php:897
350
  msgid "Sort images"
351
  msgstr "Сортувати зображення"
352
 
353
+ #: gallery-plugin.php:899
354
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
355
  msgstr "ASC (в порядку зростання від найменшого до найбільшого значення - 1, 2, 3, а, б, в)"
356
 
357
+ #: gallery-plugin.php:900
358
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
359
  msgstr "DESC (за зменшенням від найбільшого до найменшого значення - 3, 2, 1, C, B)"
360
 
361
+ #: gallery-plugin.php:904
362
  msgid "Display text above the image"
363
  msgstr "Відображення тексту над зображенням"
364
 
365
+ #: gallery-plugin.php:906
366
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
367
  msgstr "Вимкніть позначку, якщо ви хочете відображати текст тільки у лайтбоксі"
368
 
369
+ #: gallery-plugin.php:910
370
  msgid "Display the Back link"
371
  msgstr "Відображати посилання Повернутися"
372
 
373
+ #: gallery-plugin.php:916
374
  msgid "Display the Back link in the shortcode"
375
  msgstr "Відображати посилання Повернутися у шорткоді"
376
 
377
+ #: gallery-plugin.php:922
378
  msgid "The Back link text"
379
  msgstr "Текст для посилання Повернутися"
380
 
381
+ #: gallery-plugin.php:928
382
  msgid "The Back link URL"
383
  msgstr "URL для посилання Повернутися"
384
 
385
+ #: gallery-plugin.php:930
386
  msgid "Gallery page (Page with Gallery Template)"
387
  msgstr "Сторінка Галереї (сторінка з шаблоном галереї)"
388
 
389
+ #: gallery-plugin.php:932
390
  msgid "(Full URL to custom page)"
391
  msgstr "(Повне посилання на сторінку користувача)"
392
 
393
+ #: gallery-plugin.php:936
394
  msgid "The Read More link text"
395
  msgstr "Текст для посилання Дізнатися більше"
396
 
397
+ #: gallery-plugin.php:942
398
  msgid "Add gallery to the search"
399
  msgstr ""
400
 
 
401
  #: gallery-plugin.php:958
402
+ #: gallery-plugin.php:961
403
+ #: gallery-plugin.php:965
404
  msgid "Using Custom Search powered by"
405
  msgstr ""
406
 
407
+ #: gallery-plugin.php:961
408
  msgid "Activate Custom Search"
409
  msgstr ""
410
 
411
+ #: gallery-plugin.php:965
412
  msgid "Download Custom Search"
413
  msgstr ""
414
 
415
+ #: gallery-plugin.php:972
416
  msgid "Display Like buttons in the lightbox"
417
  msgstr "Відображати Like кнопки у лайтбоксі"
418
 
419
+ #: gallery-plugin.php:974
420
  msgid "FaceBook"
421
  msgstr "FaceBook"
422
 
423
+ #: gallery-plugin.php:975
424
  msgid "Twitter"
425
  msgstr "Twitter"
426
 
427
+ #: gallery-plugin.php:976
428
  msgid "Pinterest"
429
  msgstr "Pinterest"
430
 
431
+ #: gallery-plugin.php:977
432
  msgid "Google +1"
433
  msgstr "Google +1"
434
 
435
+ #: gallery-plugin.php:981
436
  msgid "Slug for gallery item"
437
  msgstr "Назва для єлементів Галереї"
438
 
439
+ #: gallery-plugin.php:983
440
  msgid "for any structure of permalinks except the default structure"
441
  msgstr "для будь-якої структури, за винятком структуру за замовчуванням"
442
 
443
+ #: gallery-plugin.php:996
444
  msgid "Save Changes"
445
  msgstr "Зберегти зміни"
446
 
447
+ #: gallery-plugin.php:1008
448
+ #: gallery-plugin.php:1023
449
  msgid "Settings"
450
  msgstr "Установки"
451
 
452
+ #: gallery-plugin.php:1009
453
  msgid "FAQ"
454
  msgstr "FAQ "
455
 
456
+ #: gallery-plugin.php:1010
457
  msgid "Support"
458
  msgstr "Підтримка"
459
 
460
+ #: gallery-plugin.php:1222
461
+ #: template/gallery-single-template.php:76
462
  msgid "Sorry, nothing found."
463
  msgstr "Вибачте - нічого не знайдено."
464
 
465
+ #: gallery-plugin.php:1244
466
+ #: template/gallery-single-template.php:102
467
  msgid "Download high resolution image"
468
  msgstr "Завантажити зображення у високій роздільності "
469
 
470
+ #: gallery-plugin.php:1464
471
+ #, fuzzy
472
+ msgid "Learn More"
473
+ msgstr "Читати далі"
474
+
475
+ #: gallery-plugin.php:1466
476
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
477
+ msgstr ""
478
+
479
+ #: gallery-plugin.php:1467
480
+ msgid "Extend standard plugin functionality with new great options."
481
+ msgstr ""
482
+
483
+ #: template/gallery-single-template.php:102
484
  msgid "Image"
485
  msgstr "Зображення"
486
 
550
  #~ msgstr "Вибачте, електронне повідомлення не може бути відправлено."
551
  #~ msgid "Activated plugins"
552
  #~ msgstr "Активовані плагіни"
 
 
553
  #~ msgid "Installed plugins"
554
  #~ msgstr "Встановлених модулів"
555
  #~ msgid "Recommended plugins"
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-11-01 13:30+0300\n"
6
- "PO-Revision-Date: 2013-11-01 13:30+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:101
20
- #: gallery-plugin.php:771
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
 
@@ -92,7 +92,7 @@ msgid "Please make a choice"
92
  msgstr "请选择"
93
 
94
  #: gallery-plugin.php:229
95
- #: gallery-plugin.php:884
96
  msgid "Sort images by"
97
  msgstr "图像排序按"
98
 
@@ -163,310 +163,327 @@ msgid "Publishing"
163
  msgstr "出版"
164
 
165
  #: gallery-plugin.php:506
166
- #: gallery-plugin.php:888
167
  msgid "Date"
168
  msgstr "日期"
169
 
170
- #: gallery-plugin.php:632
171
  msgid "See images &raquo;"
172
  msgstr "查看图像 &raquo;"
173
 
174
- #: gallery-plugin.php:679
175
  msgid "requires"
176
  msgstr ""
177
 
178
- #: gallery-plugin.php:679
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr ""
181
 
182
- #: gallery-plugin.php:679
183
  msgid "Back to the WordPress"
184
  msgstr ""
185
 
186
- #: gallery-plugin.php:679
187
  #, fuzzy
188
  msgid "Plugins page"
189
  msgstr "高级插件"
190
 
191
- #: gallery-plugin.php:764
192
  msgid "Settings are saved"
193
  msgstr "设置已保存。"
194
 
195
- #: gallery-plugin.php:777
196
  msgid "Gallery Settings"
197
  msgstr "图集设置"
198
 
199
- #: gallery-plugin.php:780
200
  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:"
201
  msgstr "如果您想添加一个图集到页面或公告中,仅需要将图集简码放到页面或公告的内容中即可:"
202
 
203
- #: gallery-plugin.php:784
204
  msgid "Image size for the album cover"
205
  msgstr "专辑封面图像的尺寸"
206
 
207
- #: gallery-plugin.php:786
208
- #: gallery-plugin.php:794
209
- #: gallery-plugin.php:807
210
  msgid "Image size"
211
  msgstr "图像尺寸"
212
 
213
- #: gallery-plugin.php:787
214
- #: gallery-plugin.php:795
215
  msgid "Width (in px)"
216
  msgstr "宽度(像素)"
217
 
218
- #: gallery-plugin.php:788
219
- #: gallery-plugin.php:796
220
  msgid "Height (in px)"
221
  msgstr "高度(像素)"
222
 
223
- #: gallery-plugin.php:792
224
  msgid "Gallery image size"
225
  msgstr "图集中图像的尺寸"
226
 
227
- #: gallery-plugin.php:800
228
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
229
  msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
230
 
231
- #: gallery-plugin.php:805
232
  msgid "Gallery image size in the lightbox"
233
  msgstr "灯箱中的图像尺寸"
234
 
235
- #: gallery-plugin.php:808
236
  msgid "Max width (in px)"
237
  msgstr "最大宽度(像素)"
238
 
239
- #: gallery-plugin.php:809
240
  msgid "Max height (in px)"
241
  msgstr "最大高度(像素)"
242
 
243
- #: gallery-plugin.php:810
244
  msgid "Display a full size image in the lightbox"
245
  msgstr "在灯箱中显示全尺寸图像"
246
 
247
- #: gallery-plugin.php:814
248
  msgid "Crop position"
249
  msgstr "裁剪位置"
250
 
251
- #: gallery-plugin.php:816
252
  msgid "Horizontal"
253
  msgstr "水平"
254
 
255
- #: gallery-plugin.php:818
256
  msgid "left"
257
  msgstr "左侧"
258
 
259
- #: gallery-plugin.php:819
260
- #: gallery-plugin.php:826
261
  msgid "center"
262
  msgstr "中心"
263
 
264
- #: gallery-plugin.php:820
265
  msgid "right"
266
  msgstr "右侧"
267
 
268
- #: gallery-plugin.php:823
269
  msgid "Vertical"
270
  msgstr "垂直"
271
 
272
- #: gallery-plugin.php:825
273
  msgid "top"
274
  msgstr "顶部"
275
 
276
- #: gallery-plugin.php:827
277
  msgid "bottom"
278
  msgstr "底部"
279
 
280
- #: gallery-plugin.php:832
281
  msgid "Lightbox background"
282
  msgstr "灯箱背景"
283
 
284
- #: gallery-plugin.php:834
285
  msgid "Default"
286
  msgstr "默认"
287
 
288
- #: gallery-plugin.php:835
289
  msgid "Background transparency (from 0 to 1)"
290
  msgstr "背景透明度(值为 0 到 1)"
291
 
292
- #: gallery-plugin.php:837
293
  msgid "Select a background color"
294
  msgstr "选择背景色"
295
 
296
- #: gallery-plugin.php:839
297
  msgid "Background color"
298
  msgstr "背景色"
299
 
300
- #: gallery-plugin.php:846
301
- #: gallery-plugin.php:985
302
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
303
  msgstr "此功能在插件的高级版本中可用。如需查看详细信息,请点击以下链接"
304
 
305
- #: gallery-plugin.php:853
306
  msgid "Images with border"
307
  msgstr "图像边缘"
308
 
309
- #: gallery-plugin.php:856
310
  msgid "Border width in px, just numbers"
311
  msgstr "边缘宽度,以像素为单位,只能使用数字"
312
 
313
- #: gallery-plugin.php:858
314
- #: gallery-plugin.php:860
315
  msgid "Select a border color"
316
  msgstr "选择边缘颜色"
317
 
318
- #: gallery-plugin.php:866
319
  msgid "Number of images in the row"
320
  msgstr "一行中图像的数量"
321
 
322
- #: gallery-plugin.php:872
323
  msgid "Start slideshow"
324
  msgstr "播放幻灯片"
325
 
326
- #: gallery-plugin.php:878
327
  msgid "Slideshow interval"
328
  msgstr "幻灯片播放间隔"
329
 
330
- #: gallery-plugin.php:886
 
 
 
 
331
  msgid "Attachment ID"
332
  msgstr "附件ID"
333
 
334
- #: gallery-plugin.php:887
335
  msgid "Image Name"
336
  msgstr "图像名称"
337
 
338
- #: gallery-plugin.php:889
339
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
340
  msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
341
 
342
- #: gallery-plugin.php:890
343
  msgid "Random"
344
  msgstr "随机"
345
 
346
- #: gallery-plugin.php:894
347
  msgid "Sort images"
348
  msgstr "图像排序"
349
 
350
- #: gallery-plugin.php:896
351
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
352
  msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
353
 
354
- #: gallery-plugin.php:897
355
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
356
  msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
357
 
358
- #: gallery-plugin.php:901
359
  msgid "Display text above the image"
360
  msgstr "在图像上方显示文本"
361
 
362
- #: gallery-plugin.php:903
363
  #, fuzzy
364
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
365
  msgstr "如果您仅想在收藏夹中显示文本"
366
 
367
- #: gallery-plugin.php:907
368
  msgid "Display the Back link"
369
  msgstr "显示返回链接"
370
 
371
- #: gallery-plugin.php:913
372
  msgid "Display the Back link in the shortcode"
373
  msgstr "以简码方式显示返回链接"
374
 
375
- #: gallery-plugin.php:919
376
  msgid "The Back link text"
377
  msgstr "返回链接文本"
378
 
379
- #: gallery-plugin.php:925
380
  msgid "The Back link URL"
381
  msgstr "返回链接URL"
382
 
383
- #: gallery-plugin.php:927
384
  msgid "Gallery page (Page with Gallery Template)"
385
  msgstr "图集页面(具有图集模板的页面)"
386
 
387
- #: gallery-plugin.php:929
388
  msgid "(Full URL to custom page)"
389
  msgstr "(到自定义页面的完整地址)"
390
 
391
- #: gallery-plugin.php:933
392
  msgid "The Read More link text"
393
  msgstr "阅读更多链接的文本"
394
 
395
- #: gallery-plugin.php:939
396
  msgid "Add gallery to the search"
397
  msgstr ""
398
 
399
- #: gallery-plugin.php:955
400
  #: gallery-plugin.php:958
401
- #: gallery-plugin.php:962
 
402
  msgid "Using Custom Search powered by"
403
  msgstr ""
404
 
405
- #: gallery-plugin.php:958
406
  msgid "Activate Custom Search"
407
  msgstr ""
408
 
409
- #: gallery-plugin.php:962
410
  msgid "Download Custom Search"
411
  msgstr ""
412
 
413
- #: gallery-plugin.php:969
414
  msgid "Display Like buttons in the lightbox"
415
  msgstr "在灯箱中显示[喜欢]按钮"
416
 
417
- #: gallery-plugin.php:971
418
  msgid "FaceBook"
419
  msgstr "Facebook"
420
 
421
- #: gallery-plugin.php:972
422
  msgid "Twitter"
423
  msgstr "Twitter"
424
 
425
- #: gallery-plugin.php:973
426
  msgid "Pinterest"
427
  msgstr "Printerest"
428
 
429
- #: gallery-plugin.php:974
430
  msgid "Google +1"
431
  msgstr "Google +1"
432
 
433
- #: gallery-plugin.php:978
434
  #, fuzzy
435
  msgid "Slug for gallery item"
436
  msgstr "图集中图像的尺寸"
437
 
438
- #: gallery-plugin.php:980
439
  msgid "for any structure of permalinks except the default structure"
440
  msgstr ""
441
 
442
- #: gallery-plugin.php:993
443
  msgid "Save Changes"
444
  msgstr "保存修改"
445
 
446
- #: gallery-plugin.php:1005
447
- #: gallery-plugin.php:1020
448
  msgid "Settings"
449
  msgstr "设置"
450
 
451
- #: gallery-plugin.php:1006
452
  msgid "FAQ"
453
  msgstr "常问问题"
454
 
455
- #: gallery-plugin.php:1007
456
  msgid "Support"
457
  msgstr "支持"
458
 
459
- #: gallery-plugin.php:1220
460
- #: template/gallery-single-template.php:77
461
  msgid "Sorry, nothing found."
462
  msgstr "对不起 - 没有找到。"
463
 
464
- #: gallery-plugin.php:1242
465
- #: template/gallery-single-template.php:103
466
  msgid "Download high resolution image"
467
  msgstr "下载高分辨率图像"
468
 
469
- #: template/gallery-single-template.php:103
 
 
 
 
 
 
 
 
 
 
 
 
 
470
  msgid "Image"
471
  msgstr "图像"
472
 
@@ -479,8 +496,6 @@ msgstr "图像"
479
  #~ msgstr "链接网址"
480
  #~ msgid "Activated plugins"
481
  #~ msgstr "已激活的插件"
482
- #~ msgid "Read more"
483
- #~ msgstr "阅读更多"
484
  #~ msgid "Installed plugins"
485
  #~ msgstr "安装插件"
486
  #~ msgid "Recommended plugins"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-22 11:38+0300\n"
6
+ "PO-Revision-Date: 2013-11-22 11:38+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:101
20
+ #: gallery-plugin.php:768
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
 
92
  msgstr "请选择"
93
 
94
  #: gallery-plugin.php:229
95
+ #: gallery-plugin.php:887
96
  msgid "Sort images by"
97
  msgstr "图像排序按"
98
 
163
  msgstr "出版"
164
 
165
  #: gallery-plugin.php:506
166
+ #: gallery-plugin.php:891
167
  msgid "Date"
168
  msgstr "日期"
169
 
170
+ #: gallery-plugin.php:630
171
  msgid "See images &raquo;"
172
  msgstr "查看图像 &raquo;"
173
 
174
+ #: gallery-plugin.php:677
175
  msgid "requires"
176
  msgstr ""
177
 
178
+ #: gallery-plugin.php:677
179
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
180
  msgstr ""
181
 
182
+ #: gallery-plugin.php:677
183
  msgid "Back to the WordPress"
184
  msgstr ""
185
 
186
+ #: gallery-plugin.php:677
187
  #, fuzzy
188
  msgid "Plugins page"
189
  msgstr "高级插件"
190
 
191
+ #: gallery-plugin.php:761
192
  msgid "Settings are saved"
193
  msgstr "设置已保存。"
194
 
195
+ #: gallery-plugin.php:774
196
  msgid "Gallery Settings"
197
  msgstr "图集设置"
198
 
199
+ #: gallery-plugin.php:777
200
  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:"
201
  msgstr "如果您想添加一个图集到页面或公告中,仅需要将图集简码放到页面或公告的内容中即可:"
202
 
203
+ #: gallery-plugin.php:781
204
  msgid "Image size for the album cover"
205
  msgstr "专辑封面图像的尺寸"
206
 
207
+ #: gallery-plugin.php:783
208
+ #: gallery-plugin.php:791
209
+ #: gallery-plugin.php:804
210
  msgid "Image size"
211
  msgstr "图像尺寸"
212
 
213
+ #: gallery-plugin.php:784
214
+ #: gallery-plugin.php:792
215
  msgid "Width (in px)"
216
  msgstr "宽度(像素)"
217
 
218
+ #: gallery-plugin.php:785
219
+ #: gallery-plugin.php:793
220
  msgid "Height (in px)"
221
  msgstr "高度(像素)"
222
 
223
+ #: gallery-plugin.php:789
224
  msgid "Gallery image size"
225
  msgstr "图集中图像的尺寸"
226
 
227
+ #: gallery-plugin.php:797
228
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
229
  msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
230
 
231
+ #: gallery-plugin.php:802
232
  msgid "Gallery image size in the lightbox"
233
  msgstr "灯箱中的图像尺寸"
234
 
235
+ #: gallery-plugin.php:805
236
  msgid "Max width (in px)"
237
  msgstr "最大宽度(像素)"
238
 
239
+ #: gallery-plugin.php:806
240
  msgid "Max height (in px)"
241
  msgstr "最大高度(像素)"
242
 
243
+ #: gallery-plugin.php:807
244
  msgid "Display a full size image in the lightbox"
245
  msgstr "在灯箱中显示全尺寸图像"
246
 
247
+ #: gallery-plugin.php:811
248
  msgid "Crop position"
249
  msgstr "裁剪位置"
250
 
251
+ #: gallery-plugin.php:813
252
  msgid "Horizontal"
253
  msgstr "水平"
254
 
255
+ #: gallery-plugin.php:815
256
  msgid "left"
257
  msgstr "左侧"
258
 
259
+ #: gallery-plugin.php:816
260
+ #: gallery-plugin.php:823
261
  msgid "center"
262
  msgstr "中心"
263
 
264
+ #: gallery-plugin.php:817
265
  msgid "right"
266
  msgstr "右侧"
267
 
268
+ #: gallery-plugin.php:820
269
  msgid "Vertical"
270
  msgstr "垂直"
271
 
272
+ #: gallery-plugin.php:822
273
  msgid "top"
274
  msgstr "顶部"
275
 
276
+ #: gallery-plugin.php:824
277
  msgid "bottom"
278
  msgstr "底部"
279
 
280
+ #: gallery-plugin.php:829
281
  msgid "Lightbox background"
282
  msgstr "灯箱背景"
283
 
284
+ #: gallery-plugin.php:831
285
  msgid "Default"
286
  msgstr "默认"
287
 
288
+ #: gallery-plugin.php:832
289
  msgid "Background transparency (from 0 to 1)"
290
  msgstr "背景透明度(值为 0 到 1)"
291
 
292
+ #: gallery-plugin.php:834
293
  msgid "Select a background color"
294
  msgstr "选择背景色"
295
 
296
+ #: gallery-plugin.php:836
297
  msgid "Background color"
298
  msgstr "背景色"
299
 
300
+ #: gallery-plugin.php:843
301
+ #: gallery-plugin.php:988
302
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
303
  msgstr "此功能在插件的高级版本中可用。如需查看详细信息,请点击以下链接"
304
 
305
+ #: gallery-plugin.php:850
306
  msgid "Images with border"
307
  msgstr "图像边缘"
308
 
309
+ #: gallery-plugin.php:853
310
  msgid "Border width in px, just numbers"
311
  msgstr "边缘宽度,以像素为单位,只能使用数字"
312
 
313
+ #: gallery-plugin.php:855
314
+ #: gallery-plugin.php:857
315
  msgid "Select a border color"
316
  msgstr "选择边缘颜色"
317
 
318
+ #: gallery-plugin.php:863
319
  msgid "Number of images in the row"
320
  msgstr "一行中图像的数量"
321
 
322
+ #: gallery-plugin.php:869
323
  msgid "Start slideshow"
324
  msgstr "播放幻灯片"
325
 
326
+ #: gallery-plugin.php:875
327
  msgid "Slideshow interval"
328
  msgstr "幻灯片播放间隔"
329
 
330
+ #: gallery-plugin.php:881
331
+ msgid "Use single lightbox for multiple galleries on one page"
332
+ msgstr ""
333
+
334
+ #: gallery-plugin.php:889
335
  msgid "Attachment ID"
336
  msgstr "附件ID"
337
 
338
+ #: gallery-plugin.php:890
339
  msgid "Image Name"
340
  msgstr "图像名称"
341
 
342
+ #: gallery-plugin.php:892
343
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
344
  msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
345
 
346
+ #: gallery-plugin.php:893
347
  msgid "Random"
348
  msgstr "随机"
349
 
350
+ #: gallery-plugin.php:897
351
  msgid "Sort images"
352
  msgstr "图像排序"
353
 
354
+ #: gallery-plugin.php:899
355
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
356
  msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
357
 
358
+ #: gallery-plugin.php:900
359
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
360
  msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
361
 
362
+ #: gallery-plugin.php:904
363
  msgid "Display text above the image"
364
  msgstr "在图像上方显示文本"
365
 
366
+ #: gallery-plugin.php:906
367
  #, fuzzy
368
  msgid "Turn off the checkbox, if you want to display text just in a lightbox"
369
  msgstr "如果您仅想在收藏夹中显示文本"
370
 
371
+ #: gallery-plugin.php:910
372
  msgid "Display the Back link"
373
  msgstr "显示返回链接"
374
 
375
+ #: gallery-plugin.php:916
376
  msgid "Display the Back link in the shortcode"
377
  msgstr "以简码方式显示返回链接"
378
 
379
+ #: gallery-plugin.php:922
380
  msgid "The Back link text"
381
  msgstr "返回链接文本"
382
 
383
+ #: gallery-plugin.php:928
384
  msgid "The Back link URL"
385
  msgstr "返回链接URL"
386
 
387
+ #: gallery-plugin.php:930
388
  msgid "Gallery page (Page with Gallery Template)"
389
  msgstr "图集页面(具有图集模板的页面)"
390
 
391
+ #: gallery-plugin.php:932
392
  msgid "(Full URL to custom page)"
393
  msgstr "(到自定义页面的完整地址)"
394
 
395
+ #: gallery-plugin.php:936
396
  msgid "The Read More link text"
397
  msgstr "阅读更多链接的文本"
398
 
399
+ #: gallery-plugin.php:942
400
  msgid "Add gallery to the search"
401
  msgstr ""
402
 
 
403
  #: gallery-plugin.php:958
404
+ #: gallery-plugin.php:961
405
+ #: gallery-plugin.php:965
406
  msgid "Using Custom Search powered by"
407
  msgstr ""
408
 
409
+ #: gallery-plugin.php:961
410
  msgid "Activate Custom Search"
411
  msgstr ""
412
 
413
+ #: gallery-plugin.php:965
414
  msgid "Download Custom Search"
415
  msgstr ""
416
 
417
+ #: gallery-plugin.php:972
418
  msgid "Display Like buttons in the lightbox"
419
  msgstr "在灯箱中显示[喜欢]按钮"
420
 
421
+ #: gallery-plugin.php:974
422
  msgid "FaceBook"
423
  msgstr "Facebook"
424
 
425
+ #: gallery-plugin.php:975
426
  msgid "Twitter"
427
  msgstr "Twitter"
428
 
429
+ #: gallery-plugin.php:976
430
  msgid "Pinterest"
431
  msgstr "Printerest"
432
 
433
+ #: gallery-plugin.php:977
434
  msgid "Google +1"
435
  msgstr "Google +1"
436
 
437
+ #: gallery-plugin.php:981
438
  #, fuzzy
439
  msgid "Slug for gallery item"
440
  msgstr "图集中图像的尺寸"
441
 
442
+ #: gallery-plugin.php:983
443
  msgid "for any structure of permalinks except the default structure"
444
  msgstr ""
445
 
446
+ #: gallery-plugin.php:996
447
  msgid "Save Changes"
448
  msgstr "保存修改"
449
 
450
+ #: gallery-plugin.php:1008
451
+ #: gallery-plugin.php:1023
452
  msgid "Settings"
453
  msgstr "设置"
454
 
455
+ #: gallery-plugin.php:1009
456
  msgid "FAQ"
457
  msgstr "常问问题"
458
 
459
+ #: gallery-plugin.php:1010
460
  msgid "Support"
461
  msgstr "支持"
462
 
463
+ #: gallery-plugin.php:1222
464
+ #: template/gallery-single-template.php:76
465
  msgid "Sorry, nothing found."
466
  msgstr "对不起 - 没有找到。"
467
 
468
+ #: gallery-plugin.php:1244
469
+ #: template/gallery-single-template.php:102
470
  msgid "Download high resolution image"
471
  msgstr "下载高分辨率图像"
472
 
473
+ #: gallery-plugin.php:1464
474
+ #, fuzzy
475
+ msgid "Learn More"
476
+ msgstr "阅读更多"
477
+
478
+ #: gallery-plugin.php:1466
479
+ msgid "It’s time to upgrade your <strong>Gallery plugin</strong> to <strong>PRO</strong> version!"
480
+ msgstr ""
481
+
482
+ #: gallery-plugin.php:1467
483
+ msgid "Extend standard plugin functionality with new great options."
484
+ msgstr ""
485
+
486
+ #: template/gallery-single-template.php:102
487
  msgid "Image"
488
  msgstr "图像"
489
 
496
  #~ msgstr "链接网址"
497
  #~ msgid "Activated plugins"
498
  #~ msgstr "已激活的插件"
 
 
499
  #~ msgid "Installed plugins"
500
  #~ msgstr "安装插件"
501
  #~ msgid "Recommended plugins"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.7.1
7
- Stable tag: 4.0.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -46,20 +46,10 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pl
46
  * Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
47
  * Bulgarian (bg_BG) (thanks to Petya)
48
  * Chinese (zh_CN) (thanks to <a href="mailto:mibcxb@gmail.com">Xiaobo Chen</a>)
49
- * Czech (cs_CZ) (thanks to Josef Sukdol)
50
- * Dutch (nl_NL) (thanks to <a href="mailto:ronald@hostingu.nl">HostingU, Ronald Verheul</a>)
51
  * French (fr_FR) (thanks to Didier, <a href="mailto:lcapronnier@yahoo.com">L Capronnier</a>)
52
- * Georgian (ka_GE) (thanks to Vako Patashuri)
53
  * German (de_DE) (thanks to Thomas Bludau, <a href="mailto:info@ahoidesign.de">Jonas Seemann</a>)
54
- * Hebrew (he_IL) (thanks to Sagive SEO)
55
- * Hungarian (hu_HU) (thanks to Mészöly Gábor)
56
- * Italian (it_IT) (thanks to Stefano Ferruggiara)
57
- * Lituanian (lt_LT) (thanks to Naglis Jonaitis)
58
- * Persian (fa_IR) (thanks to Einolah Kiamehr and Meisam)
59
- * Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
60
  * Russian (ru_RU)
61
  * Serbian (sr_RS) (thanks to <a href="mailto:andrijanan@webhostinggeeks.com">Andrijana Nikolic</a> www.webhostinggeeks.com )
62
- * Spanish (es) (thanks to Victor Garcia)
63
  * Turkish (tr) (thanks to <a href="mailto:ce.demirbilek@gmail.com">Ismail Demirbilek</a>)
64
  * Ukrainian (uk)
65
 
@@ -155,6 +145,10 @@ and add (for the themes Twenty Eleven or Twenty Ten):
155
 
156
  == Changelog ==
157
 
 
 
 
 
158
  = V4.0.7 - 15.11.2013 =
159
  * Bugfix : We fixed the bug of image count for lightbox when added multiple galleries on the one page.
160
 
@@ -365,6 +359,9 @@ and add (for the themes Twenty Eleven or Twenty Ten):
365
 
366
  == Upgrade Notice ==
367
 
 
 
 
368
  = V4.0.7 =
369
  We fixed the bug of image count for lightbox when added multiple galleries on the one page.
370
 
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.7.1
7
+ Stable tag: 4.0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
46
  * Brazilian Portuguese (pt_BR) (thanks to DJIO, www.djio.com.br)
47
  * Bulgarian (bg_BG) (thanks to Petya)
48
  * Chinese (zh_CN) (thanks to <a href="mailto:mibcxb@gmail.com">Xiaobo Chen</a>)
 
 
49
  * French (fr_FR) (thanks to Didier, <a href="mailto:lcapronnier@yahoo.com">L Capronnier</a>)
 
50
  * German (de_DE) (thanks to Thomas Bludau, <a href="mailto:info@ahoidesign.de">Jonas Seemann</a>)
 
 
 
 
 
 
51
  * Russian (ru_RU)
52
  * Serbian (sr_RS) (thanks to <a href="mailto:andrijanan@webhostinggeeks.com">Andrijana Nikolic</a> www.webhostinggeeks.com )
 
53
  * Turkish (tr) (thanks to <a href="mailto:ce.demirbilek@gmail.com">Ismail Demirbilek</a>)
54
  * Ukrainian (uk)
55
 
145
 
146
  == Changelog ==
147
 
148
+ = V4.0.8 - 22.11.2013 =
149
+ * NEW : Ability to turn on/off using single lightbox for all galleries on the one page.
150
+ * Update : BWS plugins section is updated.
151
+
152
  = V4.0.7 - 15.11.2013 =
153
  * Bugfix : We fixed the bug of image count for lightbox when added multiple galleries on the one page.
154
 
359
 
360
  == Upgrade Notice ==
361
 
362
+ = V4.0.8 =
363
+ Ability to turn on/off using single lightbox for all galleries on the one page. BWS plugins section is updated.
364
+
365
  = V4.0.7 =
366
  We fixed the bug of image count for lightbox when added multiple galleries on the one page.
367
 
screenshot-3.jpg CHANGED
Binary file
template/gallery-single-template.php CHANGED
@@ -11,61 +11,60 @@
11
  );
12
  $second_query = new WP_Query( $args );
13
  $gllr_options = get_option( 'gllr_options' );
14
- if ($second_query->have_posts()) : while ($second_query->have_posts()) : $second_query->the_post(); ?>
15
  <h1 class="home_page_title entry-header"><?php the_title(); ?></h1>
16
  <div class="gallery_box_single entry-content">
17
  <?php the_content();
18
  $posts = get_posts(array(
19
  "showposts" => -1,
20
- "what_to_show" => "posts",
21
  "post_status" => "inherit",
22
  "post_type" => "attachment",
23
- "orderby" => $gllr_options['order_by'],
24
- "order" => $gllr_options['order'],
25
- "post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
26
  "post_parent" => $post->ID
27
  ));
28
- if( count( $posts ) > 0 ) {
29
  $count_image_block = 0; ?>
30
  <div class="gallery clearfix">
31
- <?php foreach( $posts as $attachment ) {
32
  $key = "gllr_image_text";
33
  $link_key = "gllr_link_url";
34
  $alt_tag_key = "gllr_image_alt_tag";
35
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
36
  $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
37
  $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
38
- if( 1 == $gllr_options['border_images'] ){
39
- $gllr_border = 'border-width: '.$gllr_options['border_images_width'].'px; border-color:'.$gllr_options['border_images_color'].'';
40
  $gllr_border_images = $gllr_options['border_images_width'] * 2;
41
- }
42
- else{
43
  $gllr_border = '';
44
  $gllr_border_images = 0;
45
  }
46
- if( $count_image_block % $gllr_options['custom_image_row_count'] == 0 ) { ?>
47
  <div class="gllr_image_row">
48
  <?php } ?>
49
  <div class="gllr_image_block">
50
- <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+$gllr_border_images; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+$gllr_border_images; ?>px;">
51
- <?php if( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?>
52
  <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank">
53
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
54
  </a>
55
  <?php } else { ?>
56
- <a rel="gallery_fancybox_<?php echo $post->ID; ?>" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" >
57
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
58
  </a>
59
  <?php } ?>
60
  </p>
61
- <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+$gllr_border_images; ?>px; <?php if( 0 == $gllr_options["image_text"] ) echo "visibility:hidden;"; ?>" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
62
  </div>
63
- <?php if($count_image_block%$gllr_options['custom_image_row_count'] == $gllr_options['custom_image_row_count']-1 ) { ?>
64
  </div>
65
  <?php }
66
  $count_image_block++;
67
  }
68
- if($count_image_block > 0 && $count_image_block%$gllr_options['custom_image_row_count'] != 0) { ?>
69
  </div>
70
  <?php } ?>
71
  </div>
@@ -74,11 +73,11 @@
74
  <div class="clear"></div>
75
  <?php endwhile; else: ?>
76
  <div class="gallery_box_single">
77
- <p class="not_found"><?php _e('Sorry, nothing found.', 'gallery'); ?></p>
78
  </div>
79
  <?php endif; ?>
80
  <?php if ( 1 == $gllr_options['return_link'] ) {
81
- if( 'gallery_template_url' == $gllr_options["return_link_page"] ){
82
  global $wpdb;
83
  $parent = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id" ); ?>
84
  <div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
@@ -93,18 +92,18 @@
93
  <script type="text/javascript">
94
  (function($){
95
  $(document).ready(function(){
96
- $("a[rel=gallery_fancybox_<?php echo $post->ID; ?>]").fancybox({
97
- 'transitionIn' : 'elastic',
98
- 'transitionOut' : 'elastic',
99
- 'titlePosition' : 'inside',
100
- 'speedIn' : 500,
101
  'speedOut' : 300,
102
  'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
103
- return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + '<?php _e( "Image", "gallery"); ?> ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span><?php if( get_post_meta( $post->ID, 'gllr_download_link', true ) != '' ){?><br /><a href="'+$(currentOpts.orig).attr('rel')+'" target="_blank"><?php echo __('Download high resolution image', 'gallery'); ?> </a><?php } ?>';
104
- }<?php if( $gllr_options['start_slideshow'] == 1 ) { ?>,
105
  'onComplete': function() {
106
- clearTimeout(jQuery.fancybox.slider);
107
- jQuery.fancybox.slider=setTimeout("jQuery.fancybox.next()",<?php echo empty( $gllr_options['slideshow_interval'] )? 2000 : $gllr_options['slideshow_interval'] ; ?>);
108
  }<?php } ?>
109
  });
110
  });
11
  );
12
  $second_query = new WP_Query( $args );
13
  $gllr_options = get_option( 'gllr_options' );
14
+ if ( $second_query->have_posts() ) : while ( $second_query->have_posts() ) : $second_query->the_post(); ?>
15
  <h1 class="home_page_title entry-header"><?php the_title(); ?></h1>
16
  <div class="gallery_box_single entry-content">
17
  <?php the_content();
18
  $posts = get_posts(array(
19
  "showposts" => -1,
20
+ "what_to_show" => "posts",
21
  "post_status" => "inherit",
22
  "post_type" => "attachment",
23
+ "orderby" => $gllr_options['order_by'],
24
+ "order" => $gllr_options['order'],
25
+ "post_mime_type" => "image/jpeg,image/gif,image/jpg,image/png",
26
  "post_parent" => $post->ID
27
  ));
28
+ if ( count( $posts ) > 0 ) {
29
  $count_image_block = 0; ?>
30
  <div class="gallery clearfix">
31
+ <?php foreach ( $posts as $attachment ) {
32
  $key = "gllr_image_text";
33
  $link_key = "gllr_link_url";
34
  $alt_tag_key = "gllr_image_alt_tag";
35
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
36
  $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
37
  $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
38
+ if ( 1 == $gllr_options['border_images'] ) {
39
+ $gllr_border = 'border-width: ' . $gllr_options['border_images_width'] . 'px; border-color:' . $gllr_options['border_images_color'] . '';
40
  $gllr_border_images = $gllr_options['border_images_width'] * 2;
41
+ } else {
 
42
  $gllr_border = '';
43
  $gllr_border_images = 0;
44
  }
45
+ if ( $count_image_block % $gllr_options['custom_image_row_count'] == 0 ) { ?>
46
  <div class="gllr_image_row">
47
  <?php } ?>
48
  <div class="gllr_image_block">
49
+ <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0] + $gllr_border_images; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1] + $gllr_border_images; ?>px;">
50
+ <?php if ( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?>
51
  <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank">
52
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
53
  </a>
54
  <?php } else { ?>
55
+ <a rel="gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" >
56
  <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="<?php echo get_post_meta( $attachment->ID, $alt_tag_key, true ); ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
57
  </a>
58
  <?php } ?>
59
  </p>
60
+ <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0] + $gllr_border_images; ?>px; <?php if ( 0 == $gllr_options["image_text"] ) echo "visibility:hidden;"; ?>" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?>&nbsp;</div>
61
  </div>
62
+ <?php if ( $count_image_block%$gllr_options['custom_image_row_count'] == $gllr_options['custom_image_row_count']-1 ) { ?>
63
  </div>
64
  <?php }
65
  $count_image_block++;
66
  }
67
+ if ( $count_image_block > 0 && $count_image_block%$gllr_options['custom_image_row_count'] != 0 ) { ?>
68
  </div>
69
  <?php } ?>
70
  </div>
73
  <div class="clear"></div>
74
  <?php endwhile; else: ?>
75
  <div class="gallery_box_single">
76
+ <p class="not_found"><?php _e( 'Sorry, nothing found.', 'gallery' ); ?></p>
77
  </div>
78
  <?php endif; ?>
79
  <?php if ( 1 == $gllr_options['return_link'] ) {
80
+ if ( 'gallery_template_url' == $gllr_options["return_link_page"] ) {
81
  global $wpdb;
82
  $parent = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id" ); ?>
83
  <div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
92
  <script type="text/javascript">
93
  (function($){
94
  $(document).ready(function(){
95
+ $("a[rel=gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>]").fancybox({
96
+ 'transitionIn' : 'elastic',
97
+ 'transitionOut' : 'elastic',
98
+ 'titlePosition' : 'inside',
99
+ 'speedIn' : 500,
100
  'speedOut' : 300,
101
  'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
102
+ return '<span id="fancybox-title-inside">' + ( title.length ? title + '<br />' : '' ) + '<?php _e( "Image", "gallery"); ?> ' + ( currentIndex + 1 ) + ' / ' + currentArray.length + '</span><?php if( get_post_meta( $post->ID, 'gllr_download_link', true ) != '' ){?><br /><a href="' + $( currentOpts.orig ).attr('rel') + '" target="_blank"><?php echo __( 'Download high resolution image', 'gallery' ); ?> </a><?php } ?>';
103
+ }<?php if ( $gllr_options['start_slideshow'] == 1 ) { ?>,
104
  'onComplete': function() {
105
+ clearTimeout( jQuery.fancybox.slider );
106
+ jQuery.fancybox.slider = setTimeout("jQuery.fancybox.next()",<?php echo empty( $gllr_options['slideshow_interval'] )? 2000 : $gllr_options['slideshow_interval'] ; ?>);
107
  }<?php } ?>
108
  });
109
  });