Version Description
- 03.01.2017 =
- Update : Template files loading has been changed.
- Update : The French language file is updated.
- Update : All functionality for WordPress 4.7 was updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 4.4.7 |
Comparing to | |
See all releases |
Code changes from version 4.4.6 to 4.4.7
- bws_menu/bws_functions.php +143 -108
- bws_menu/bws_include.php +37 -18
- bws_menu/bws_menu.php +72 -70
- bws_menu/css/general_style.css +19 -19
- bws_menu/product_list.php +32 -19
- css/frontend_style.css +40 -10
- css/style.css +0 -12
- gallery-plugin.php +139 -261
- images/menu_single.png +0 -0
- inc/demo-data/class-bws-demo-data.php +25 -20
- inc/demo-data/demo-data.php +9 -9
- languages/gallery-plugin-bg_BG.mo +0 -0
- languages/gallery-plugin-bg_BG.po +238 -245
- languages/gallery-plugin-cs_CZ.mo +0 -0
- languages/gallery-plugin-cs_CZ.po +238 -245
- languages/gallery-plugin-de_DE.mo +0 -0
- languages/gallery-plugin-de_DE.po +239 -246
- languages/gallery-plugin-es_ES.mo +0 -0
- languages/gallery-plugin-es_ES.po +243 -248
- languages/gallery-plugin-fr_FR.mo +0 -0
- languages/gallery-plugin-fr_FR.po +260 -255
- languages/gallery-plugin-nl_NL.mo +0 -0
- languages/gallery-plugin-nl_NL.po +239 -245
- languages/gallery-plugin-pt_BR.mo +0 -0
- languages/gallery-plugin-pt_BR.po +243 -248
- languages/gallery-plugin-ru_RU.mo +0 -0
- languages/gallery-plugin-ru_RU.po +247 -248
- languages/gallery-plugin-sk_SK.mo +0 -0
- languages/gallery-plugin-sk_SK.po +238 -245
- languages/gallery-plugin-sl_SI.mo +0 -0
- languages/gallery-plugin-sl_SI.po +238 -245
- languages/gallery-plugin-sr_RS.mo +0 -0
- languages/gallery-plugin-sr_RS.po +238 -245
- languages/gallery-plugin-tr.mo +0 -0
- languages/gallery-plugin-tr.po +237 -244
- languages/gallery-plugin-uk.mo +0 -0
- languages/gallery-plugin-uk.po +244 -245
- languages/gallery-plugin-zh_CN.mo +0 -0
- languages/gallery-plugin-zh_CN.po +237 -244
- readme.txt +24 -11
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
- template/gallery-single-template.php +0 -21
- templates/gallery-single-template.php +23 -0
- {template → templates}/gallery-template.php +6 -5
bws_menu/bws_functions.php
CHANGED
@@ -3,8 +3,30 @@
|
|
3 |
* General functions for BestWebSoft plugins
|
4 |
*/
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
/* Internationalization, first(!) */
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
/**
|
10 |
* Function add BWS Plugins page - for old plugin version
|
@@ -33,7 +55,7 @@ if ( ! function_exists ( 'bws_general_menu' ) ) {
|
|
33 |
}
|
34 |
}
|
35 |
|
36 |
-
add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render',
|
37 |
|
38 |
add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
|
39 |
add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
|
@@ -68,7 +90,7 @@ if ( ! function_exists ( 'bws_wp_min_version_check' ) ) {
|
|
68 |
if ( is_plugin_active( $plugin_basename ) ) {
|
69 |
deactivate_plugins( $plugin_basename );
|
70 |
$admin_url = ( function_exists( 'get_admin_url' ) ) ? get_admin_url( null, 'plugins.php' ) : esc_url( '/wp-admin/plugins.php' );
|
71 |
-
wp_die(
|
72 |
sprintf(
|
73 |
"<strong>%s</strong> %s <strong>WordPress %s</strong> %s <br /><br />%s <a href='%s'>%s</a>.",
|
74 |
$plugin_info['Name'],
|
@@ -107,19 +129,19 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
|
|
107 |
}
|
108 |
|
109 |
/* banner_to_settings notice */
|
110 |
-
if ( ! empty( $bws_plugin_banner_to_settings ) ) {
|
111 |
if ( 1 == count( $bws_plugin_banner_to_settings ) ) { ?>
|
112 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
113 |
<div class="bws_banner_on_plugin_page bws_banner_to_settings">
|
114 |
<div class="icon">
|
115 |
<img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
|
116 |
-
</div>
|
117 |
<div class="text">
|
118 |
<strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $bws_plugin_banner_to_settings[0]['plugin_info']['Name']; ?> plugin!</strong><br />
|
119 |
-
<?php _e( "Let's get started", 'bestwebsoft' ); ?>:
|
120 |
-
<a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
|
121 |
<?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
|
122 |
-
<?php _e( 'or', 'bestwebsoft' ); ?>
|
123 |
<a href="<?php echo $bws_plugin_banner_to_settings[0]['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
|
124 |
<?php } ?>
|
125 |
</div>
|
@@ -129,34 +151,34 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
|
|
129 |
<?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
|
130 |
</form>
|
131 |
</div>
|
132 |
-
</div>
|
133 |
<?php } else { ?>
|
134 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
135 |
-
<div class="bws_banner_on_plugin_page bws_banner_to_settings_joint">
|
136 |
<form action="" method="post">
|
137 |
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
138 |
<div class="bws-text">
|
139 |
<div class="icon">
|
140 |
<span class="dashicons dashicons-admin-plugins"></span>
|
141 |
-
</div>
|
142 |
<strong><?php _e( 'Thank you for installing plugins by BestWebSoft!', 'bestwebsoft' ); ?></strong>
|
143 |
<div class="hide-if-no-js bws-more-links">
|
144 |
-
<a href="#" class="bws-more"><?php _e( 'More Details', 'bestwebsoft' ); ?></a>
|
145 |
-
<a href="#" class="bws-less hidden"><?php _e( 'Less Details', 'bestwebsoft' ); ?></a>
|
146 |
-
</div>
|
147 |
-
<?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
|
148 |
<div class="clear"></div>
|
149 |
</div>
|
150 |
<div class="bws-details hide-if-js">
|
151 |
-
<?php foreach ( $bws_plugin_banner_to_settings as $value ) { ?>
|
152 |
-
<div>
|
153 |
-
<strong><?php echo str_replace( ' by BestWebSoft', '', $value['plugin_info']['Name'] ); ?></strong> <a href="<?php echo $value['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
|
154 |
<?php if ( false != $value['post_type_url'] ) { ?>
|
155 |
 | <a target="_blank" href="<?php echo $value['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
|
156 |
<?php } ?>
|
157 |
<input type="hidden" name="bws_hide_settings_notice_<?php echo $value['plugin_options_name']; ?>" value="hide" />
|
158 |
-
</div>
|
159 |
-
<?php } ?>
|
160 |
</div>
|
161 |
</div>
|
162 |
</form>
|
@@ -169,7 +191,7 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
|
|
169 |
if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
170 |
function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url_or_slug ) {
|
171 |
global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
|
172 |
-
|
173 |
if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
|
174 |
if ( ! function_exists( 'bws_get_banner_array' ) )
|
175 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
@@ -189,7 +211,7 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
|
189 |
foreach ( $bstwbsftwppdtplgns_banner_array as $key => $value ) {
|
190 |
if ( $this_banner == $value[0] ) {
|
191 |
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
192 |
-
echo '<script type="text/javascript" src="' .
|
193 |
$bstwbsftwppdtplgns_cookie_add = true;
|
194 |
} ?>
|
195 |
<script type="text/javascript">
|
@@ -213,7 +235,7 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
|
213 |
<button class="<?php echo $this_banner_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
214 |
<div class="icon">
|
215 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
216 |
-
</div>
|
217 |
<div class="text"><?php
|
218 |
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
|
219 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
@@ -245,7 +267,7 @@ if ( ! function_exists( 'bws_plugin_reviews_block' ) ) {
|
|
245 |
</div>
|
246 |
<div class="bws-plugin-reviews-donate">
|
247 |
<?php _e( 'Donations play an important role in supporting great projects', 'bestwebsoft' ); ?>:
|
248 |
-
<a href="
|
249 |
</div>
|
250 |
</div>
|
251 |
<?php }
|
@@ -268,7 +290,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
268 |
if ( false !== $key ) {
|
269 |
unset( $plugin_options['hide_premium_options'][ $key ] );
|
270 |
}
|
271 |
-
|
272 |
if ( $is_network_option )
|
273 |
update_site_option( $plugin_options_name, $plugin_options );
|
274 |
else
|
@@ -279,7 +301,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
279 |
}
|
280 |
|
281 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
282 |
-
if ( '' != $bws_license_key ) {
|
283 |
if ( strlen( $bws_license_key ) != 18 ) {
|
284 |
$result['error'] = __( "Wrong license key", 'bestwebsoft' );
|
285 |
} else {
|
@@ -296,7 +318,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
296 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
297 |
|
298 |
$all_plugins = get_plugins();
|
299 |
-
|
300 |
if ( ! array_key_exists( $bws_license_plugin, $all_plugins ) ) {
|
301 |
$current = get_site_transient( 'update_plugins' );
|
302 |
if ( is_array( $all_plugins ) && !empty( $all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
|
@@ -317,7 +339,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
317 |
if ( is_array( $response ) && !empty( $response ) ) {
|
318 |
foreach ( $response as $key => $value ) {
|
319 |
if ( "wrong_license_key" == $value->package ) {
|
320 |
-
$result['error'] = __( "Wrong license key", 'bestwebsoft' );
|
321 |
} elseif ( "wrong_domain" == $value->package ) {
|
322 |
$result['error'] = __( "This license key is bind to another site", 'bestwebsoft' );
|
323 |
} elseif ( "you_are_banned" == $value->package ) {
|
@@ -334,8 +356,8 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
334 |
$url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
|
335 |
$uploadDir = wp_upload_dir();
|
336 |
$zip_name = explode( '/', $bws_license_plugin );
|
337 |
-
|
338 |
-
if ( !function_exists( 'curl_init' ) ) {
|
339 |
$received_content = file_get_contents( $url );
|
340 |
} else {
|
341 |
$ch = curl_init();
|
@@ -377,7 +399,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
377 |
|
378 |
/* activate Pro */
|
379 |
if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
|
380 |
-
if ( is_multisite() && is_plugin_active_for_network( plugin_basename
|
381 |
/* if multisite and free plugin is network activated */
|
382 |
$active_plugins = get_site_option( 'active_sitewide_plugins' );
|
383 |
$active_plugins[ $bws_license_plugin ] = time();
|
@@ -394,7 +416,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
394 |
}
|
395 |
}
|
396 |
} else {
|
397 |
-
$result['error'] = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
|
398 |
}
|
399 |
}
|
400 |
}
|
@@ -402,7 +424,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
402 |
$bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
|
403 |
/* activate Pro */
|
404 |
if ( ! is_plugin_active( $bws_license_plugin ) ) {
|
405 |
-
if ( is_multisite() && is_plugin_active_for_network( plugin_basename
|
406 |
/* if multisite and free plugin is network activated */
|
407 |
$network_wide = true;
|
408 |
} else {
|
@@ -454,7 +476,7 @@ if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
|
|
454 |
</script>
|
455 |
<p><?php _e( "Congratulations! Pro version of the plugin is successfully installed and activated.", 'bestwebsoft' ); ?></p>
|
456 |
<p>
|
457 |
-
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
458 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
459 |
</p>
|
460 |
<?php } else {
|
@@ -469,12 +491,12 @@ if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
|
|
469 |
<?php } ?>
|
470 |
<form method="post" action="">
|
471 |
<p>
|
472 |
-
<?php _e( 'Enter your license key to install and activate', 'bestwebsoft' ); ?>
|
473 |
-
<a href="http://bestwebsoft.com/products/wordpress/plugins/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&pn=<?php echo $link_pn; ?>&v=<?php echo $plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
|
474 |
<?php _e( 'version of the plugin.', 'bestwebsoft' ); ?><br />
|
475 |
<span class="bws_info">
|
476 |
-
<?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
|
477 |
-
<a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
|
478 |
<?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
|
479 |
</span>
|
480 |
</p>
|
@@ -514,8 +536,8 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
514 |
<?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ) . ' ';
|
515 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
516 |
<span class="bws_info">
|
517 |
-
<?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
|
518 |
-
<a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
|
519 |
<?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
|
520 |
</span>
|
521 |
</p>
|
@@ -545,7 +567,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
545 |
</script>
|
546 |
<p><?php _e( "Congratulations! The Pro license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
|
547 |
<p>
|
548 |
-
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
549 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
550 |
</p>
|
551 |
<?php }
|
@@ -559,7 +581,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
559 |
|
560 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
561 |
$license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
|
562 |
-
|
563 |
if ( '' != $license_key ) {
|
564 |
|
565 |
delete_transient( 'bws_plugins_update' );
|
@@ -587,7 +609,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
587 |
if ( is_array( $response ) && !empty( $response ) ) {
|
588 |
foreach ( $response as $key => $value ) {
|
589 |
if ( "wrong_license_key" == $value->package ) {
|
590 |
-
$result['error'] = __( 'Wrong license key.', 'bestwebsoft' );
|
591 |
} else if ( "wrong_domain" == $value->package ) {
|
592 |
$result['error'] = __( 'This license key is bind to another site.', 'bestwebsoft' );
|
593 |
} else if ( "time_out" == $value->package ) {
|
@@ -618,7 +640,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
618 |
if ( empty( $result['error'] ) ) {
|
619 |
if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
|
620 |
$bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
|
621 |
-
|
622 |
$file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
|
623 |
if ( $file ) {
|
624 |
@fwrite( $file, $license_key );
|
@@ -626,12 +648,12 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
626 |
}
|
627 |
$update_option = true;
|
628 |
}
|
629 |
-
|
630 |
-
if ( $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] != $value->time_out ) {
|
631 |
$bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
|
632 |
$update_option = true;
|
633 |
}
|
634 |
-
|
635 |
if ( isset( $update_option ) ) {
|
636 |
if ( is_multisite() )
|
637 |
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
@@ -741,7 +763,7 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
741 |
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
|
742 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
|
743 |
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
744 |
-
echo '<script type="text/javascript" src="' .
|
745 |
$bstwbsftwppdtplgns_cookie_add = true;
|
746 |
} ?>
|
747 |
<script type="text/javascript">
|
@@ -767,7 +789,7 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
767 |
<img title="" src="<?php echo $banner_url; ?>" alt="" />
|
768 |
</div>
|
769 |
<div class="text"><?php _e( "You license for", 'bestwebsoft' ); ?> <strong><?php echo $plugin_name; ?></strong> <?php echo __( "expires on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . ' ' . __( "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ); ?> <a target="_new" href="http://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
|
770 |
-
</div>
|
771 |
</div>
|
772 |
<?php }
|
773 |
}
|
@@ -783,7 +805,7 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
|
783 |
|
784 |
if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
|
785 |
return;
|
786 |
-
|
787 |
if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
|
788 |
$plugin_options['display_settings_notice'] = 0;
|
789 |
if ( $is_network_admin )
|
@@ -795,10 +817,10 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
|
795 |
|
796 |
if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
|
797 |
$banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
|
798 |
-
}
|
799 |
|
800 |
$bws_plugin_banner_to_settings[] = array(
|
801 |
-
'plugin_info' => $plugin_info,
|
802 |
'plugin_options_name' => $plugin_options_name,
|
803 |
'banner_url' => $banner_url_or_slug,
|
804 |
'settings_url' => $settings_url,
|
@@ -842,7 +864,7 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
|
|
842 |
|
843 |
if ( isset( $return ) )
|
844 |
return;
|
845 |
-
|
846 |
if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
|
847 |
$plugin_options['display_suggest_feature_banner'] = 0;
|
848 |
if ( $is_network_admin )
|
@@ -859,11 +881,11 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
|
|
859 |
<div class="bws_banner_on_plugin_page bws_suggest_feature_banner">
|
860 |
<div class="icon">
|
861 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
862 |
-
</div>
|
863 |
<div class="text">
|
864 |
<strong><?php _e( 'Thank you for choosing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
|
865 |
-
<?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
|
866 |
-
<a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
|
867 |
</div>
|
868 |
<form action="" method="post">
|
869 |
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
@@ -879,7 +901,7 @@ if ( ! function_exists( 'bws_show_settings_notice' ) ) {
|
|
879 |
function bws_show_settings_notice() { ?>
|
880 |
<div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
|
881 |
<p>
|
882 |
-
<strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
|
883 |
<a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
|
884 |
</p>
|
885 |
</div>
|
@@ -890,10 +912,10 @@ if ( ! function_exists( 'bws_hide_premium_options' ) ) {
|
|
890 |
function bws_hide_premium_options( $options ) {
|
891 |
if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
|
892 |
$options['hide_premium_options'] = array();
|
893 |
-
|
894 |
$options['hide_premium_options'][] = get_current_user_id();
|
895 |
|
896 |
-
return array(
|
897 |
'message' => __( 'You can always look at premium options by clicking on the "Show Pro features" in the "Go PRO" tab', 'bestwebsoft' ),
|
898 |
'options' => $options );
|
899 |
}
|
@@ -913,8 +935,8 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
913 |
|
914 |
if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
|
915 |
|
916 |
-
$plugin = isset( $_GET['bws_activate_plugin'] ) ? $_GET['bws_activate_plugin'] : '';
|
917 |
-
$result = activate_plugin( $plugin, '', is_network_admin() );
|
918 |
if ( is_wp_error( $result ) ) {
|
919 |
if ( 'unexpected_output' == $result->get_error_code() ) {
|
920 |
$redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
|
@@ -950,12 +972,12 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
950 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
951 |
function bws_admin_enqueue_scripts() {
|
952 |
global $wp_version;
|
953 |
-
wp_enqueue_style( 'bws-admin-css',
|
954 |
-
wp_enqueue_script( 'bws-admin-scripts',
|
955 |
|
956 |
if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) ) {
|
957 |
-
wp_enqueue_style( 'bws_menu_style',
|
958 |
-
wp_enqueue_script( 'bws_menu_script',
|
959 |
wp_enqueue_script( 'theme-install' );
|
960 |
add_thickbox();
|
961 |
wp_enqueue_script( 'plugin-install' );
|
@@ -975,16 +997,14 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
|
975 |
</style>
|
976 |
</noscript>
|
977 |
<?php }
|
978 |
-
if ( 4.2 > $wp_version ) {
|
979 |
-
$plugin_dir_array = explode( '/', plugin_basename( __FILE__ ) );
|
980 |
-
$plugin_dir = $plugin_dir_array[0]; ?>
|
981 |
<style type="text/css">
|
982 |
.bws_hide_settings_notice,
|
983 |
.bws_hide_premium_options {
|
984 |
width: 11px;
|
985 |
height: 11px;
|
986 |
border: none;
|
987 |
-
background: url("<?php echo
|
988 |
box-shadow: none;
|
989 |
float: right;
|
990 |
margin: 8px;
|
@@ -1004,11 +1024,11 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
|
1004 |
var bws_shortcode_button = {
|
1005 |
'label': '<?php esc_attr_e( "Add BWS Shortcode", "bestwebsoft" ); ?>',
|
1006 |
'title': '<?php esc_attr_e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
|
1007 |
-
'icon_url': '<?php echo
|
1008 |
'function_name': [
|
1009 |
<?php foreach ( $bws_shortcode_list as $key => $value ) {
|
1010 |
if ( isset( $value['js_function'] ) )
|
1011 |
-
echo "'" . $value['js_function'] . "',";
|
1012 |
} ?>
|
1013 |
],
|
1014 |
'wp_version' : '<?php echo $wp_version; ?>'
|
@@ -1022,9 +1042,9 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
|
1022 |
'actions' => array(
|
1023 |
'click' => false,
|
1024 |
'onload' => true
|
1025 |
-
),
|
1026 |
'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
|
1027 |
-
'position' => array(
|
1028 |
'edge' => 'right'
|
1029 |
),
|
1030 |
'set_timeout' => 2000
|
@@ -1033,14 +1053,14 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
|
1033 |
$tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
|
1034 |
bws_add_tooltip_in_admin( $tooltip_args );
|
1035 |
}
|
1036 |
-
}
|
1037 |
}
|
1038 |
}
|
1039 |
|
1040 |
if ( ! function_exists ( 'bws_plugins_include_codemirror' ) ) {
|
1041 |
function bws_plugins_include_codemirror() {
|
1042 |
-
wp_enqueue_style( 'codemirror.css',
|
1043 |
-
wp_enqueue_script( 'codemirror.js',
|
1044 |
}
|
1045 |
}
|
1046 |
|
@@ -1062,13 +1082,13 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
1062 |
if ( 3.3 > $wp_version )
|
1063 |
return;
|
1064 |
/* Default arguments */
|
1065 |
-
$tooltip_args_default = array(
|
1066 |
'tooltip_id' => false,
|
1067 |
-
'css_selector' => false,
|
1068 |
'actions' => array(
|
1069 |
'click' => true,
|
1070 |
'onload' => false,
|
1071 |
-
),
|
1072 |
'buttons' => array(
|
1073 |
'close' => array(
|
1074 |
'type' => 'dismiss',
|
@@ -1076,11 +1096,11 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
1076 |
),
|
1077 |
),
|
1078 |
'position' => array(
|
1079 |
-
'edge' => 'top',
|
1080 |
'align' => 'center',
|
1081 |
-
'pos-left' => 0,
|
1082 |
-
'pos-top' => 0,
|
1083 |
-
'zindex' => 10000
|
1084 |
),
|
1085 |
'set_timeout' => 0
|
1086 |
);
|
@@ -1146,7 +1166,7 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
1146 |
public function add_scripts() {
|
1147 |
global $bstwbsftwppdtplgns_tooltip_script_add;
|
1148 |
if ( ! isset( $bstwbsftwppdtplgns_tooltip_script_add ) ) {
|
1149 |
-
echo '<script type="text/javascript" src="' .
|
1150 |
$bstwbsftwppdtplgns_tooltip_script_add = true;
|
1151 |
}
|
1152 |
$tooltip_args = $this->tooltip_args; ?>
|
@@ -1163,9 +1183,9 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
1163 |
|
1164 |
if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
|
1165 |
function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
|
1166 |
-
<form method="post" action="">
|
1167 |
<p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
|
1168 |
-
<p>
|
1169 |
<input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
|
1170 |
</p>
|
1171 |
<input type="hidden" name="bws_restore_default" value="submit" />
|
@@ -1180,7 +1200,7 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
|
1180 |
<p><?php _e( 'Are you sure you want to restore all settings by default?', 'bestwebsoft' ) ?></p>
|
1181 |
<form method="post" action="">
|
1182 |
<p>
|
1183 |
-
<button class="button" name="bws_restore_confirm"><?php _e( 'Yes, restore all settings', 'bestwebsoft' ) ?></button>
|
1184 |
<button class="button" name="bws_restore_deny"><?php _e( 'No, go back to the settings page', 'bestwebsoft' ) ?></button>
|
1185 |
<?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
|
1186 |
</p>
|
@@ -1204,7 +1224,7 @@ if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
|
1204 |
|
1205 |
if ( ! function_exists( 'bws_add_buttons' ) ){
|
1206 |
function bws_add_buttons( $plugin_array ) {
|
1207 |
-
$plugin_array['add_bws_shortcode'] =
|
1208 |
return $plugin_array;
|
1209 |
}
|
1210 |
}
|
@@ -1218,7 +1238,7 @@ if ( ! function_exists( 'bws_register_buttons' ) ) {
|
|
1218 |
|
1219 |
/* Generate inline content for the popup window when the "bws shortcode" button is clicked */
|
1220 |
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
1221 |
-
function bws_shortcode_media_button_popup() {
|
1222 |
global $bws_shortcode_list, $wp_version;
|
1223 |
if ( $wp_version < '3.3' )
|
1224 |
return;
|
@@ -1255,7 +1275,7 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
|
1255 |
if ( $wp_version < '3.9' ) { ?>
|
1256 |
<script type="text/javascript">
|
1257 |
(function($){
|
1258 |
-
$( '.bws_shortcode_insert' ).on( 'click',function() {
|
1259 |
var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
|
1260 |
if ( '' != shortcode ) {
|
1261 |
/* insert shortcode to tinymce */
|
@@ -1263,14 +1283,14 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
|
1263 |
$( 'textarea#content' ).val( shortcode );
|
1264 |
} else {
|
1265 |
tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
|
1266 |
-
}
|
1267 |
}
|
1268 |
/* close the thickbox after adding shortcode to editor */
|
1269 |
self.parent.tb_remove();
|
1270 |
});
|
1271 |
})(jQuery);
|
1272 |
</script>
|
1273 |
-
<?php }
|
1274 |
}
|
1275 |
}
|
1276 |
|
@@ -1281,7 +1301,7 @@ if ( ! function_exists( 'bws_help_tab' ) ) {
|
|
1281 |
|
1282 |
$content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
|
1283 |
|
1284 |
-
$screen->add_help_tab(
|
1285 |
array(
|
1286 |
'id' => $args['id'] . '_help_tab',
|
1287 |
'title' => __( 'FAQ', 'bestwebsoft' ),
|
@@ -1321,14 +1341,14 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1321 |
if ( ! file_exists( $index_file ) ) {
|
1322 |
if ( $f = fopen( $index_file, 'w+' ) )
|
1323 |
fclose( $f );
|
1324 |
-
}
|
1325 |
}
|
1326 |
|
1327 |
$css_file = 'bws-custom-code.css';
|
1328 |
$real_css_file = $folder . '/' . $css_file;
|
1329 |
|
1330 |
-
$php_file = 'bws-custom-code.php';
|
1331 |
-
$real_php_file = $folder . '/' . $php_file;
|
1332 |
|
1333 |
$is_multisite = is_multisite();
|
1334 |
if ( $is_multisite )
|
@@ -1337,7 +1357,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1337 |
if ( isset( $_REQUEST['bws_update_custom_code'] ) && check_admin_referer( 'bws_update_' . $css_file ) ) {
|
1338 |
|
1339 |
/* CSS */
|
1340 |
-
$newcontent_css = wp_unslash( $_POST['bws_newcontent_css'] );
|
1341 |
if ( ! empty( $newcontent_css ) && isset( $_REQUEST['bws_custom_css_active'] ) ) {
|
1342 |
if ( $is_multisite )
|
1343 |
$bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
|
@@ -1388,7 +1408,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1388 |
}
|
1389 |
} else {
|
1390 |
$error .= __( 'Not enough permissions to create the file', 'bestwebsoft' ) . ' ' . $index_file . '. ';
|
1391 |
-
}
|
1392 |
|
1393 |
if ( ! empty( $error ) )
|
1394 |
$error .= ' <a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">' . __( 'Learn more', 'bestwebsoft' ) . '</a>';
|
@@ -1420,9 +1440,9 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1420 |
|
1421 |
if ( ! empty( $message ) ) { ?>
|
1422 |
<div id="message" class="below-h2 updated notice is-dismissible"><p><?php echo $message; ?></p></div>
|
1423 |
-
<?php } ?>
|
1424 |
<form action="" method="post">
|
1425 |
-
<?php foreach ( array( 'css', 'php' ) as $extension ) { ?>
|
1426 |
<p>
|
1427 |
<?php if ( 'css' == $extension )
|
1428 |
_e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
|
@@ -1440,14 +1460,14 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1440 |
<textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
|
1441 |
<p class="description">
|
1442 |
<a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
|
1443 |
-
<?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
|
1444 |
</a>
|
1445 |
-
</p>
|
1446 |
<?php }
|
1447 |
if ( ( ! file_exists( $real_css_file ) || is_writeable( $real_css_file ) ) && ( ! file_exists( $real_php_file ) || is_writeable( $real_php_file ) ) ) { ?>
|
1448 |
<p class="submit">
|
1449 |
-
<input type="hidden" name="bws_update_custom_code" value="submit" />
|
1450 |
-
<?php submit_button( __( 'Save Changes', 'bestwebsoft' ), 'primary', 'submit', false );
|
1451 |
wp_nonce_field( 'bws_update_' . $css_file ); ?>
|
1452 |
</p>
|
1453 |
<?php } else { ?>
|
@@ -1456,7 +1476,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
|
|
1456 |
'</a>' ); ?></em></p>
|
1457 |
<?php } ?>
|
1458 |
</form>
|
1459 |
-
<?php }
|
1460 |
}
|
1461 |
|
1462 |
if ( ! function_exists( 'bws_enqueue_custom_code_css' ) ) {
|
@@ -1496,7 +1516,7 @@ if ( ! function_exists( 'bws_enqueue_custom_code_php' ) ) {
|
|
1496 |
$blog_id = get_current_blog_id();
|
1497 |
|
1498 |
if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1499 |
-
|
1500 |
if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1501 |
if ( ! defined( 'BWS_GLOBAL' ) )
|
1502 |
define( 'BWS_GLOBAL', true );
|
@@ -1541,7 +1561,7 @@ if ( ! function_exists( 'bws_delete_plugin' ) ) {
|
|
1541 |
/* if empty ['bws_menu']['version'] - there is no other bws plugins - delete all */
|
1542 |
if ( empty( $bstwbsftwppdtplgns_options['bws_menu']['version'] ) ) {
|
1543 |
/* remove options */
|
1544 |
-
if ( $is_multisite )
|
1545 |
delete_site_option( 'bstwbsftwppdtplgns_options' );
|
1546 |
else
|
1547 |
delete_option( 'bstwbsftwppdtplgns_options' );
|
@@ -1570,7 +1590,22 @@ if ( ! function_exists( 'bws_delete_plugin' ) ) {
|
|
1570 |
rmdir( $folder );
|
1571 |
}
|
1572 |
}
|
1573 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1574 |
}
|
1575 |
}
|
1576 |
|
3 |
* General functions for BestWebSoft plugins
|
4 |
*/
|
5 |
|
6 |
+
/**
|
7 |
+
* Function to add 'bestwebsoft' slug for BWS_Menu MO file if BWS_Menu loaded from theme.
|
8 |
+
*
|
9 |
+
* @since 1.9.7
|
10 |
+
*/
|
11 |
+
if ( ! function_exists ( 'bws_get_mofile' ) ) {
|
12 |
+
function bws_get_mofile( $mofile, $domain ) {
|
13 |
+
if ( 'bestwebsoft' == $domain ) {
|
14 |
+
$locale = get_locale();
|
15 |
+
return str_replace( $locale, "bestwebsoft-{$locale}", $mofile );
|
16 |
+
}
|
17 |
+
|
18 |
+
return $mofile;
|
19 |
+
}
|
20 |
+
}
|
21 |
+
|
22 |
/* Internationalization, first(!) */
|
23 |
+
if ( isset( $bws_menu_source ) && 'themes' == $bws_menu_source ) {
|
24 |
+
add_filter( 'load_textdomain_mofile', 'bws_get_mofile', 10, 2 );
|
25 |
+
load_theme_textdomain( 'bestwebsoft', get_stylesheet_directory() . '/inc/bws_menu/languages' );
|
26 |
+
remove_filter( 'load_textdomain_mofile', 'bws_get_mofile' );
|
27 |
+
} else {
|
28 |
+
load_plugin_textdomain( 'bestwebsoft', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
29 |
+
}
|
30 |
|
31 |
/**
|
32 |
* Function add BWS Plugins page - for old plugin version
|
55 |
}
|
56 |
}
|
57 |
|
58 |
+
add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', bws_menu_url( 'images/logo-white-min.png' ), '1001' );
|
59 |
|
60 |
add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
|
61 |
add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
|
90 |
if ( is_plugin_active( $plugin_basename ) ) {
|
91 |
deactivate_plugins( $plugin_basename );
|
92 |
$admin_url = ( function_exists( 'get_admin_url' ) ) ? get_admin_url( null, 'plugins.php' ) : esc_url( '/wp-admin/plugins.php' );
|
93 |
+
wp_die(
|
94 |
sprintf(
|
95 |
"<strong>%s</strong> %s <strong>WordPress %s</strong> %s <br /><br />%s <a href='%s'>%s</a>.",
|
96 |
$plugin_info['Name'],
|
129 |
}
|
130 |
|
131 |
/* banner_to_settings notice */
|
132 |
+
if ( ! empty( $bws_plugin_banner_to_settings ) ) {
|
133 |
if ( 1 == count( $bws_plugin_banner_to_settings ) ) { ?>
|
134 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
135 |
<div class="bws_banner_on_plugin_page bws_banner_to_settings">
|
136 |
<div class="icon">
|
137 |
<img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
|
138 |
+
</div>
|
139 |
<div class="text">
|
140 |
<strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $bws_plugin_banner_to_settings[0]['plugin_info']['Name']; ?> plugin!</strong><br />
|
141 |
+
<?php _e( "Let's get started", 'bestwebsoft' ); ?>:
|
142 |
+
<a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
|
143 |
<?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
|
144 |
+
<?php _e( 'or', 'bestwebsoft' ); ?>
|
145 |
<a href="<?php echo $bws_plugin_banner_to_settings[0]['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
|
146 |
<?php } ?>
|
147 |
</div>
|
151 |
<?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
|
152 |
</form>
|
153 |
</div>
|
154 |
+
</div>
|
155 |
<?php } else { ?>
|
156 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
157 |
+
<div class="bws_banner_on_plugin_page bws_banner_to_settings_joint">
|
158 |
<form action="" method="post">
|
159 |
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
160 |
<div class="bws-text">
|
161 |
<div class="icon">
|
162 |
<span class="dashicons dashicons-admin-plugins"></span>
|
163 |
+
</div>
|
164 |
<strong><?php _e( 'Thank you for installing plugins by BestWebSoft!', 'bestwebsoft' ); ?></strong>
|
165 |
<div class="hide-if-no-js bws-more-links">
|
166 |
+
<a href="#" class="bws-more"><?php _e( 'More Details', 'bestwebsoft' ); ?></a>
|
167 |
+
<a href="#" class="bws-less hidden"><?php _e( 'Less Details', 'bestwebsoft' ); ?></a>
|
168 |
+
</div>
|
169 |
+
<?php wp_nonce_field( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ); ?>
|
170 |
<div class="clear"></div>
|
171 |
</div>
|
172 |
<div class="bws-details hide-if-js">
|
173 |
+
<?php foreach ( $bws_plugin_banner_to_settings as $value ) { ?>
|
174 |
+
<div>
|
175 |
+
<strong><?php echo str_replace( ' by BestWebSoft', '', $value['plugin_info']['Name'] ); ?></strong> <a href="<?php echo $value['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
|
176 |
<?php if ( false != $value['post_type_url'] ) { ?>
|
177 |
 | <a target="_blank" href="<?php echo $value['post_type_url']; ?>"><?php _e( 'Add New', 'bestwebsoft' ); ?></a>
|
178 |
<?php } ?>
|
179 |
<input type="hidden" name="bws_hide_settings_notice_<?php echo $value['plugin_options_name']; ?>" value="hide" />
|
180 |
+
</div>
|
181 |
+
<?php } ?>
|
182 |
</div>
|
183 |
</div>
|
184 |
</form>
|
191 |
if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
192 |
function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url_or_slug ) {
|
193 |
global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
|
194 |
+
|
195 |
if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
|
196 |
if ( ! function_exists( 'bws_get_banner_array' ) )
|
197 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
211 |
foreach ( $bstwbsftwppdtplgns_banner_array as $key => $value ) {
|
212 |
if ( $this_banner == $value[0] ) {
|
213 |
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
214 |
+
echo '<script type="text/javascript" src="' . bws_menu_url( 'js/c_o_o_k_i_e.js' ) . '"></script>';
|
215 |
$bstwbsftwppdtplgns_cookie_add = true;
|
216 |
} ?>
|
217 |
<script type="text/javascript">
|
235 |
<button class="<?php echo $this_banner_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
236 |
<div class="icon">
|
237 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
238 |
+
</div>
|
239 |
<div class="text"><?php
|
240 |
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>Pro</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
|
241 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
267 |
</div>
|
268 |
<div class="bws-plugin-reviews-donate">
|
269 |
<?php _e( 'Donations play an important role in supporting great projects', 'bestwebsoft' ); ?>:
|
270 |
+
<a href="http://bestwebsoft.com/donate/">Donate</a>
|
271 |
</div>
|
272 |
</div>
|
273 |
<?php }
|
290 |
if ( false !== $key ) {
|
291 |
unset( $plugin_options['hide_premium_options'][ $key ] );
|
292 |
}
|
293 |
+
|
294 |
if ( $is_network_option )
|
295 |
update_site_option( $plugin_options_name, $plugin_options );
|
296 |
else
|
301 |
}
|
302 |
|
303 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
304 |
+
if ( '' != $bws_license_key ) {
|
305 |
if ( strlen( $bws_license_key ) != 18 ) {
|
306 |
$result['error'] = __( "Wrong license key", 'bestwebsoft' );
|
307 |
} else {
|
318 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
319 |
|
320 |
$all_plugins = get_plugins();
|
321 |
+
|
322 |
if ( ! array_key_exists( $bws_license_plugin, $all_plugins ) ) {
|
323 |
$current = get_site_transient( 'update_plugins' );
|
324 |
if ( is_array( $all_plugins ) && !empty( $all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
|
339 |
if ( is_array( $response ) && !empty( $response ) ) {
|
340 |
foreach ( $response as $key => $value ) {
|
341 |
if ( "wrong_license_key" == $value->package ) {
|
342 |
+
$result['error'] = __( "Wrong license key", 'bestwebsoft' );
|
343 |
} elseif ( "wrong_domain" == $value->package ) {
|
344 |
$result['error'] = __( "This license key is bind to another site", 'bestwebsoft' );
|
345 |
} elseif ( "you_are_banned" == $value->package ) {
|
356 |
$url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
|
357 |
$uploadDir = wp_upload_dir();
|
358 |
$zip_name = explode( '/', $bws_license_plugin );
|
359 |
+
|
360 |
+
if ( !function_exists( 'curl_init' ) ) {
|
361 |
$received_content = file_get_contents( $url );
|
362 |
} else {
|
363 |
$ch = curl_init();
|
399 |
|
400 |
/* activate Pro */
|
401 |
if ( file_exists( WP_PLUGIN_DIR . '/' . $zip_name[0] ) ) {
|
402 |
+
if ( is_multisite() && is_plugin_active_for_network( $plugin_basename ) ) {
|
403 |
/* if multisite and free plugin is network activated */
|
404 |
$active_plugins = get_site_option( 'active_sitewide_plugins' );
|
405 |
$active_plugins[ $bws_license_plugin ] = time();
|
416 |
}
|
417 |
}
|
418 |
} else {
|
419 |
+
$result['error'] = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
|
420 |
}
|
421 |
}
|
422 |
}
|
424 |
$bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
|
425 |
/* activate Pro */
|
426 |
if ( ! is_plugin_active( $bws_license_plugin ) ) {
|
427 |
+
if ( is_multisite() && is_plugin_active_for_network( $plugin_basename ) ) {
|
428 |
/* if multisite and free plugin is network activated */
|
429 |
$network_wide = true;
|
430 |
} else {
|
476 |
</script>
|
477 |
<p><?php _e( "Congratulations! Pro version of the plugin is successfully installed and activated.", 'bestwebsoft' ); ?></p>
|
478 |
<p>
|
479 |
+
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $pro_page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
480 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
481 |
</p>
|
482 |
<?php } else {
|
491 |
<?php } ?>
|
492 |
<form method="post" action="">
|
493 |
<p>
|
494 |
+
<?php _e( 'Enter your license key to install and activate', 'bestwebsoft' ); ?>
|
495 |
+
<a href="http://bestwebsoft.com/products/wordpress/plugins/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&pn=<?php echo $link_pn; ?>&v=<?php echo $plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="<?php echo $plugin_info["Name"]; ?> Pro">Pro</a>
|
496 |
<?php _e( 'version of the plugin.', 'bestwebsoft' ); ?><br />
|
497 |
<span class="bws_info">
|
498 |
+
<?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
|
499 |
+
<a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
|
500 |
<?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
|
501 |
</span>
|
502 |
</p>
|
536 |
<?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/wordpress/plugins/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">Pro</a>' ) . ' ';
|
537 |
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
538 |
<span class="bws_info">
|
539 |
+
<?php _e( 'License key can be found in the', 'bestwebsoft' ); ?>
|
540 |
+
<a href="http://bestwebsoft.com/wp-login.php">Client Area</a>
|
541 |
<?php _e( '(your username is the email address specified during the purchase).', 'bestwebsoft' ); ?>
|
542 |
</span>
|
543 |
</p>
|
567 |
</script>
|
568 |
<p><?php _e( "Congratulations! The Pro license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
|
569 |
<p>
|
570 |
+
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
571 |
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
572 |
</p>
|
573 |
<?php }
|
581 |
|
582 |
if ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( $plugin_basename, 'bws_license_nonce_name' ) ) {
|
583 |
$license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
|
584 |
+
|
585 |
if ( '' != $license_key ) {
|
586 |
|
587 |
delete_transient( 'bws_plugins_update' );
|
609 |
if ( is_array( $response ) && !empty( $response ) ) {
|
610 |
foreach ( $response as $key => $value ) {
|
611 |
if ( "wrong_license_key" == $value->package ) {
|
612 |
+
$result['error'] = __( 'Wrong license key.', 'bestwebsoft' );
|
613 |
} else if ( "wrong_domain" == $value->package ) {
|
614 |
$result['error'] = __( 'This license key is bind to another site.', 'bestwebsoft' );
|
615 |
} else if ( "time_out" == $value->package ) {
|
640 |
if ( empty( $result['error'] ) ) {
|
641 |
if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
|
642 |
$bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
|
643 |
+
|
644 |
$file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
|
645 |
if ( $file ) {
|
646 |
@fwrite( $file, $license_key );
|
648 |
}
|
649 |
$update_option = true;
|
650 |
}
|
651 |
+
|
652 |
+
if ( ! isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] ) || $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] != $value->time_out ) {
|
653 |
$bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
|
654 |
$update_option = true;
|
655 |
}
|
656 |
+
|
657 |
if ( isset( $update_option ) ) {
|
658 |
if ( is_multisite() )
|
659 |
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
763 |
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_cookie_add;
|
764 |
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") . '+1 month' ) ) && ( strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) > strtotime( date("m/d/Y") ) ) ) {
|
765 |
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
766 |
+
echo '<script type="text/javascript" src="' . bws_menu_url( 'js/c_o_o_k_i_e.js' ) . '"></script>';
|
767 |
$bstwbsftwppdtplgns_cookie_add = true;
|
768 |
} ?>
|
769 |
<script type="text/javascript">
|
789 |
<img title="" src="<?php echo $banner_url; ?>" alt="" />
|
790 |
</div>
|
791 |
<div class="text"><?php _e( "You license for", 'bestwebsoft' ); ?> <strong><?php echo $plugin_name; ?></strong> <?php echo __( "expires on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . ' ' . __( "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ); ?> <a target="_new" href="http://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
|
792 |
+
</div>
|
793 |
</div>
|
794 |
<?php }
|
795 |
}
|
805 |
|
806 |
if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
|
807 |
return;
|
808 |
+
|
809 |
if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
|
810 |
$plugin_options['display_settings_notice'] = 0;
|
811 |
if ( $is_network_admin )
|
817 |
|
818 |
if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
|
819 |
$banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
|
820 |
+
}
|
821 |
|
822 |
$bws_plugin_banner_to_settings[] = array(
|
823 |
+
'plugin_info' => $plugin_info,
|
824 |
'plugin_options_name' => $plugin_options_name,
|
825 |
'banner_url' => $banner_url_or_slug,
|
826 |
'settings_url' => $settings_url,
|
864 |
|
865 |
if ( isset( $return ) )
|
866 |
return;
|
867 |
+
|
868 |
if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
|
869 |
$plugin_options['display_suggest_feature_banner'] = 0;
|
870 |
if ( $is_network_admin )
|
881 |
<div class="bws_banner_on_plugin_page bws_suggest_feature_banner">
|
882 |
<div class="icon">
|
883 |
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
884 |
+
</div>
|
885 |
<div class="text">
|
886 |
<strong><?php _e( 'Thank you for choosing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
|
887 |
+
<?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
|
888 |
+
<a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
|
889 |
</div>
|
890 |
<form action="" method="post">
|
891 |
<button class="notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'bestwebsoft' ); ?>"></button>
|
901 |
function bws_show_settings_notice() { ?>
|
902 |
<div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
|
903 |
<p>
|
904 |
+
<strong><?php _e( 'Notice', 'bestwebsoft' ); ?></strong>: <?php _e( "The plugin's settings have been changed.", 'bestwebsoft' ); ?>
|
905 |
<a class="bws_save_anchor" href="#bws-submit-button"><?php _e( 'Save Changes', 'bestwebsoft' ); ?></a>
|
906 |
</p>
|
907 |
</div>
|
912 |
function bws_hide_premium_options( $options ) {
|
913 |
if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
|
914 |
$options['hide_premium_options'] = array();
|
915 |
+
|
916 |
$options['hide_premium_options'][] = get_current_user_id();
|
917 |
|
918 |
+
return array(
|
919 |
'message' => __( 'You can always look at premium options by clicking on the "Show Pro features" in the "Go PRO" tab', 'bestwebsoft' ),
|
920 |
'options' => $options );
|
921 |
}
|
935 |
|
936 |
if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
|
937 |
|
938 |
+
$plugin = isset( $_GET['bws_activate_plugin'] ) ? $_GET['bws_activate_plugin'] : '';
|
939 |
+
$result = activate_plugin( $plugin, '', is_network_admin() );
|
940 |
if ( is_wp_error( $result ) ) {
|
941 |
if ( 'unexpected_output' == $result->get_error_code() ) {
|
942 |
$redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
|
972 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
973 |
function bws_admin_enqueue_scripts() {
|
974 |
global $wp_version;
|
975 |
+
wp_enqueue_style( 'bws-admin-css', bws_menu_url( 'css/general_style.css' ) );
|
976 |
+
wp_enqueue_script( 'bws-admin-scripts', bws_menu_url( 'js/general_script.js' ), array( 'jquery' ) );
|
977 |
|
978 |
if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) ) {
|
979 |
+
wp_enqueue_style( 'bws_menu_style', bws_menu_url( 'css/style.css' ) );
|
980 |
+
wp_enqueue_script( 'bws_menu_script', bws_menu_url( 'js/bws_menu.js' ) );
|
981 |
wp_enqueue_script( 'theme-install' );
|
982 |
add_thickbox();
|
983 |
wp_enqueue_script( 'plugin-install' );
|
997 |
</style>
|
998 |
</noscript>
|
999 |
<?php }
|
1000 |
+
if ( 4.2 > $wp_version ) { ?>
|
|
|
|
|
1001 |
<style type="text/css">
|
1002 |
.bws_hide_settings_notice,
|
1003 |
.bws_hide_premium_options {
|
1004 |
width: 11px;
|
1005 |
height: 11px;
|
1006 |
border: none;
|
1007 |
+
background: url("<?php echo bws_menu_url( 'images/close_banner.png' ); ?>") no-repeat center center;
|
1008 |
box-shadow: none;
|
1009 |
float: right;
|
1010 |
margin: 8px;
|
1024 |
var bws_shortcode_button = {
|
1025 |
'label': '<?php esc_attr_e( "Add BWS Shortcode", "bestwebsoft" ); ?>',
|
1026 |
'title': '<?php esc_attr_e( "Add BWS Plugins Shortcode", "bestwebsoft" ); ?>',
|
1027 |
+
'icon_url': '<?php echo bws_menu_url( "images/shortcode-icon.png" ); ?>',
|
1028 |
'function_name': [
|
1029 |
<?php foreach ( $bws_shortcode_list as $key => $value ) {
|
1030 |
if ( isset( $value['js_function'] ) )
|
1031 |
+
echo "'" . $value['js_function'] . "',";
|
1032 |
} ?>
|
1033 |
],
|
1034 |
'wp_version' : '<?php echo $wp_version; ?>'
|
1042 |
'actions' => array(
|
1043 |
'click' => false,
|
1044 |
'onload' => true
|
1045 |
+
),
|
1046 |
'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
|
1047 |
+
'position' => array(
|
1048 |
'edge' => 'right'
|
1049 |
),
|
1050 |
'set_timeout' => 2000
|
1053 |
$tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
|
1054 |
bws_add_tooltip_in_admin( $tooltip_args );
|
1055 |
}
|
1056 |
+
}
|
1057 |
}
|
1058 |
}
|
1059 |
|
1060 |
if ( ! function_exists ( 'bws_plugins_include_codemirror' ) ) {
|
1061 |
function bws_plugins_include_codemirror() {
|
1062 |
+
wp_enqueue_style( 'codemirror.css', bws_menu_url( 'css/codemirror.css' ) );
|
1063 |
+
wp_enqueue_script( 'codemirror.js', bws_menu_url( 'js/codemirror.js' ), array( 'jquery' ) );
|
1064 |
}
|
1065 |
}
|
1066 |
|
1082 |
if ( 3.3 > $wp_version )
|
1083 |
return;
|
1084 |
/* Default arguments */
|
1085 |
+
$tooltip_args_default = array(
|
1086 |
'tooltip_id' => false,
|
1087 |
+
'css_selector' => false,
|
1088 |
'actions' => array(
|
1089 |
'click' => true,
|
1090 |
'onload' => false,
|
1091 |
+
),
|
1092 |
'buttons' => array(
|
1093 |
'close' => array(
|
1094 |
'type' => 'dismiss',
|
1096 |
),
|
1097 |
),
|
1098 |
'position' => array(
|
1099 |
+
'edge' => 'top',
|
1100 |
'align' => 'center',
|
1101 |
+
'pos-left' => 0,
|
1102 |
+
'pos-top' => 0,
|
1103 |
+
'zindex' => 10000
|
1104 |
),
|
1105 |
'set_timeout' => 0
|
1106 |
);
|
1166 |
public function add_scripts() {
|
1167 |
global $bstwbsftwppdtplgns_tooltip_script_add;
|
1168 |
if ( ! isset( $bstwbsftwppdtplgns_tooltip_script_add ) ) {
|
1169 |
+
echo '<script type="text/javascript" src="' . bws_menu_url( 'js/bws_tooltip.js' ) . '"></script>';
|
1170 |
$bstwbsftwppdtplgns_tooltip_script_add = true;
|
1171 |
}
|
1172 |
$tooltip_args = $this->tooltip_args; ?>
|
1183 |
|
1184 |
if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
|
1185 |
function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
|
1186 |
+
<form method="post" action="">
|
1187 |
<p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
|
1188 |
+
<p>
|
1189 |
<input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
|
1190 |
</p>
|
1191 |
<input type="hidden" name="bws_restore_default" value="submit" />
|
1200 |
<p><?php _e( 'Are you sure you want to restore all settings by default?', 'bestwebsoft' ) ?></p>
|
1201 |
<form method="post" action="">
|
1202 |
<p>
|
1203 |
+
<button class="button button-primary" name="bws_restore_confirm"><?php _e( 'Yes, restore all settings', 'bestwebsoft' ) ?></button>
|
1204 |
<button class="button" name="bws_restore_deny"><?php _e( 'No, go back to the settings page', 'bestwebsoft' ) ?></button>
|
1205 |
<?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
|
1206 |
</p>
|
1224 |
|
1225 |
if ( ! function_exists( 'bws_add_buttons' ) ){
|
1226 |
function bws_add_buttons( $plugin_array ) {
|
1227 |
+
$plugin_array['add_bws_shortcode'] = bws_menu_url( 'js/shortcode-button.js' );
|
1228 |
return $plugin_array;
|
1229 |
}
|
1230 |
}
|
1238 |
|
1239 |
/* Generate inline content for the popup window when the "bws shortcode" button is clicked */
|
1240 |
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
1241 |
+
function bws_shortcode_media_button_popup() {
|
1242 |
global $bws_shortcode_list, $wp_version;
|
1243 |
if ( $wp_version < '3.3' )
|
1244 |
return;
|
1275 |
if ( $wp_version < '3.9' ) { ?>
|
1276 |
<script type="text/javascript">
|
1277 |
(function($){
|
1278 |
+
$( '.bws_shortcode_insert' ).on( 'click',function() {
|
1279 |
var shortcode = $( '#TB_ajaxContent #bws_shortcode_display' ).text();
|
1280 |
if ( '' != shortcode ) {
|
1281 |
/* insert shortcode to tinymce */
|
1283 |
$( 'textarea#content' ).val( shortcode );
|
1284 |
} else {
|
1285 |
tinyMCE.execCommand( 'mceInsertContent', false, shortcode );
|
1286 |
+
}
|
1287 |
}
|
1288 |
/* close the thickbox after adding shortcode to editor */
|
1289 |
self.parent.tb_remove();
|
1290 |
});
|
1291 |
})(jQuery);
|
1292 |
</script>
|
1293 |
+
<?php }
|
1294 |
}
|
1295 |
}
|
1296 |
|
1301 |
|
1302 |
$content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
|
1303 |
|
1304 |
+
$screen->add_help_tab(
|
1305 |
array(
|
1306 |
'id' => $args['id'] . '_help_tab',
|
1307 |
'title' => __( 'FAQ', 'bestwebsoft' ),
|
1341 |
if ( ! file_exists( $index_file ) ) {
|
1342 |
if ( $f = fopen( $index_file, 'w+' ) )
|
1343 |
fclose( $f );
|
1344 |
+
}
|
1345 |
}
|
1346 |
|
1347 |
$css_file = 'bws-custom-code.css';
|
1348 |
$real_css_file = $folder . '/' . $css_file;
|
1349 |
|
1350 |
+
$php_file = 'bws-custom-code.php';
|
1351 |
+
$real_php_file = $folder . '/' . $php_file;
|
1352 |
|
1353 |
$is_multisite = is_multisite();
|
1354 |
if ( $is_multisite )
|
1357 |
if ( isset( $_REQUEST['bws_update_custom_code'] ) && check_admin_referer( 'bws_update_' . $css_file ) ) {
|
1358 |
|
1359 |
/* CSS */
|
1360 |
+
$newcontent_css = wp_unslash( $_POST['bws_newcontent_css'] );
|
1361 |
if ( ! empty( $newcontent_css ) && isset( $_REQUEST['bws_custom_css_active'] ) ) {
|
1362 |
if ( $is_multisite )
|
1363 |
$bstwbsftwppdtplgns_options['custom_code'][ $blog_id ][ $css_file ] = $upload_dir['baseurl'] . '/bws-custom-code/' . $css_file;
|
1408 |
}
|
1409 |
} else {
|
1410 |
$error .= __( 'Not enough permissions to create the file', 'bestwebsoft' ) . ' ' . $index_file . '. ';
|
1411 |
+
}
|
1412 |
|
1413 |
if ( ! empty( $error ) )
|
1414 |
$error .= ' <a href="https://codex.wordpress.org/Changing_File_Permissions" target="_blank">' . __( 'Learn more', 'bestwebsoft' ) . '</a>';
|
1440 |
|
1441 |
if ( ! empty( $message ) ) { ?>
|
1442 |
<div id="message" class="below-h2 updated notice is-dismissible"><p><?php echo $message; ?></p></div>
|
1443 |
+
<?php } ?>
|
1444 |
<form action="" method="post">
|
1445 |
+
<?php foreach ( array( 'css', 'php' ) as $extension ) { ?>
|
1446 |
<p>
|
1447 |
<?php if ( 'css' == $extension )
|
1448 |
_e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
|
1460 |
<textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
|
1461 |
<p class="description">
|
1462 |
<a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
|
1463 |
+
<?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
|
1464 |
</a>
|
1465 |
+
</p>
|
1466 |
<?php }
|
1467 |
if ( ( ! file_exists( $real_css_file ) || is_writeable( $real_css_file ) ) && ( ! file_exists( $real_php_file ) || is_writeable( $real_php_file ) ) ) { ?>
|
1468 |
<p class="submit">
|
1469 |
+
<input type="hidden" name="bws_update_custom_code" value="submit" />
|
1470 |
+
<?php submit_button( __( 'Save Changes', 'bestwebsoft' ), 'primary', 'submit', false );
|
1471 |
wp_nonce_field( 'bws_update_' . $css_file ); ?>
|
1472 |
</p>
|
1473 |
<?php } else { ?>
|
1476 |
'</a>' ); ?></em></p>
|
1477 |
<?php } ?>
|
1478 |
</form>
|
1479 |
+
<?php }
|
1480 |
}
|
1481 |
|
1482 |
if ( ! function_exists( 'bws_enqueue_custom_code_css' ) ) {
|
1516 |
$blog_id = get_current_blog_id();
|
1517 |
|
1518 |
if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1519 |
+
|
1520 |
if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
|
1521 |
if ( ! defined( 'BWS_GLOBAL' ) )
|
1522 |
define( 'BWS_GLOBAL', true );
|
1561 |
/* if empty ['bws_menu']['version'] - there is no other bws plugins - delete all */
|
1562 |
if ( empty( $bstwbsftwppdtplgns_options['bws_menu']['version'] ) ) {
|
1563 |
/* remove options */
|
1564 |
+
if ( $is_multisite )
|
1565 |
delete_site_option( 'bstwbsftwppdtplgns_options' );
|
1566 |
else
|
1567 |
delete_option( 'bstwbsftwppdtplgns_options' );
|
1590 |
rmdir( $folder );
|
1591 |
}
|
1592 |
}
|
1593 |
+
}
|
1594 |
+
}
|
1595 |
+
}
|
1596 |
+
|
1597 |
+
/**
|
1598 |
+
* Function to getting url to current BWS_Menu.
|
1599 |
+
*
|
1600 |
+
* @since 1.9.7
|
1601 |
+
*/
|
1602 |
+
if ( ! function_exists ( 'bws_menu_url' ) ) {
|
1603 |
+
function bws_menu_url( $path = '' ) {
|
1604 |
+
$bws_menu_current_dir = str_replace( '\\', '/', dirname( __FILE__ ) );
|
1605 |
+
$bws_menu_abspath = str_replace( '\\', '/', ABSPATH );
|
1606 |
+
$bws_menu_current_url = site_url( str_replace( $bws_menu_abspath, '', $bws_menu_current_dir ) );
|
1607 |
+
|
1608 |
+
return sprintf( '%s/%s', $bws_menu_current_url, $path );
|
1609 |
}
|
1610 |
}
|
1611 |
|
bws_menu/bws_include.php
CHANGED
@@ -4,12 +4,21 @@
|
|
4 |
*/
|
5 |
|
6 |
if ( ! function_exists ( 'bws_include_init' ) ) {
|
7 |
-
function bws_include_init( $base ) {
|
8 |
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
9 |
if ( ! function_exists( 'get_plugin_data' ) )
|
10 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
11 |
|
12 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
$bws_menu_version = $bws_menu_info["Version"];
|
14 |
|
15 |
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
@@ -42,14 +51,17 @@ if ( ! function_exists ( 'bws_include_init' ) ) {
|
|
42 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
43 |
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
44 |
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
|
|
45 |
$all_plugins = get_plugins();
|
|
|
|
|
46 |
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
47 |
-
if ( array_key_exists( $key, $all_plugins ) ) {
|
48 |
-
if ( $bws_menu_version < $value && is_plugin_active( $
|
49 |
-
if ( ! isset( $
|
50 |
-
$
|
51 |
-
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $
|
52 |
-
$
|
53 |
}
|
54 |
} else {
|
55 |
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
@@ -59,24 +71,31 @@ if ( ! function_exists ( 'bws_include_init' ) ) {
|
|
59 |
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
60 |
}
|
61 |
}
|
62 |
-
if ( ! isset( $plugin_with_newer_menu ) )
|
63 |
-
$plugin_with_newer_menu = $base;
|
64 |
-
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
65 |
-
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
66 |
|
67 |
-
if (
|
68 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
} else {
|
70 |
-
|
71 |
}
|
72 |
|
73 |
-
if ( file_exists(
|
74 |
-
require_once(
|
|
|
75 |
} else {
|
|
|
76 |
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
77 |
}
|
78 |
|
79 |
$bstwbsftwppdtplgns_added_menu = true;
|
80 |
-
}
|
81 |
}
|
82 |
}
|
4 |
*/
|
5 |
|
6 |
if ( ! function_exists ( 'bws_include_init' ) ) {
|
7 |
+
function bws_include_init( $base, $bws_menu_source = 'plugins' ) {
|
8 |
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
9 |
if ( ! function_exists( 'get_plugin_data' ) )
|
10 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
11 |
|
12 |
+
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? WP_CONTENT_DIR : ABSPATH . 'wp-content';
|
13 |
+
$wp_plugins_dir = defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : $wp_content_dir . '/plugins';
|
14 |
+
|
15 |
+
if ( $bws_menu_source == 'plugins' ) {
|
16 |
+
$bws_menu_dir = $wp_plugins_dir . '/' . dirname( $base ) . '/bws_menu/bws_menu.php';
|
17 |
+
} else {
|
18 |
+
$bws_menu_dir = $wp_content_dir . '/themes/' . $base . '/inc/bws_menu/bws_menu.php';
|
19 |
+
}
|
20 |
+
|
21 |
+
$bws_menu_info = get_plugin_data( $bws_menu_dir );
|
22 |
$bws_menu_version = $bws_menu_info["Version"];
|
23 |
|
24 |
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
51 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
52 |
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
53 |
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
54 |
+
|
55 |
$all_plugins = get_plugins();
|
56 |
+
$all_themes = wp_get_themes();
|
57 |
+
|
58 |
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
59 |
+
if ( array_key_exists( $key, $all_plugins ) || array_key_exists( $key, $all_themes ) ) {
|
60 |
+
if ( $bws_menu_version < $value && ( is_plugin_active( $key ) || preg_match( '|' . $key . '$|', get_template_directory() ) ) ) {
|
61 |
+
if ( ! isset( $product_with_newer_menu ) )
|
62 |
+
$product_with_newer_menu = $key;
|
63 |
+
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $product_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
|
64 |
+
$product_with_newer_menu = $key;
|
65 |
}
|
66 |
} else {
|
67 |
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
71 |
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
72 |
}
|
73 |
}
|
|
|
|
|
|
|
|
|
74 |
|
75 |
+
if ( ! isset( $product_with_newer_menu ) )
|
76 |
+
$product_with_newer_menu = $base;
|
77 |
+
|
78 |
+
$folder_with_newer_menu = explode( '/', $product_with_newer_menu );
|
79 |
+
|
80 |
+
if ( array_key_exists( $product_with_newer_menu, $all_plugins ) ) {
|
81 |
+
$bws_menu_source = 'plugins';
|
82 |
+
$bws_menu_new_dir = $wp_plugins_dir . '/' . $folder_with_newer_menu[0];
|
83 |
+
} else if ( array_key_exists( $product_with_newer_menu, $all_themes ) ) {
|
84 |
+
$bws_menu_source = 'themes';
|
85 |
+
$bws_menu_new_dir = $wp_content_dir . '/themes/' . $folder_with_newer_menu[0] . '/inc';
|
86 |
} else {
|
87 |
+
$bws_menu_new_dir = '';
|
88 |
}
|
89 |
|
90 |
+
if ( file_exists( $bws_menu_new_dir . '/bws_menu/bws_functions.php' ) ) {
|
91 |
+
require_once( $bws_menu_new_dir . '/bws_menu/bws_functions.php' );
|
92 |
+
require_once( $bws_menu_new_dir . '/bws_menu/bws_menu.php' );
|
93 |
} else {
|
94 |
+
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
95 |
require_once( dirname( __FILE__ ) . '/bws_functions.php' );
|
96 |
}
|
97 |
|
98 |
$bstwbsftwppdtplgns_added_menu = true;
|
99 |
+
}
|
100 |
}
|
101 |
}
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.9.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -10,7 +10,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
|
10 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
11 |
function bws_add_menu_render() {
|
12 |
global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
|
13 |
-
$error = $message = $bwsmn_form_email = '';
|
14 |
|
15 |
if ( 'bws_panel' == $_GET['page'] ) {
|
16 |
|
@@ -18,10 +18,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
18 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
19 |
|
20 |
/* get $bws_plugins */
|
21 |
-
|
22 |
|
23 |
$all_plugins = get_plugins();
|
24 |
-
$active_plugins = get_option( 'active_plugins' );
|
25 |
$sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
|
26 |
$update_availible_all = get_site_transient( 'update_plugins' );
|
27 |
|
@@ -29,7 +29,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
29 |
|
30 |
if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
|
31 |
$bws_plugins_update_availible = $bws_plugins_expired = array();
|
32 |
-
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
33 |
|
34 |
foreach ( $value_plugin['category'] as $category_key ) {
|
35 |
$bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
|
@@ -37,14 +37,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
37 |
|
38 |
$is_installed = array_key_exists( $key_plugin, $all_plugins );
|
39 |
$is_pro_installed = false;
|
40 |
-
if ( isset( $value_plugin['pro_version'] ) ) {
|
41 |
$is_pro_installed = array_key_exists( $value_plugin['pro_version'], $all_plugins );
|
42 |
}
|
43 |
/* check update_availible */
|
44 |
-
if ( $is_pro_installed && array_key_exists( $value_plugin['pro_version'], $update_availible_all->response ) ) {
|
45 |
unset( $bws_plugins[ $key_plugin ] );
|
46 |
$value_plugin['update_availible'] = $value_plugin['pro_version'];
|
47 |
-
$bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
|
48 |
} else if ( $is_installed && array_key_exists( $key_plugin, $update_availible_all->response ) ) {
|
49 |
unset( $bws_plugins[ $key_plugin ] );
|
50 |
$value_plugin['update_availible'] = $key_plugin;
|
@@ -60,20 +60,20 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
60 |
}
|
61 |
$bws_plugins = $bws_plugins_update_availible + $bws_plugins_expired + $bws_plugins;
|
62 |
} else {
|
63 |
-
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
64 |
foreach ( $value_plugin['category'] as $category_key ) {
|
65 |
$bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
|
66 |
}
|
67 |
}
|
68 |
}
|
69 |
|
70 |
-
/*** membership ***/
|
71 |
$bws_license_plugin = 'bws_get_list_for_membership';
|
72 |
$bws_license_key = isset( $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) ? $bstwbsftwppdtplgns_options[ $bws_license_plugin ] : '';
|
73 |
$update_membership_list = true;
|
74 |
|
75 |
if ( isset( $_POST['bws_license_key'] ) )
|
76 |
-
$bws_license_key = stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) );
|
77 |
|
78 |
if ( isset( $_SESSION['bws_membership_time_check'] ) && isset( $_SESSION['bws_membership_list'] ) && $_SESSION['bws_membership_time_check'] < strtotime( '+12 hours' ) ) {
|
79 |
$update_membership_list = false;
|
@@ -82,11 +82,11 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
82 |
|
83 |
if ( ( $update_membership_list && ! empty( $bws_license_key ) ) || ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bws_license_nonce_name' ) ) ) {
|
84 |
|
85 |
-
if ( '' != $bws_license_key ) {
|
86 |
if ( strlen( $bws_license_key ) != 18 ) {
|
87 |
$error = __( 'Wrong license key', 'bestwebsoft' );
|
88 |
} else {
|
89 |
-
|
90 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
|
91 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
|
92 |
} else {
|
@@ -111,7 +111,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
111 |
if ( is_array( $response ) && !empty( $response ) ) {
|
112 |
foreach ( $response as $key => $value ) {
|
113 |
if ( "wrong_license_key" == $value->package ) {
|
114 |
-
$error = __( "Wrong license key", 'bestwebsoft' );
|
115 |
} elseif ( "wrong_domain" == $value->package ) {
|
116 |
$error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
|
117 |
} elseif ( "you_are_banned" == $value->package ) {
|
@@ -123,23 +123,23 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
123 |
} elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
|
124 |
$plugins_array = $_SESSION['bws_membership_list'] = $value->package;
|
125 |
$_SESSION['bws_membership_time_check'] = strtotime( 'now' );
|
126 |
-
|
127 |
if ( $bws_license_key == $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) {
|
128 |
$message = __( 'The license key is valid.', 'bestwebsoft' );
|
129 |
if ( isset( $value->time_out ) && $value->time_out != '' )
|
130 |
$message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
131 |
} else {
|
132 |
$message = __( 'Congratulations! Pro Membership license is successfully activated.', 'bestwebsoft' );
|
133 |
-
}
|
134 |
|
135 |
-
$bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
|
136 |
}
|
137 |
}
|
138 |
} else {
|
139 |
-
$error = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
|
140 |
}
|
141 |
}
|
142 |
-
|
143 |
if ( is_multisite() )
|
144 |
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
145 |
else
|
@@ -148,7 +148,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
148 |
} else {
|
149 |
$error = __( "Please enter your license key.", 'bestwebsoft' );
|
150 |
}
|
151 |
-
}
|
152 |
}
|
153 |
|
154 |
if ( 'bws_system_status' == $_GET['page'] ) {
|
@@ -217,7 +217,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
217 |
else
|
218 |
$system_info['inactive_plugins'][ $plugin['Name'] ] = $plugin['Version'];
|
219 |
}
|
220 |
-
|
221 |
|
222 |
if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) || ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
223 |
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
@@ -269,10 +269,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
269 |
}
|
270 |
} ?>
|
271 |
<div class="bws-wrap">
|
272 |
-
<div class="bws-header">
|
273 |
<div class="bws-title">
|
274 |
<a href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>">
|
275 |
-
<img class="bws-logo" src="<?php echo
|
276 |
BestWebSoft
|
277 |
<span>panel</span>
|
278 |
</a>
|
@@ -284,18 +284,18 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
284 |
</div>
|
285 |
<div class="bws-help-links-wrapper">
|
286 |
<a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
|
287 |
-
<a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
|
288 |
-
<a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-admin/admin.php?page=client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'Client Area', 'bestwebsoft' ); ?></a>
|
289 |
-
</div>
|
290 |
<div class="clear"></div>
|
291 |
</div>
|
292 |
<?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
|
293 |
<div class="bws-membership-wrap">
|
294 |
<div class="bws-membership-backround"></div>
|
295 |
-
<div class="bws-membership">
|
296 |
-
<div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
|
297 |
<form class="bws-membership-form" method="post" action="">
|
298 |
-
<span class="bws-membership-link"><a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a> <?php _e( 'or', 'bestwebsoft' ); ?></span>
|
299 |
<?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
|
300 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
301 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
@@ -303,9 +303,9 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
303 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
304 |
<div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
|
305 |
</div>
|
306 |
-
<input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
307 |
<?php } else { ?>
|
308 |
-
<div class="bws_form_input_wrap">
|
309 |
<input <?php if ( "" != $error ) echo "class=\"bws_input_error\""; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
310 |
<div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
|
311 |
</div>
|
@@ -315,15 +315,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
315 |
<input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
316 |
<?php } else { ?>
|
317 |
<input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
318 |
-
<?php } ?>
|
319 |
-
<?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
|
320 |
-
<?php } ?>
|
321 |
</form>
|
322 |
-
<div class="clear"></div>
|
323 |
</div>
|
324 |
-
</div>
|
325 |
<?php } ?>
|
326 |
-
<div class="bws-wrap-content wrap">
|
327 |
<?php if ( 'bws_panel' == $_GET['page'] ) { ?>
|
328 |
<div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
|
329 |
<h1>
|
@@ -350,12 +350,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
350 |
|
351 |
$url = $plugins_array[ $bws_license_plugin ]['link'] . '&download_from=5';
|
352 |
|
353 |
-
echo '<p>' . __( "Downloading install package from", 'bestwebsoft' ) . ' ' . $url . '</p>';
|
354 |
|
355 |
$uploadDir = wp_upload_dir();
|
356 |
$zip_name = explode( '/', $bws_license_plugin );
|
357 |
-
|
358 |
-
if ( !function_exists( 'curl_init' ) ) {
|
359 |
$received_content = file_get_contents( $url );
|
360 |
} else {
|
361 |
$ch = curl_init();
|
@@ -364,7 +364,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
364 |
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true );
|
365 |
$received_content = curl_exec( $ch );
|
366 |
curl_close( $ch );
|
367 |
-
}
|
368 |
|
369 |
if ( ! $received_content ) {
|
370 |
$error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
@@ -410,18 +410,18 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
410 |
} else {
|
411 |
if ( empty( $error ) )
|
412 |
$error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
413 |
-
|
414 |
echo '<p class="error">' . $error . '</p>';
|
415 |
echo '<p><a href="' . self_admin_url( 'admin.php?page=bws_panel' ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
|
416 |
}
|
417 |
-
} else { ?>
|
418 |
<ul class="subsubsub">
|
419 |
<li><a <?php if ( !isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="admin.php?page=bws_panel<?php if ( 'all' != $plugin_category ) echo '&category=' . $plugin_category; ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
|
420 |
<li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_panel&sub=installed<?php if ( 'all' != $plugin_category ) echo '&category=' . $plugin_category; ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
|
421 |
<li><a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_panel&sub=not_installed<?php if ( 'all' != $plugin_category ) echo '&category=' . $plugin_category; ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a></li>
|
422 |
</ul>
|
423 |
<div class="clear"></div>
|
424 |
-
<div class="bws-filter-top">
|
425 |
<h2>
|
426 |
<span class="bws-toggle-indicator"></span>
|
427 |
<?php _e( 'Filter results', 'bestwebsoft' ); ?>
|
@@ -433,13 +433,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
433 |
<?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
|
434 |
<a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
|
435 |
<span>(<?php echo count( $bws_plugins ); ?>)</span>
|
436 |
-
</a>
|
437 |
</li>
|
438 |
<?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
|
439 |
<li>
|
440 |
<a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
|
441 |
<span>(<?php echo $category_value['count']; ?>)</span>
|
442 |
-
</a>
|
443 |
</li>
|
444 |
<?php } ?>
|
445 |
</ul>
|
@@ -447,14 +447,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
447 |
</div>
|
448 |
<div class="bws-products">
|
449 |
<?php $nothing_found = true;
|
450 |
-
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
451 |
|
452 |
-
if ( 'all' != $plugin_category && isset( $bws_plugins_category[ $plugin_category ] ) && ! in_array( $plugin_category, $value_plugin['category'] ) )
|
453 |
continue;
|
454 |
|
455 |
$key_plugin_explode = explode( '/', $key_plugin );
|
456 |
|
457 |
-
$icon = isset( $value_plugin['icon'] ) ? $value_plugin['icon'] : '//ps.w.org/' . $key_plugin_explode[0] . '/assets/icon-128x128.png';
|
458 |
$is_pro_isset = isset( $value_plugin['pro_version'] );
|
459 |
$is_installed = array_key_exists( $key_plugin, $all_plugins );
|
460 |
$is_active = in_array( $key_plugin, $active_plugins ) || isset( $sitewide_active_plugins[ $key_plugin ] );
|
@@ -467,7 +467,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
467 |
|
468 |
if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] && ! $is_pro_installed && ! $is_installed ) ||
|
469 |
( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
|
470 |
-
continue;
|
471 |
|
472 |
$link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . $value_plugin['install_url'] . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
|
473 |
|
@@ -479,7 +479,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
479 |
<div class="bws_product_content">
|
480 |
<div class="bws_product_title"><a <?php echo $link_attr; ?>><?php echo $value_plugin['name']; ?></a></div>
|
481 |
<div class="bws-version">
|
482 |
-
<?php
|
483 |
if ( $is_pro_installed ) {
|
484 |
echo '<span';
|
485 |
if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
|
@@ -489,9 +489,9 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
489 |
echo '<span';
|
490 |
if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
|
491 |
echo ' class="bws-update-available"';
|
492 |
-
echo '>v ' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
|
493 |
} else {
|
494 |
-
echo '<span>' . __( 'Not installed', 'bestwebsoft' ) . '</span>';
|
495 |
}
|
496 |
|
497 |
if ( ! empty( $value_plugin['expired'] ) ) {
|
@@ -502,7 +502,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
502 |
} ?>
|
503 |
</div>
|
504 |
<div class="bws_product_description">
|
505 |
-
<?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
|
506 |
</div>
|
507 |
<div class="bws_product_links">
|
508 |
<?php if ( $is_active || $is_pro_active ) {
|
@@ -528,7 +528,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
528 |
<?php } else { ?>
|
529 |
<a class="bws_settings" href="<?php echo $bws_plugins[ $key_plugin ]["settings"]; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
|
530 |
<?php }
|
531 |
-
} else {
|
532 |
if ( $is_pro_installed ) { ?>
|
533 |
<a class="button button-secondary" href="<?php echo wp_nonce_url( 'admin.php?page=bws_panel&bws_activate_plugin=' . $value_plugin['pro_version'], 'bws_activate_plugin' . $value_plugin['pro_version'] ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
|
534 |
<?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
|
@@ -540,15 +540,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
540 |
</form>
|
541 |
<?php } elseif ( $is_installed ) { ?>
|
542 |
<a class="button button-secondary" href="<?php echo wp_nonce_url( 'admin.php?page=bws_panel&bws_activate_plugin=' . $key_plugin, 'bws_activate_plugin' . $key_plugin ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
|
543 |
-
<?php } else {
|
544 |
-
$install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : esc_url( self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', $value_plugin['name'] ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ) ); ?>
|
545 |
<a class="button button-secondary" href="<?php echo $install_url; ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
|
546 |
<?php }
|
547 |
} ?>
|
548 |
</div>
|
549 |
</div>
|
550 |
<div class="clear"></div>
|
551 |
-
</div>
|
552 |
<?php }
|
553 |
if ( $nothing_found ) { ?>
|
554 |
<p class="description"><?php _e( 'Nothing found. Try another criteria.', 'bestwebsoft' ); ?></p>
|
@@ -562,22 +562,22 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
562 |
<?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
|
563 |
<a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
|
564 |
<span>(<?php echo count( $bws_plugins ); ?>)</span>
|
565 |
-
</a>
|
566 |
</li>
|
567 |
<?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
|
568 |
<li>
|
569 |
<a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
|
570 |
<span>(<?php echo $category_value['count']; ?>)</span>
|
571 |
-
</a>
|
572 |
</li>
|
573 |
<?php } ?>
|
574 |
</ul>
|
575 |
</div>
|
576 |
-
</div><!-- #bws-filter-wrapper -->
|
577 |
<div class="clear"></div>
|
578 |
<?php }
|
579 |
-
} elseif ( 'bws_themes' == $_GET['page'] ) {
|
580 |
-
|
581 |
<h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
|
582 |
<div id="availablethemes" class="bws-availablethemes">
|
583 |
<?php if ( $wp_version < '3.9' ) {
|
@@ -585,7 +585,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
585 |
<div class="available-theme installable-theme"><?php
|
586 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
587 |
<a class="screenshot" href="<?php echo esc_url( $theme->href ); ?>">
|
588 |
-
<img src="<?php echo
|
589 |
</a>
|
590 |
<h3><?php echo $theme->name; ?></h3>
|
591 |
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
@@ -606,14 +606,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
606 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
607 |
<div class="theme" tabindex="0">
|
608 |
<div class="theme-screenshot">
|
609 |
-
<img src="<?php echo
|
610 |
</div>
|
611 |
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
612 |
<h3 class="theme-name"><?php echo $theme->name; ?></h3>
|
613 |
<div class="theme-actions">
|
614 |
<a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
|
615 |
</div>
|
616 |
-
<?php if ( $installed_theme->exists() ) {
|
617 |
if ( $wp_version < '4.6' ) { ?>
|
618 |
<div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
|
619 |
<?php } else { ?>
|
@@ -628,7 +628,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
628 |
<?php } ?>
|
629 |
<p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
|
630 |
</div>
|
631 |
-
<?php } elseif ( 'bws_system_status' == $_GET['page'] ) { ?>
|
632 |
<h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
|
633 |
<div class="updated fade notice is-dismissible inline" <?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>
|
634 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
@@ -685,7 +685,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
685 |
} ?>
|
686 |
</tbody>
|
687 |
</table>
|
688 |
-
<div class="clear"></div>
|
689 |
</div>
|
690 |
<?php } ?>
|
691 |
</div>
|
@@ -697,7 +697,9 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
697 |
function bws_get_banner_array() {
|
698 |
global $bstwbsftwppdtplgns_banner_array;
|
699 |
$bstwbsftwppdtplgns_banner_array = array(
|
700 |
-
array( '
|
|
|
|
|
701 |
array( 'crrntl_hide_banner_on_plugin_page', 'car-rental/car-rental.php', '1.0.0' ),
|
702 |
array( 'lnkdn_hide_banner_on_plugin_page', 'bws-linkedin/bws-linkedin.php', '1.0.1' ),
|
703 |
array( 'pntrst_hide_banner_on_plugin_page', 'bws-pinterest/bws-pinterest.php', '1.0.1' ),
|
@@ -705,7 +707,7 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
705 |
array( 'gglcptch_hide_banner_on_plugin_page', 'google-captcha/google-captcha.php', '1.18' ),
|
706 |
array( 'mltlngg_hide_banner_on_plugin_page', 'multilanguage/multilanguage.php', '1.1.1' ),
|
707 |
array( 'adsns_hide_banner_on_plugin_page', 'adsense-plugin/adsense-plugin.php', '1.36' ),
|
708 |
-
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
709 |
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
710 |
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
711 |
array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.9.7
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
10 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
11 |
function bws_add_menu_render() {
|
12 |
global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
|
13 |
+
$error = $message = $bwsmn_form_email = '';
|
14 |
|
15 |
if ( 'bws_panel' == $_GET['page'] ) {
|
16 |
|
18 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
19 |
|
20 |
/* get $bws_plugins */
|
21 |
+
require( dirname( __FILE__ ) . '/product_list.php' );
|
22 |
|
23 |
$all_plugins = get_plugins();
|
24 |
+
$active_plugins = get_option( 'active_plugins' );
|
25 |
$sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
|
26 |
$update_availible_all = get_site_transient( 'update_plugins' );
|
27 |
|
29 |
|
30 |
if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
|
31 |
$bws_plugins_update_availible = $bws_plugins_expired = array();
|
32 |
+
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
33 |
|
34 |
foreach ( $value_plugin['category'] as $category_key ) {
|
35 |
$bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
|
37 |
|
38 |
$is_installed = array_key_exists( $key_plugin, $all_plugins );
|
39 |
$is_pro_installed = false;
|
40 |
+
if ( isset( $value_plugin['pro_version'] ) ) {
|
41 |
$is_pro_installed = array_key_exists( $value_plugin['pro_version'], $all_plugins );
|
42 |
}
|
43 |
/* check update_availible */
|
44 |
+
if ( $is_pro_installed && array_key_exists( $value_plugin['pro_version'], $update_availible_all->response ) ) {
|
45 |
unset( $bws_plugins[ $key_plugin ] );
|
46 |
$value_plugin['update_availible'] = $value_plugin['pro_version'];
|
47 |
+
$bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
|
48 |
} else if ( $is_installed && array_key_exists( $key_plugin, $update_availible_all->response ) ) {
|
49 |
unset( $bws_plugins[ $key_plugin ] );
|
50 |
$value_plugin['update_availible'] = $key_plugin;
|
60 |
}
|
61 |
$bws_plugins = $bws_plugins_update_availible + $bws_plugins_expired + $bws_plugins;
|
62 |
} else {
|
63 |
+
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
64 |
foreach ( $value_plugin['category'] as $category_key ) {
|
65 |
$bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
|
66 |
}
|
67 |
}
|
68 |
}
|
69 |
|
70 |
+
/*** membership ***/
|
71 |
$bws_license_plugin = 'bws_get_list_for_membership';
|
72 |
$bws_license_key = isset( $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) ? $bstwbsftwppdtplgns_options[ $bws_license_plugin ] : '';
|
73 |
$update_membership_list = true;
|
74 |
|
75 |
if ( isset( $_POST['bws_license_key'] ) )
|
76 |
+
$bws_license_key = stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) );
|
77 |
|
78 |
if ( isset( $_SESSION['bws_membership_time_check'] ) && isset( $_SESSION['bws_membership_list'] ) && $_SESSION['bws_membership_time_check'] < strtotime( '+12 hours' ) ) {
|
79 |
$update_membership_list = false;
|
82 |
|
83 |
if ( ( $update_membership_list && ! empty( $bws_license_key ) ) || ( isset( $_POST['bws_license_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bws_license_nonce_name' ) ) ) {
|
84 |
|
85 |
+
if ( '' != $bws_license_key ) {
|
86 |
if ( strlen( $bws_license_key ) != 18 ) {
|
87 |
$error = __( 'Wrong license key', 'bestwebsoft' );
|
88 |
} else {
|
89 |
+
|
90 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
|
91 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
|
92 |
} else {
|
111 |
if ( is_array( $response ) && !empty( $response ) ) {
|
112 |
foreach ( $response as $key => $value ) {
|
113 |
if ( "wrong_license_key" == $value->package ) {
|
114 |
+
$error = __( "Wrong license key", 'bestwebsoft' );
|
115 |
} elseif ( "wrong_domain" == $value->package ) {
|
116 |
$error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
|
117 |
} elseif ( "you_are_banned" == $value->package ) {
|
123 |
} elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
|
124 |
$plugins_array = $_SESSION['bws_membership_list'] = $value->package;
|
125 |
$_SESSION['bws_membership_time_check'] = strtotime( 'now' );
|
126 |
+
|
127 |
if ( $bws_license_key == $bstwbsftwppdtplgns_options[ $bws_license_plugin ] ) {
|
128 |
$message = __( 'The license key is valid.', 'bestwebsoft' );
|
129 |
if ( isset( $value->time_out ) && $value->time_out != '' )
|
130 |
$message .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
131 |
} else {
|
132 |
$message = __( 'Congratulations! Pro Membership license is successfully activated.', 'bestwebsoft' );
|
133 |
+
}
|
134 |
|
135 |
+
$bstwbsftwppdtplgns_options[ $bws_license_plugin ] = $bws_license_key;
|
136 |
}
|
137 |
}
|
138 |
} else {
|
139 |
+
$error = __( "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience.", 'bestwebsoft' );
|
140 |
}
|
141 |
}
|
142 |
+
|
143 |
if ( is_multisite() )
|
144 |
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
145 |
else
|
148 |
} else {
|
149 |
$error = __( "Please enter your license key.", 'bestwebsoft' );
|
150 |
}
|
151 |
+
}
|
152 |
}
|
153 |
|
154 |
if ( 'bws_system_status' == $_GET['page'] ) {
|
217 |
else
|
218 |
$system_info['inactive_plugins'][ $plugin['Name'] ] = $plugin['Version'];
|
219 |
}
|
220 |
+
|
221 |
|
222 |
if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) || ( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
223 |
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
269 |
}
|
270 |
} ?>
|
271 |
<div class="bws-wrap">
|
272 |
+
<div class="bws-header">
|
273 |
<div class="bws-title">
|
274 |
<a href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>">
|
275 |
+
<img class="bws-logo" src="<?php echo bws_menu_url( 'images/bestwebsoft-logo-white.svg' ); ?>" />
|
276 |
BestWebSoft
|
277 |
<span>panel</span>
|
278 |
</a>
|
284 |
</div>
|
285 |
<div class="bws-help-links-wrapper">
|
286 |
<a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
|
287 |
+
<a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
|
288 |
+
<a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-admin/admin.php?page=client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'Client Area', 'bestwebsoft' ); ?></a>
|
289 |
+
</div>
|
290 |
<div class="clear"></div>
|
291 |
</div>
|
292 |
<?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
|
293 |
<div class="bws-membership-wrap">
|
294 |
<div class="bws-membership-backround"></div>
|
295 |
+
<div class="bws-membership">
|
296 |
+
<div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
|
297 |
<form class="bws-membership-form" method="post" action="">
|
298 |
+
<span class="bws-membership-link"><a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a> <?php _e( 'or', 'bestwebsoft' ); ?></span>
|
299 |
<?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
|
300 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
301 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
303 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
304 |
<div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
|
305 |
</div>
|
306 |
+
<input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
307 |
<?php } else { ?>
|
308 |
+
<div class="bws_form_input_wrap">
|
309 |
<input <?php if ( "" != $error ) echo "class=\"bws_input_error\""; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
310 |
<div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
|
311 |
</div>
|
315 |
<input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
316 |
<?php } else { ?>
|
317 |
<input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
|
318 |
+
<?php } ?>
|
319 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
|
320 |
+
<?php } ?>
|
321 |
</form>
|
322 |
+
<div class="clear"></div>
|
323 |
</div>
|
324 |
+
</div>
|
325 |
<?php } ?>
|
326 |
+
<div class="bws-wrap-content wrap">
|
327 |
<?php if ( 'bws_panel' == $_GET['page'] ) { ?>
|
328 |
<div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
|
329 |
<h1>
|
350 |
|
351 |
$url = $plugins_array[ $bws_license_plugin ]['link'] . '&download_from=5';
|
352 |
|
353 |
+
echo '<p>' . __( "Downloading install package from", 'bestwebsoft' ) . ' ' . $url . '</p>';
|
354 |
|
355 |
$uploadDir = wp_upload_dir();
|
356 |
$zip_name = explode( '/', $bws_license_plugin );
|
357 |
+
|
358 |
+
if ( !function_exists( 'curl_init' ) ) {
|
359 |
$received_content = file_get_contents( $url );
|
360 |
} else {
|
361 |
$ch = curl_init();
|
364 |
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true );
|
365 |
$received_content = curl_exec( $ch );
|
366 |
curl_close( $ch );
|
367 |
+
}
|
368 |
|
369 |
if ( ! $received_content ) {
|
370 |
$error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
410 |
} else {
|
411 |
if ( empty( $error ) )
|
412 |
$error = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
413 |
+
|
414 |
echo '<p class="error">' . $error . '</p>';
|
415 |
echo '<p><a href="' . self_admin_url( 'admin.php?page=bws_panel' ) . '" target="_parent">' . __( 'Return to BestWebSoft Panel', 'bestwebsoft' ) . '</a></p>';
|
416 |
}
|
417 |
+
} else { ?>
|
418 |
<ul class="subsubsub">
|
419 |
<li><a <?php if ( !isset( $_GET['sub'] ) ) echo 'class="current" '; ?>href="admin.php?page=bws_panel<?php if ( 'all' != $plugin_category ) echo '&category=' . $plugin_category; ?>"><?php _e( 'All', 'bestwebsoft' ); ?></a></li> |
|
420 |
<li><a <?php if ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_panel&sub=installed<?php if ( 'all' != $plugin_category ) echo '&category=' . $plugin_category; ?>"><?php _e( 'Installed', 'bestwebsoft' ); ?></a></li> |
|
421 |
<li><a <?php if ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] ) echo 'class="current" '; ?>href="admin.php?page=bws_panel&sub=not_installed<?php if ( 'all' != $plugin_category ) echo '&category=' . $plugin_category; ?>"><?php _e( 'Not Installed', 'bestwebsoft' ); ?></a></li>
|
422 |
</ul>
|
423 |
<div class="clear"></div>
|
424 |
+
<div class="bws-filter-top">
|
425 |
<h2>
|
426 |
<span class="bws-toggle-indicator"></span>
|
427 |
<?php _e( 'Filter results', 'bestwebsoft' ); ?>
|
433 |
<?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
|
434 |
<a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
|
435 |
<span>(<?php echo count( $bws_plugins ); ?>)</span>
|
436 |
+
</a>
|
437 |
</li>
|
438 |
<?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
|
439 |
<li>
|
440 |
<a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
|
441 |
<span>(<?php echo $category_value['count']; ?>)</span>
|
442 |
+
</a>
|
443 |
</li>
|
444 |
<?php } ?>
|
445 |
</ul>
|
447 |
</div>
|
448 |
<div class="bws-products">
|
449 |
<?php $nothing_found = true;
|
450 |
+
foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
|
451 |
|
452 |
+
if ( 'all' != $plugin_category && isset( $bws_plugins_category[ $plugin_category ] ) && ! in_array( $plugin_category, $value_plugin['category'] ) )
|
453 |
continue;
|
454 |
|
455 |
$key_plugin_explode = explode( '/', $key_plugin );
|
456 |
|
457 |
+
$icon = isset( $value_plugin['icon'] ) ? $value_plugin['icon'] : '//ps.w.org/' . $key_plugin_explode[0] . '/assets/icon-128x128.png';
|
458 |
$is_pro_isset = isset( $value_plugin['pro_version'] );
|
459 |
$is_installed = array_key_exists( $key_plugin, $all_plugins );
|
460 |
$is_active = in_array( $key_plugin, $active_plugins ) || isset( $sitewide_active_plugins[ $key_plugin ] );
|
467 |
|
468 |
if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] && ! $is_pro_installed && ! $is_installed ) ||
|
469 |
( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
|
470 |
+
continue;
|
471 |
|
472 |
$link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . $value_plugin['install_url'] . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
|
473 |
|
479 |
<div class="bws_product_content">
|
480 |
<div class="bws_product_title"><a <?php echo $link_attr; ?>><?php echo $value_plugin['name']; ?></a></div>
|
481 |
<div class="bws-version">
|
482 |
+
<?php
|
483 |
if ( $is_pro_installed ) {
|
484 |
echo '<span';
|
485 |
if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
|
489 |
echo '<span';
|
490 |
if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
|
491 |
echo ' class="bws-update-available"';
|
492 |
+
echo '>v ' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
|
493 |
} else {
|
494 |
+
echo '<span>' . __( 'Not installed', 'bestwebsoft' ) . '</span>';
|
495 |
}
|
496 |
|
497 |
if ( ! empty( $value_plugin['expired'] ) ) {
|
502 |
} ?>
|
503 |
</div>
|
504 |
<div class="bws_product_description">
|
505 |
+
<?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
|
506 |
</div>
|
507 |
<div class="bws_product_links">
|
508 |
<?php if ( $is_active || $is_pro_active ) {
|
528 |
<?php } else { ?>
|
529 |
<a class="bws_settings" href="<?php echo $bws_plugins[ $key_plugin ]["settings"]; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
|
530 |
<?php }
|
531 |
+
} else {
|
532 |
if ( $is_pro_installed ) { ?>
|
533 |
<a class="button button-secondary" href="<?php echo wp_nonce_url( 'admin.php?page=bws_panel&bws_activate_plugin=' . $value_plugin['pro_version'], 'bws_activate_plugin' . $value_plugin['pro_version'] ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
|
534 |
<?php } elseif ( ! empty( $plugins_array ) && isset( $value_plugin['pro_version'] ) && array_key_exists( $value_plugin['pro_version'], $plugins_array ) ) { ?>
|
540 |
</form>
|
541 |
<?php } elseif ( $is_installed ) { ?>
|
542 |
<a class="button button-secondary" href="<?php echo wp_nonce_url( 'admin.php?page=bws_panel&bws_activate_plugin=' . $key_plugin, 'bws_activate_plugin' . $key_plugin ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
|
543 |
+
<?php } else {
|
544 |
+
$install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : esc_url( self_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( ' ', '+', str_replace( '-', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ) ); ?>
|
545 |
<a class="button button-secondary" href="<?php echo $install_url; ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
|
546 |
<?php }
|
547 |
} ?>
|
548 |
</div>
|
549 |
</div>
|
550 |
<div class="clear"></div>
|
551 |
+
</div>
|
552 |
<?php }
|
553 |
if ( $nothing_found ) { ?>
|
554 |
<p class="description"><?php _e( 'Nothing found. Try another criteria.', 'bestwebsoft' ); ?></p>
|
562 |
<?php $sub_in_url = ( isset( $_GET['sub'] ) && in_array( $_GET['sub'], array( 'installed', 'not_installed' ) ) ) ? '&sub=' . $_GET['sub'] : ''; ?>
|
563 |
<a <?php if ( 'all' == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url ); ?>"><?php _e( 'All', 'bestwebsoft' ); ?>
|
564 |
<span>(<?php echo count( $bws_plugins ); ?>)</span>
|
565 |
+
</a>
|
566 |
</li>
|
567 |
<?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
|
568 |
<li>
|
569 |
<a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
|
570 |
<span>(<?php echo $category_value['count']; ?>)</span>
|
571 |
+
</a>
|
572 |
</li>
|
573 |
<?php } ?>
|
574 |
</ul>
|
575 |
</div>
|
576 |
+
</div><!-- #bws-filter-wrapper -->
|
577 |
<div class="clear"></div>
|
578 |
<?php }
|
579 |
+
} elseif ( 'bws_themes' == $_GET['page'] ) {
|
580 |
+
require( dirname( __FILE__ ) . '/product_list.php' ); ?>
|
581 |
<h1><?php _e( 'Themes', 'bestwebsoft' ); ?></h1>
|
582 |
<div id="availablethemes" class="bws-availablethemes">
|
583 |
<?php if ( $wp_version < '3.9' ) {
|
585 |
<div class="available-theme installable-theme"><?php
|
586 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
587 |
<a class="screenshot" href="<?php echo esc_url( $theme->href ); ?>">
|
588 |
+
<img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" width='150' />
|
589 |
</a>
|
590 |
<h3><?php echo $theme->name; ?></h3>
|
591 |
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
606 |
$installed_theme = wp_get_theme( $theme->slug ); ?>
|
607 |
<div class="theme" tabindex="0">
|
608 |
<div class="theme-screenshot">
|
609 |
+
<img src="<?php echo bws_menu_url( "icons/themes/" ) . $theme->slug . '.png'; ?>" alt="" />
|
610 |
</div>
|
611 |
<div class="theme-author"><?php printf( __( 'By %s', 'bestwebsoft' ), 'BestWebSoft' ); ?></div>
|
612 |
<h3 class="theme-name"><?php echo $theme->name; ?></h3>
|
613 |
<div class="theme-actions">
|
614 |
<a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
|
615 |
</div>
|
616 |
+
<?php if ( $installed_theme->exists() ) {
|
617 |
if ( $wp_version < '4.6' ) { ?>
|
618 |
<div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
|
619 |
<?php } else { ?>
|
628 |
<?php } ?>
|
629 |
<p><a class="bws_browse_link" href="http://bestweblayout.com/categories/themes/" target="_blank"><?php _e( 'Browse Free WordPress Themes', 'bestwebsoft' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></a></p>
|
630 |
</div>
|
631 |
+
<?php } elseif ( 'bws_system_status' == $_GET['page'] ) { ?>
|
632 |
<h1><?php _e( 'System status', 'bestwebsoft' ); ?></h1>
|
633 |
<div class="updated fade notice is-dismissible inline" <?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>
|
634 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
685 |
} ?>
|
686 |
</tbody>
|
687 |
</table>
|
688 |
+
<div class="clear"></div>
|
689 |
</div>
|
690 |
<?php } ?>
|
691 |
</div>
|
697 |
function bws_get_banner_array() {
|
698 |
global $bstwbsftwppdtplgns_banner_array;
|
699 |
$bstwbsftwppdtplgns_banner_array = array(
|
700 |
+
array( 'sclbttns_hide_banner_on_plugin_page', 'social-buttons-pack/social-buttons-pack.php', '1.1.0' ),
|
701 |
+
array( 'tmsht_hide_banner_on_plugin_page', 'timesheet/timesheet.php', '0.1.3' ),
|
702 |
+
array( 'pgntn_hide_banner_on_plugin_page', 'pagination/pagination.php', '1.0.6' ),
|
703 |
array( 'crrntl_hide_banner_on_plugin_page', 'car-rental/car-rental.php', '1.0.0' ),
|
704 |
array( 'lnkdn_hide_banner_on_plugin_page', 'bws-linkedin/bws-linkedin.php', '1.0.1' ),
|
705 |
array( 'pntrst_hide_banner_on_plugin_page', 'bws-pinterest/bws-pinterest.php', '1.0.1' ),
|
707 |
array( 'gglcptch_hide_banner_on_plugin_page', 'google-captcha/google-captcha.php', '1.18' ),
|
708 |
array( 'mltlngg_hide_banner_on_plugin_page', 'multilanguage/multilanguage.php', '1.1.1' ),
|
709 |
array( 'adsns_hide_banner_on_plugin_page', 'adsense-plugin/adsense-plugin.php', '1.36' ),
|
710 |
+
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
711 |
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
712 |
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
713 |
array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
|
bws_menu/css/general_style.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(
|
2 |
-
border-
|
3 |
-
padding-
|
4 |
-
margin-
|
5 |
}
|
6 |
.bws_info {
|
7 |
color: #888;
|
@@ -48,7 +48,7 @@
|
|
48 |
color: #000000;
|
49 |
}
|
50 |
/*
|
51 |
-
* styles for pro_version settings and tooltip
|
52 |
*/
|
53 |
td.bws_pro_version,
|
54 |
tr.bws_pro_version,
|
@@ -67,7 +67,7 @@ td.bws_pro_version_tooltip {
|
|
67 |
max-width: 800px;
|
68 |
overflow: hidden;
|
69 |
}
|
70 |
-
.bws_table_bg {
|
71 |
background: #f8e268 url("../images/pattern.png");
|
72 |
opacity: 0.11;
|
73 |
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
@@ -80,13 +80,13 @@ td.bws_pro_version_tooltip {
|
|
80 |
.bws_hide_premium_options {
|
81 |
z-index: 5;
|
82 |
}
|
83 |
-
.bws_pro_version_table_bloc table.bws_pro_version {
|
84 |
background: transparent;
|
85 |
margin: 0;
|
86 |
border: none;
|
87 |
width: 100%;
|
88 |
}
|
89 |
-
table.bws_pro_version {
|
90 |
background: #E0E0E0;
|
91 |
border: 1px solid #AAA;
|
92 |
margin-bottom: 5px;
|
@@ -103,8 +103,8 @@ table.bws_pro_version td {
|
|
103 |
background: #FFF;
|
104 |
border-top: 1px solid #AAA;
|
105 |
position: relative;
|
106 |
-
z-index: 2;
|
107 |
-
padding: 10px;
|
108 |
font-size: 14px;
|
109 |
}
|
110 |
.bws_pro_version_tooltip .bws_button {
|
@@ -147,7 +147,7 @@ a.bws_plugin_pro_version {
|
|
147 |
color: #666;
|
148 |
}
|
149 |
/* style for mini-block (ex. google map) */
|
150 |
-
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
151 |
width: auto;
|
152 |
}
|
153 |
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
@@ -155,7 +155,7 @@ a.bws_plugin_pro_version {
|
|
155 |
text-align: center;
|
156 |
width: 200px;
|
157 |
}
|
158 |
-
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
159 |
display: inline-block;
|
160 |
line-height: 1.5;
|
161 |
}
|
@@ -174,7 +174,7 @@ a.bws_plugin_pro_version {
|
|
174 |
float: none;
|
175 |
text-align: center;
|
176 |
}
|
177 |
-
.bws_pro_version_tooltip a {
|
178 |
display: inline-block;
|
179 |
line-height: 1.5;
|
180 |
}
|
@@ -189,7 +189,7 @@ a.bws_plugin_pro_version {
|
|
189 |
}
|
190 |
|
191 |
/*
|
192 |
-
* styles for banner
|
193 |
*/
|
194 |
.bws_banner_on_plugin_page {
|
195 |
border: 1px solid #d4d4d4;
|
@@ -213,7 +213,7 @@ a.bws_plugin_pro_version {
|
|
213 |
}
|
214 |
div.bws_banner_on_plugin_page .button {
|
215 |
float: right;
|
216 |
-
border: none;
|
217 |
font-size: 14px;
|
218 |
margin: 18px 40px;
|
219 |
padding: 12px 29px;
|
@@ -232,7 +232,7 @@ div.bws_banner_on_plugin_page .button {
|
|
232 |
line-height: 26px;
|
233 |
}
|
234 |
.bws_banner_on_plugin_page .button:hover,
|
235 |
-
.bws_banner_on_plugin_page .button:focus {
|
236 |
background: #222;
|
237 |
color: #FFF;
|
238 |
}
|
@@ -262,7 +262,7 @@ div.bws_banner_on_plugin_page .icon {
|
|
262 |
color: #000;
|
263 |
font-size: 16px;
|
264 |
line-height: 26px;
|
265 |
-
padding: 13px 14px 14px;
|
266 |
}
|
267 |
.bws_banner_to_settings_joint .icon span.dashicons-admin-plugins {
|
268 |
font-size: 48px;
|
@@ -320,7 +320,7 @@ div.bws_banner_on_plugin_page .icon {
|
|
320 |
/* #### Mobile Phones Portrait or Landscape #### */
|
321 |
@media screen and (max-device-width: 768px) {
|
322 |
.bws_banner_on_plugin_page .text,
|
323 |
-
.bws_banner_on_plugin_page .icon,
|
324 |
.bws_banner_on_plugin_page .button_div,
|
325 |
.bws_banner_on_plugin_page .button {
|
326 |
float: none;
|
@@ -355,7 +355,7 @@ span.bws_code {
|
|
355 |
position: relative;
|
356 |
margin: 3px 5px;
|
357 |
width: 28px;
|
358 |
-
display: inline-block;
|
359 |
}
|
360 |
.bws_help_box:not(.dashicons) {
|
361 |
vertical-align: middle;
|
1 |
+
#adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(5) a {
|
2 |
+
border-top: 1px solid #444;
|
3 |
+
padding-top: 12px;
|
4 |
+
margin-top: 6px;
|
5 |
}
|
6 |
.bws_info {
|
7 |
color: #888;
|
48 |
color: #000000;
|
49 |
}
|
50 |
/*
|
51 |
+
* styles for pro_version settings and tooltip
|
52 |
*/
|
53 |
td.bws_pro_version,
|
54 |
tr.bws_pro_version,
|
67 |
max-width: 800px;
|
68 |
overflow: hidden;
|
69 |
}
|
70 |
+
.bws_table_bg {
|
71 |
background: #f8e268 url("../images/pattern.png");
|
72 |
opacity: 0.11;
|
73 |
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
80 |
.bws_hide_premium_options {
|
81 |
z-index: 5;
|
82 |
}
|
83 |
+
.bws_pro_version_table_bloc table.bws_pro_version {
|
84 |
background: transparent;
|
85 |
margin: 0;
|
86 |
border: none;
|
87 |
width: 100%;
|
88 |
}
|
89 |
+
table.bws_pro_version {
|
90 |
background: #E0E0E0;
|
91 |
border: 1px solid #AAA;
|
92 |
margin-bottom: 5px;
|
103 |
background: #FFF;
|
104 |
border-top: 1px solid #AAA;
|
105 |
position: relative;
|
106 |
+
z-index: 2;
|
107 |
+
padding: 10px;
|
108 |
font-size: 14px;
|
109 |
}
|
110 |
.bws_pro_version_tooltip .bws_button {
|
147 |
color: #666;
|
148 |
}
|
149 |
/* style for mini-block (ex. google map) */
|
150 |
+
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
151 |
width: auto;
|
152 |
}
|
153 |
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
155 |
text-align: center;
|
156 |
width: 200px;
|
157 |
}
|
158 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
159 |
display: inline-block;
|
160 |
line-height: 1.5;
|
161 |
}
|
174 |
float: none;
|
175 |
text-align: center;
|
176 |
}
|
177 |
+
.bws_pro_version_tooltip a {
|
178 |
display: inline-block;
|
179 |
line-height: 1.5;
|
180 |
}
|
189 |
}
|
190 |
|
191 |
/*
|
192 |
+
* styles for banner
|
193 |
*/
|
194 |
.bws_banner_on_plugin_page {
|
195 |
border: 1px solid #d4d4d4;
|
213 |
}
|
214 |
div.bws_banner_on_plugin_page .button {
|
215 |
float: right;
|
216 |
+
border: none;
|
217 |
font-size: 14px;
|
218 |
margin: 18px 40px;
|
219 |
padding: 12px 29px;
|
232 |
line-height: 26px;
|
233 |
}
|
234 |
.bws_banner_on_plugin_page .button:hover,
|
235 |
+
.bws_banner_on_plugin_page .button:focus {
|
236 |
background: #222;
|
237 |
color: #FFF;
|
238 |
}
|
262 |
color: #000;
|
263 |
font-size: 16px;
|
264 |
line-height: 26px;
|
265 |
+
padding: 13px 14px 14px;
|
266 |
}
|
267 |
.bws_banner_to_settings_joint .icon span.dashicons-admin-plugins {
|
268 |
font-size: 48px;
|
320 |
/* #### Mobile Phones Portrait or Landscape #### */
|
321 |
@media screen and (max-device-width: 768px) {
|
322 |
.bws_banner_on_plugin_page .text,
|
323 |
+
.bws_banner_on_plugin_page .icon,
|
324 |
.bws_banner_on_plugin_page .button_div,
|
325 |
.bws_banner_on_plugin_page .button {
|
326 |
float: none;
|
355 |
position: relative;
|
356 |
margin: 3px 5px;
|
357 |
width: 28px;
|
358 |
+
display: inline-block;
|
359 |
}
|
360 |
.bws_help_box:not(.dashicons) {
|
361 |
vertical-align: middle;
|
bws_menu/product_list.php
CHANGED
@@ -12,7 +12,7 @@ $bws_plugins_category = array(
|
|
12 |
'site-stats' => array( 'name' => __( 'Site Stats', 'bestwebsoft' ) ),
|
13 |
'social' => array( 'name' => __( 'Social', 'bestwebsoft' ) ),
|
14 |
'utilities' => array( 'name' => __( 'Utilities', 'bestwebsoft' ) ),
|
15 |
-
'other' => array( 'name' => __( 'Other', 'bestwebsoft' ) ),
|
16 |
);
|
17 |
|
18 |
$bws_plugins = array(
|
@@ -89,7 +89,7 @@ $bws_plugins = array(
|
|
89 |
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
90 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
91 |
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
92 |
-
),
|
93 |
'db-manager/db-manager.php' => array(
|
94 |
'category' => array( 'utilities' ),
|
95 |
'name' => 'DB Manager',
|
@@ -97,7 +97,7 @@ $bws_plugins = array(
|
|
97 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
98 |
'install_url' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
99 |
'settings' => 'admin.php?page=db-manager.php',
|
100 |
-
'icon' =>
|
101 |
),
|
102 |
'donate-button/donate.php' => array(
|
103 |
'category' => array( 'other' ),
|
@@ -136,7 +136,7 @@ $bws_plugins = array(
|
|
136 |
'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
|
137 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
138 |
'settings' => 'admin.php?page=featured-posts.php'
|
139 |
-
),
|
140 |
'gallery-plugin/gallery-plugin.php' => array(
|
141 |
'category' => array( 'content-and-media', 'recommended' ),
|
142 |
'name' => 'Gallery',
|
@@ -213,14 +213,14 @@ $bws_plugins = array(
|
|
213 |
'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
|
214 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/google-sitemap/buy/?k=7ea384a5cc36cb4c22741caa20dcd56d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
215 |
'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
|
216 |
-
),
|
217 |
'google-shortlink/google-shortlink.php' => array(
|
218 |
'category' => array( 'other' ),
|
219 |
'name' => 'Google Shortlink',
|
220 |
'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
|
221 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
222 |
'settings' => 'admin.php?page=gglshrtlnk_options'
|
223 |
-
),
|
224 |
'htaccess/htaccess.php' => array(
|
225 |
'category' => array( 'security' ),
|
226 |
'name' => 'Htaccess',
|
@@ -274,7 +274,7 @@ $bws_plugins = array(
|
|
274 |
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
275 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/multilanguage/buy/?k=2d1121cd9a5ced583fc29eefd51bdf57&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
276 |
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
277 |
-
),
|
278 |
'pagination/pagination.php' => array(
|
279 |
'category' => array( 'content-and-media' ),
|
280 |
'name' => 'Pagination',
|
@@ -353,6 +353,13 @@ $bws_plugins = array(
|
|
353 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
355 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
'realty/realty.php' => array(
|
357 |
'category' => array( 'content-and-media' ),
|
358 |
'name' => 'Realty',
|
@@ -362,7 +369,7 @@ $bws_plugins = array(
|
|
362 |
'pro_version' => 'realty-pro/realty-pro.php',
|
363 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
364 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
365 |
-
),
|
366 |
're-attacher/re-attacher.php' => array(
|
367 |
'category' => array( 'utilities' ),
|
368 |
'name' => 'Re-attacher',
|
@@ -399,7 +406,10 @@ $bws_plugins = array(
|
|
399 |
'name' => 'Social Buttons Pack',
|
400 |
'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
|
401 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
402 |
-
'settings' => 'admin.php?page=social-buttons.php'
|
|
|
|
|
|
|
403 |
),
|
404 |
'subscriber/subscriber.php' => array(
|
405 |
'category' => array( 'social', 'recommended' ),
|
@@ -423,8 +433,11 @@ $bws_plugins = array(
|
|
423 |
'name' => 'Timesheet',
|
424 |
'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
|
425 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
426 |
-
'settings' => 'admin.php?page=timesheet_settings'
|
427 |
-
|
|
|
|
|
|
|
428 |
'twitter-plugin/twitter.php' => array(
|
429 |
'category' => array( 'social' ),
|
430 |
'name' => 'Twitter',
|
@@ -454,7 +467,7 @@ $bws_plugins = array(
|
|
454 |
'pro_version' => 'user-role-pro/user-role-pro.php',
|
455 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/user-role/buy/?k=cfa9cea6613fb3d7c0a3622fa2faaf46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
456 |
'pro_settings' => 'admin.php?page=user-role-pro.php'
|
457 |
-
),
|
458 |
'visitors-online/visitors-online.php' => array(
|
459 |
'category' => array( 'site-stats' ),
|
460 |
'name' => 'Visitors Online',
|
@@ -464,7 +477,7 @@ $bws_plugins = array(
|
|
464 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
465 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
466 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
467 |
-
),
|
468 |
'zendesk-help-center/zendesk-help-center.php' => array(
|
469 |
'category' => array( 'utilities' ),
|
470 |
'name' => 'Zendesk Help Center',
|
@@ -475,25 +488,25 @@ $bws_plugins = array(
|
|
475 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/buy/?k=45199e4538b5befe4d9566868a61a3aa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
476 |
'pro_settings' => 'admin.php?page=zendesk_hc_pro.php&tab=settings'
|
477 |
)
|
478 |
-
);
|
479 |
|
480 |
-
$themes = array(
|
481 |
-
(object) array(
|
482 |
'name' => 'Opening',
|
483 |
'slug' => 'opening',
|
484 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/opening-job-board-wordpress-theme/'
|
485 |
),
|
486 |
-
(object) array(
|
487 |
'name' => 'Real Estate',
|
488 |
'slug' => 'realestate',
|
489 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/real-estate-creative-wordpress-theme/'
|
490 |
),
|
491 |
-
(object) array(
|
492 |
'name' => 'Renty',
|
493 |
'slug' => 'renty',
|
494 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/renty-car-rental-booking-wordpress-theme/'
|
495 |
),
|
496 |
-
(object) array(
|
497 |
'name' => 'Unity',
|
498 |
'slug' => 'unity',
|
499 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/unity-multipurpose-wordpress-theme/'
|
12 |
'site-stats' => array( 'name' => __( 'Site Stats', 'bestwebsoft' ) ),
|
13 |
'social' => array( 'name' => __( 'Social', 'bestwebsoft' ) ),
|
14 |
'utilities' => array( 'name' => __( 'Utilities', 'bestwebsoft' ) ),
|
15 |
+
'other' => array( 'name' => __( 'Other', 'bestwebsoft' ) ),
|
16 |
);
|
17 |
|
18 |
$bws_plugins = array(
|
89 |
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
90 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
91 |
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
92 |
+
),
|
93 |
'db-manager/db-manager.php' => array(
|
94 |
'category' => array( 'utilities' ),
|
95 |
'name' => 'DB Manager',
|
97 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
98 |
'install_url' => 'http://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
99 |
'settings' => 'admin.php?page=db-manager.php',
|
100 |
+
'icon' => bws_menu_url( 'icons/plugins/' ) . 'db-manager.png'
|
101 |
),
|
102 |
'donate-button/donate.php' => array(
|
103 |
'category' => array( 'other' ),
|
136 |
'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
|
137 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
138 |
'settings' => 'admin.php?page=featured-posts.php'
|
139 |
+
),
|
140 |
'gallery-plugin/gallery-plugin.php' => array(
|
141 |
'category' => array( 'content-and-media', 'recommended' ),
|
142 |
'name' => 'Gallery',
|
213 |
'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
|
214 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/google-sitemap/buy/?k=7ea384a5cc36cb4c22741caa20dcd56d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
215 |
'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
|
216 |
+
),
|
217 |
'google-shortlink/google-shortlink.php' => array(
|
218 |
'category' => array( 'other' ),
|
219 |
'name' => 'Google Shortlink',
|
220 |
'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
|
221 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
222 |
'settings' => 'admin.php?page=gglshrtlnk_options'
|
223 |
+
),
|
224 |
'htaccess/htaccess.php' => array(
|
225 |
'category' => array( 'security' ),
|
226 |
'name' => 'Htaccess',
|
274 |
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
275 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/multilanguage/buy/?k=2d1121cd9a5ced583fc29eefd51bdf57&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
276 |
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
277 |
+
),
|
278 |
'pagination/pagination.php' => array(
|
279 |
'category' => array( 'content-and-media' ),
|
280 |
'name' => 'Pagination',
|
353 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
355 |
),
|
356 |
+
'rating-bws/rating-bws.php' => array(
|
357 |
+
'category' => array( 'content-and-media' ),
|
358 |
+
'name' => 'Rating',
|
359 |
+
'description' => 'Add rating plugin to your WordPress website to receive feedback from your customers.',
|
360 |
+
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
+
'settings' => 'admin.php?page=rating.php'
|
362 |
+
),
|
363 |
'realty/realty.php' => array(
|
364 |
'category' => array( 'content-and-media' ),
|
365 |
'name' => 'Realty',
|
369 |
'pro_version' => 'realty-pro/realty-pro.php',
|
370 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
371 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
372 |
+
),
|
373 |
're-attacher/re-attacher.php' => array(
|
374 |
'category' => array( 'utilities' ),
|
375 |
'name' => 'Re-attacher',
|
406 |
'name' => 'Social Buttons Pack',
|
407 |
'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
|
408 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
409 |
+
'settings' => 'admin.php?page=social-buttons.php',
|
410 |
+
'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
|
411 |
+
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/buy/?k=e7059cacde0d275b224a5d995c9160fd&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
412 |
+
'pro_settings' => 'admin.php?page=social-buttons.php'
|
413 |
),
|
414 |
'subscriber/subscriber.php' => array(
|
415 |
'category' => array( 'social', 'recommended' ),
|
433 |
'name' => 'Timesheet',
|
434 |
'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
|
435 |
'link' => 'http://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
436 |
+
'settings' => 'admin.php?page=timesheet_settings',
|
437 |
+
'pro_version' => 'timesheet-pro/timesheet-pro.php',
|
438 |
+
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/timesheet/buy/?k=a448ce4cab0d365b7774c9bc3903b851&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
439 |
+
'pro_settings' => 'admin.php?page=timesheet_pro_settings'
|
440 |
+
),
|
441 |
'twitter-plugin/twitter.php' => array(
|
442 |
'category' => array( 'social' ),
|
443 |
'name' => 'Twitter',
|
467 |
'pro_version' => 'user-role-pro/user-role-pro.php',
|
468 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/user-role/buy/?k=cfa9cea6613fb3d7c0a3622fa2faaf46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
469 |
'pro_settings' => 'admin.php?page=user-role-pro.php'
|
470 |
+
),
|
471 |
'visitors-online/visitors-online.php' => array(
|
472 |
'category' => array( 'site-stats' ),
|
473 |
'name' => 'Visitors Online',
|
477 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
478 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
479 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
480 |
+
),
|
481 |
'zendesk-help-center/zendesk-help-center.php' => array(
|
482 |
'category' => array( 'utilities' ),
|
483 |
'name' => 'Zendesk Help Center',
|
488 |
'purchase' => 'http://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/buy/?k=45199e4538b5befe4d9566868a61a3aa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
489 |
'pro_settings' => 'admin.php?page=zendesk_hc_pro.php&tab=settings'
|
490 |
)
|
491 |
+
);
|
492 |
|
493 |
+
$themes = array(
|
494 |
+
(object) array(
|
495 |
'name' => 'Opening',
|
496 |
'slug' => 'opening',
|
497 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/opening-job-board-wordpress-theme/'
|
498 |
),
|
499 |
+
(object) array(
|
500 |
'name' => 'Real Estate',
|
501 |
'slug' => 'realestate',
|
502 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/real-estate-creative-wordpress-theme/'
|
503 |
),
|
504 |
+
(object) array(
|
505 |
'name' => 'Renty',
|
506 |
'slug' => 'renty',
|
507 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/renty-car-rental-booking-wordpress-theme/'
|
508 |
),
|
509 |
+
(object) array(
|
510 |
'name' => 'Unity',
|
511 |
'slug' => 'unity',
|
512 |
'href' => 'http://bestwebsoft.com/products/wordpress/themes/unity-multipurpose-wordpress-theme/'
|
css/frontend_style.css
CHANGED
@@ -26,14 +26,14 @@ ul.gallery {
|
|
26 |
-webkit-box-sizing: content-box; /* Safari */
|
27 |
}
|
28 |
.rtl .gallery_box li img {
|
|
|
29 |
float: right;
|
30 |
-
margin:0 0 10px 10px;
|
31 |
}
|
32 |
.gallery_box p {
|
33 |
-
margin-bottom:0px;
|
34 |
}
|
35 |
.gallery_detail_box {
|
36 |
-
float:left;
|
37 |
clear: both;
|
38 |
}
|
39 |
.rtl .gallery_detail_box {
|
@@ -58,17 +58,26 @@ ul.gallery {
|
|
58 |
.rtl .gallery .gllr_image_block {
|
59 |
float: right;
|
60 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
#content .gallery .gllr_image_block a img {
|
|
|
|
|
62 |
margin-top: 0;
|
63 |
box-sizing: content-box;
|
64 |
-moz-box-sizing: content-box; /*Firefox 1-3*/
|
65 |
-webkit-box-sizing: content-box; /* Safari */
|
66 |
}
|
67 |
-
#content .gallery_box_single
|
|
|
|
|
68 |
word-wrap: break-word;
|
69 |
}
|
70 |
#content .gallery_box_single .gallery .gllr_image_block p {
|
71 |
-
border: 1px solid #BDBDBD;
|
72 |
margin: 5px 6px 0 0;
|
73 |
padding: 0;
|
74 |
box-sizing: content-box;
|
@@ -81,7 +90,9 @@ ul.gallery {
|
|
81 |
.gllr_single_image_text {
|
82 |
font-size: 12px;
|
83 |
color: #888;
|
|
|
84 |
word-break: break-word;
|
|
|
85 |
}
|
86 |
.gallery li {
|
87 |
float: left;
|
@@ -111,12 +122,13 @@ ul.gallery {
|
|
111 |
border-style: solid;
|
112 |
}
|
113 |
/* template fix for theme 2015 */
|
114 |
-
.
|
115 |
-
.single-gallery .site-content .site-content,
|
116 |
-
.single-bws-gallery .site-content .site-content {
|
117 |
margin-left: 0;
|
118 |
-
width:
|
119 |
-
|
|
|
|
|
|
|
120 |
}
|
121 |
#ajax_update_postmeta,
|
122 |
#ajax_update_images {
|
@@ -142,6 +154,7 @@ ul.gallery {
|
|
142 |
float: right;
|
143 |
}
|
144 |
.tax-gallery_categories .site-content .site-content {
|
|
|
145 |
width: 100%;
|
146 |
margin-left: 0;
|
147 |
margin-right: 0;
|
@@ -163,6 +176,23 @@ ul.gallery {
|
|
163 |
margin-bottom: 5.25em;
|
164 |
}
|
165 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
/* fix pagination */
|
167 |
.gllr_pagination.pagination {
|
168 |
margin: 0 0 20px;
|
26 |
-webkit-box-sizing: content-box; /* Safari */
|
27 |
}
|
28 |
.rtl .gallery_box li img {
|
29 |
+
margin: 0 0 10px 10px;
|
30 |
float: right;
|
|
|
31 |
}
|
32 |
.gallery_box p {
|
33 |
+
margin-bottom: 0px;
|
34 |
}
|
35 |
.gallery_detail_box {
|
36 |
+
float: left;
|
37 |
clear: both;
|
38 |
}
|
39 |
.rtl .gallery_detail_box {
|
58 |
.rtl .gallery .gllr_image_block {
|
59 |
float: right;
|
60 |
}
|
61 |
+
#content .gallery .gllr_image_block a {
|
62 |
+
display: block;
|
63 |
+
position: relative;
|
64 |
+
color: rgba(0,0,0,0);
|
65 |
+
border-bottom: none;
|
66 |
+
}
|
67 |
#content .gallery .gllr_image_block a img {
|
68 |
+
display: block;
|
69 |
+
border-style: solid;
|
70 |
margin-top: 0;
|
71 |
box-sizing: content-box;
|
72 |
-moz-box-sizing: content-box; /*Firefox 1-3*/
|
73 |
-webkit-box-sizing: content-box; /* Safari */
|
74 |
}
|
75 |
+
#content .gallery_box_single,
|
76 |
+
#bws_gallery_image_title {
|
77 |
+
word-break: break-word;
|
78 |
word-wrap: break-word;
|
79 |
}
|
80 |
#content .gallery_box_single .gallery .gllr_image_block p {
|
|
|
81 |
margin: 5px 6px 0 0;
|
82 |
padding: 0;
|
83 |
box-sizing: content-box;
|
90 |
.gllr_single_image_text {
|
91 |
font-size: 12px;
|
92 |
color: #888;
|
93 |
+
line-height: normal;
|
94 |
word-break: break-word;
|
95 |
+
word-wrap: break-word;
|
96 |
}
|
97 |
.gallery li {
|
98 |
float: left;
|
122 |
border-style: solid;
|
123 |
}
|
124 |
/* template fix for theme 2015 */
|
125 |
+
.site-content .gllr_wrap .site-content {
|
|
|
|
|
126 |
margin-left: 0;
|
127 |
+
width: 100%;
|
128 |
+
float: none;
|
129 |
+
}
|
130 |
+
.gllr_twentyseventeen .site-content .gllr_wrap .site-content {
|
131 |
+
padding-top: 0;
|
132 |
}
|
133 |
#ajax_update_postmeta,
|
134 |
#ajax_update_images {
|
154 |
float: right;
|
155 |
}
|
156 |
.tax-gallery_categories .site-content .site-content {
|
157 |
+
padding-top: 0;
|
158 |
width: 100%;
|
159 |
margin-left: 0;
|
160 |
margin-right: 0;
|
176 |
margin-bottom: 5.25em;
|
177 |
}
|
178 |
}
|
179 |
+
/* template fix for theme 2017 */
|
180 |
+
@media screen and (min-width: 48em) {
|
181 |
+
.gllr_twentyseventeen .gllr_wrap #primary {
|
182 |
+
float: left;
|
183 |
+
width: 58%;
|
184 |
+
}
|
185 |
+
.gllr_twentyseventeen .gllr_wrap #secondary {
|
186 |
+
float: right;
|
187 |
+
padding-top: 0;
|
188 |
+
width: 36%;
|
189 |
+
}
|
190 |
+
body.gllr_twentyseventeen .gllr_wrap #primary .entry-header,
|
191 |
+
body.gllr_twentyseventeen .gllr_wrap #primary .entry-content {
|
192 |
+
float: none;
|
193 |
+
width: 100%;
|
194 |
+
}
|
195 |
+
}
|
196 |
/* fix pagination */
|
197 |
.gllr_pagination.pagination {
|
198 |
margin: 0 0 20px;
|
css/style.css
CHANGED
@@ -1,15 +1,3 @@
|
|
1 |
-
#adminmenu #menu-posts-gallery:hover div.wp-menu-image:before,
|
2 |
-
#adminmenu #menu-posts-gallery.wp-has-current-submenu div.wp-menu-image:before,
|
3 |
-
#adminmenu #menu-posts-gallery div.wp-menu-image:before,
|
4 |
-
#adminmenu #menu-posts-bws-gallery:hover div.wp-menu-image:before,
|
5 |
-
#adminmenu #menu-posts-bws-gallery.wp-has-current-submenu div.wp-menu-image:before,
|
6 |
-
#adminmenu #menu-posts-bws-gallery div.wp-menu-image:before {
|
7 |
-
background: url("../images/menu_single.png") no-repeat scroll center 8px transparent;
|
8 |
-
content: '';
|
9 |
-
}
|
10 |
-
#adminmenu #menu-posts-gallery.wp-not-current-submenu div.wp-menu-image {
|
11 |
-
opacity: 0.7;
|
12 |
-
}
|
13 |
/*
|
14 |
* styles for gallery page
|
15 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
* styles for gallery page
|
3 |
*/
|
gallery-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Add beautiful galleries, albums & images to your Wordpress website
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: gallery-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 4.4.
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -29,13 +29,6 @@ License: GPLv2 or later
|
|
29 |
|
30 |
require_once( dirname( __FILE__ ) . '/inc/deprecated.php' );
|
31 |
|
32 |
-
global $gllr_filenames, $gllr_filepath, $gllr_themepath;
|
33 |
-
$gllr_filepath = WP_PLUGIN_DIR . '/gallery-plugin/template/';
|
34 |
-
$gllr_themepath = get_stylesheet_directory() . '/';
|
35 |
-
|
36 |
-
$gllr_filenames[] = 'gallery-single-template.php';
|
37 |
-
$gllr_filenames[] = 'gallery-template.php';
|
38 |
-
|
39 |
if ( ! function_exists( 'add_gllr_admin_menu' ) ) {
|
40 |
function add_gllr_admin_menu() {
|
41 |
global $submenu, $gllr_options;
|
@@ -82,6 +75,11 @@ if ( ! function_exists ( 'gllr_init' ) ) {
|
|
82 |
/* Call register settings function */
|
83 |
gllr_settings();
|
84 |
|
|
|
|
|
|
|
|
|
|
|
85 |
/* Add media button to the gallery post type */
|
86 |
if (
|
87 |
( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) == $gllr_options['post_type_name'] ) ||
|
@@ -108,8 +106,6 @@ if ( ! function_exists ( 'gllr_admin_init' ) ) {
|
|
108 |
if ( empty( $bws_plugin_info ) ) {
|
109 |
$bws_plugin_info = array( 'id' => '79', 'version' => $gllr_plugin_info["Version"] );
|
110 |
}
|
111 |
-
/* Call register settings function */
|
112 |
-
gllr_settings();
|
113 |
/* add gallery to global $bws_shortcode_list */
|
114 |
$bws_shortcode_list['gllr'] = array( 'name' => 'Gallery', 'js_function' => 'gllr_shortcode_init' );
|
115 |
|
@@ -121,7 +117,7 @@ if ( ! function_exists ( 'gllr_admin_init' ) ) {
|
|
121 |
/* Register settings function */
|
122 |
if ( ! function_exists( 'gllr_settings' ) ) {
|
123 |
function gllr_settings() {
|
124 |
-
global $gllr_options, $gllr_plugin_info, $gllr_option_defaults;
|
125 |
|
126 |
$gllr_option_defaults = array(
|
127 |
'plugin_option_version' => $gllr_plugin_info["Version"],
|
@@ -145,12 +141,13 @@ if ( ! function_exists( 'gllr_settings' ) ) {
|
|
145 |
'return_link_page' => 'gallery_template_url',
|
146 |
'return_link_url' => '',
|
147 |
'return_link_shortcode' => 0,
|
148 |
-
'rewrite_template' => 1,
|
149 |
'display_demo_notice' => 1,
|
150 |
'display_settings_notice' => 1,
|
151 |
'first_install' => strtotime( "now" ),
|
152 |
'suggest_feature_banner' => 1,
|
153 |
-
'post_type_name' => 'bws-gallery'
|
|
|
|
|
154 |
);
|
155 |
|
156 |
/**
|
@@ -170,19 +167,43 @@ if ( ! function_exists( 'gllr_settings' ) ) {
|
|
170 |
$gllr_options = get_option( 'gllr_options' );
|
171 |
|
172 |
/* Array merge incase this version has added new options */
|
173 |
-
if (
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
/* using old post type name for updated plugin version */
|
180 |
-
if ( ! isset( $gllr_options['post_type_name'] ) )
|
181 |
$gllr_options['post_type_name'] = 'gallery';
|
182 |
-
}
|
183 |
|
184 |
$gllr_option_defaults['display_demo_notice'] = 0;
|
185 |
$gllr_option_defaults['display_settings_notice'] = 0;
|
|
|
186 |
$gllr_options = array_merge( $gllr_option_defaults, $gllr_options );
|
187 |
$gllr_options['plugin_option_version'] = $gllr_plugin_info["Version"];
|
188 |
|
@@ -190,8 +211,6 @@ if ( ! function_exists( 'gllr_settings' ) ) {
|
|
190 |
$gllr_options['hide_premium_options'] = array();
|
191 |
|
192 |
update_option( 'gllr_options', $gllr_options );
|
193 |
-
/* update templates when updating plugin */
|
194 |
-
gllr_plugin_install();
|
195 |
/* registering uninstall hook */
|
196 |
if ( is_multisite() ) {
|
197 |
switch_to_blog( 1 );
|
@@ -239,7 +258,6 @@ if ( ! function_exists( 'gllr_include_demo_data' ) ) {
|
|
239 |
if ( ! function_exists( 'gllr_plugin_activate' ) ) {
|
240 |
function gllr_plugin_activate() {
|
241 |
gllr_settings();
|
242 |
-
gllr_plugin_install();
|
243 |
/* first register CPT */
|
244 |
gllr_post_type_images();
|
245 |
/* then flush rules on activation to add custom post */
|
@@ -255,57 +273,6 @@ if ( ! function_exists( 'gllr_plugin_activate' ) ) {
|
|
255 |
}
|
256 |
}
|
257 |
|
258 |
-
/**
|
259 |
-
* Function to copy or update templates
|
260 |
-
*/
|
261 |
-
if ( ! function_exists( 'gllr_plugin_install' ) ) {
|
262 |
-
function gllr_plugin_install() {
|
263 |
-
global $gllr_filenames, $gllr_filepath, $gllr_themepath, $gllr_options;
|
264 |
-
foreach ( $gllr_filenames as $filename ) {
|
265 |
-
if ( ! file_exists( $gllr_themepath . $filename ) ) {
|
266 |
-
$handle = @fopen( $gllr_filepath . $filename, "r" );
|
267 |
-
$contents = @fread( $handle, filesize( $gllr_filepath . $filename ) );
|
268 |
-
@fclose( $handle );
|
269 |
-
if ( ! ( $handle = @fopen( $gllr_themepath . $filename, 'w' ) ) )
|
270 |
-
return false;
|
271 |
-
@fwrite( $handle, $contents );
|
272 |
-
@fclose( $handle );
|
273 |
-
@chmod( $gllr_themepath . $filename, octdec( 755 ) );
|
274 |
-
} elseif ( ! isset( $gllr_options['rewrite_template'] ) || 1 == $gllr_options['rewrite_template'] ) {
|
275 |
-
$handle = @fopen( $gllr_themepath . $filename, "r" );
|
276 |
-
$contents = @fread( $handle, filesize( $gllr_themepath . $filename ) );
|
277 |
-
@fclose( $handle );
|
278 |
-
if ( ! ( $handle = @fopen( $gllr_themepath . $filename . '.bak', 'w' ) ) )
|
279 |
-
return false;
|
280 |
-
@fwrite( $handle, $contents );
|
281 |
-
@fclose( $handle );
|
282 |
-
|
283 |
-
$handle = @fopen( $gllr_filepath . $filename, "r" );
|
284 |
-
$contents = @fread( $handle, filesize( $gllr_filepath . $filename ) );
|
285 |
-
@fclose( $handle );
|
286 |
-
if ( ! ( $handle = @fopen( $gllr_themepath . $filename, 'w' ) ) )
|
287 |
-
return false;
|
288 |
-
@fwrite( $handle, $contents );
|
289 |
-
@fclose( $handle );
|
290 |
-
@chmod( $gllr_themepath . $filename, octdec( 755 ) );
|
291 |
-
}
|
292 |
-
}
|
293 |
-
}
|
294 |
-
}
|
295 |
-
|
296 |
-
if ( ! function_exists ( 'gllr_after_switch_theme' ) ) {
|
297 |
-
function gllr_after_switch_theme() {
|
298 |
-
global $gllr_filenames, $gllr_themepath;
|
299 |
-
$file_exists_flag = true;
|
300 |
-
foreach ( $gllr_filenames as $filename ) {
|
301 |
-
if ( ! file_exists( $gllr_themepath . $filename ) )
|
302 |
-
$file_exists_flag = false;
|
303 |
-
}
|
304 |
-
if ( ! $file_exists_flag )
|
305 |
-
gllr_plugin_install();
|
306 |
-
}
|
307 |
-
}
|
308 |
-
|
309 |
/**
|
310 |
* Function for update all gallery images to new version ( Stable tag: 4.3.6 )
|
311 |
*/
|
@@ -344,26 +311,6 @@ if ( ! function_exists( 'gllr_plugin_upgrade' ) ) {
|
|
344 |
}
|
345 |
}
|
346 |
|
347 |
-
if ( ! function_exists( 'gllr_admin_error' ) ) {
|
348 |
-
function gllr_admin_error() {
|
349 |
-
global $gllr_filenames, $gllr_filepath, $gllr_themepath, $gllr_options;
|
350 |
-
|
351 |
-
$post = isset( $_REQUEST['post'] ) ? $_REQUEST['post'] : "" ;
|
352 |
-
$post_type = isset( $_REQUEST['post_type'] ) ? $_REQUEST['post_type'] : get_post_type( $post );
|
353 |
-
|
354 |
-
if ( $gllr_options['post_type_name'] == $post_type || ( isset( $_REQUEST['page'] ) && 'gallery-plugin.php' == $_REQUEST['page'] ) ) {
|
355 |
-
$file_exists_flag = true;
|
356 |
-
foreach ( $gllr_filenames as $filename ) {
|
357 |
-
if ( ! file_exists( $gllr_themepath . $filename ) )
|
358 |
-
$file_exists_flag = false;
|
359 |
-
}
|
360 |
-
if ( ! $file_exists_flag ) { ?>
|
361 |
-
<div class="error"><p><strong><?php printf( __( "The following files '%s' and '%s' were not found in the directory of your theme. Please copy them from the directory `%s` to the directory of your theme for the correct work of the Gallery plugin", 'gallery-plugin' ), 'gallery-template.php','gallery-single-template.php', '/wp-content/plugins/gallery-plugin/template/' ); ?></strong></p></div>
|
362 |
-
<?php }
|
363 |
-
}
|
364 |
-
}
|
365 |
-
}
|
366 |
-
|
367 |
/* Create post type for Gallery */
|
368 |
if ( ! function_exists( 'gllr_post_type_images' ) ) {
|
369 |
function gllr_post_type_images() {
|
@@ -387,6 +334,7 @@ if ( ! function_exists( 'gllr_post_type_images' ) ) {
|
|
387 |
'exclude_from_search' => true,
|
388 |
'query_var' => true,
|
389 |
'rewrite' => true,
|
|
|
390 |
'capability_type' => 'post',
|
391 |
'has_archive' => false,
|
392 |
'hierarchical' => true,
|
@@ -394,44 +342,12 @@ if ( ! function_exists( 'gllr_post_type_images' ) ) {
|
|
394 |
'register_meta_box_cb' => 'init_metaboxes_gallery',
|
395 |
'taxonomy' => array( 'gallery_categories' )
|
396 |
) );
|
397 |
-
}
|
398 |
-
}
|
399 |
-
|
400 |
-
if ( ! function_exists( 'gllr_addImageAncestorToMenu' ) ) {
|
401 |
-
function gllr_addImageAncestorToMenu( $classes ) {
|
402 |
-
global $gllr_options;
|
403 |
-
|
404 |
-
if ( is_singular( $gllr_options['post_type_name'] ) ) {
|
405 |
-
global $wpdb, $post;
|
406 |
-
|
407 |
-
if ( empty( $post->ancestors ) ) {
|
408 |
-
$parent_id = $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' AND $wpdb->posts.ID = $wpdb->postmeta.post_id" );
|
409 |
-
while ( $parent_id ) {
|
410 |
-
$page = get_page( $parent_id );
|
411 |
-
if ( 0 < $page->post_parent )
|
412 |
-
$parent_id = $page->post_parent;
|
413 |
-
else
|
414 |
-
break;
|
415 |
-
}
|
416 |
-
wp_reset_query();
|
417 |
-
if ( empty( $parent_id ) )
|
418 |
-
return $classes;
|
419 |
-
$post_ancestors = array( $parent_id );
|
420 |
-
} else {
|
421 |
-
$post_ancestors = $post->ancestors;
|
422 |
-
}
|
423 |
-
|
424 |
-
$menuItems = $wpdb->get_col( "SELECT DISTINCT `post_id` FROM $wpdb->postmeta WHERE `meta_key` = '_menu_item_object_id' AND `meta_value` IN (" . implode( ',', $post_ancestors ) . ")" );
|
425 |
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
}
|
431 |
-
}
|
432 |
-
}
|
433 |
}
|
434 |
-
return $classes;
|
435 |
}
|
436 |
}
|
437 |
|
@@ -581,14 +497,6 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
|
581 |
} else {
|
582 |
delete_post_meta( $post_id, 'gllr_download_link' );
|
583 |
}
|
584 |
-
/* flush rules if the page with gallery-template is saved */
|
585 |
-
if ( isset( $post->post_type ) && $post->post_type == 'page' ) {
|
586 |
-
$post_meta_value = $wpdb->get_var( "SELECT $wpdb->postmeta.meta_value FROM $wpdb->postmeta, $wpdb->posts WHERE meta_key = '_wp_page_template' AND ( post_status = 'publish' OR post_status = 'private' ) AND $wpdb->posts.ID = $wpdb->postmeta.post_id AND $wpdb->posts.ID = $post_id" );
|
587 |
-
if ( 'gallery-template.php' == $post_meta_value ) {
|
588 |
-
/* update rewrite_rules */
|
589 |
-
flush_rewrite_rules();
|
590 |
-
}
|
591 |
-
}
|
592 |
}
|
593 |
}
|
594 |
|
@@ -597,20 +505,21 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
|
597 |
*/
|
598 |
if ( ! function_exists( 'gllr_custom_permalinks' ) ) {
|
599 |
function gllr_custom_permalinks( $rules ) {
|
600 |
-
global $
|
601 |
$newrules = array();
|
602 |
-
|
603 |
-
if ( ! empty( $
|
604 |
-
|
605 |
-
|
606 |
-
if ( ! isset( $rules['(.+)/' . $parent . '/([^/]+)/?$'] ) || ! isset( $rules[ $parent . '/([^/]+)/?$'] ) ) {
|
607 |
-
$newrules['(.+)/' . $parent . '/([^/]+)/?$']
|
608 |
-
$newrules[ $parent . '/([^/]+)/?$']
|
609 |
-
$newrules[ $parent . '/page/([^/]+)/?$']
|
610 |
-
$newrules[ $parent . '/page/([^/]+)?$']
|
611 |
}
|
612 |
}
|
613 |
}
|
|
|
614 |
if ( false === $rules )
|
615 |
return $newrules;
|
616 |
|
@@ -618,30 +527,39 @@ if ( ! function_exists( 'gllr_custom_permalinks' ) ) {
|
|
618 |
}
|
619 |
}
|
620 |
|
621 |
-
|
622 |
-
|
623 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
$post_type = get_post_type();
|
625 |
-
$
|
626 |
-
|
627 |
-
foreach ( $gllr_filenames as $filename ) {
|
628 |
-
if ( file_exists( $gllr_themepath . $filename ) ) {
|
629 |
-
$file_exists_flag = true;
|
630 |
-
$template = '/gallery-single-template.php';
|
631 |
-
}
|
632 |
-
}
|
633 |
} elseif ( $gllr_options['post_type_name'] == $post_type && isset( $wp_query->query_vars["gallery_categories"] ) ) {
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
$template = '/gallery-template.php';
|
638 |
-
}
|
639 |
-
}
|
640 |
}
|
641 |
-
|
642 |
-
|
643 |
-
|
|
|
|
|
|
|
|
|
644 |
}
|
|
|
|
|
645 |
}
|
646 |
}
|
647 |
|
@@ -732,7 +650,7 @@ if ( ! function_exists( 'gllr_template_content' ) ) {
|
|
732 |
$border = 'padding:0;';
|
733 |
$border_images = 0;
|
734 |
}
|
735 |
-
$featured_image = ( false == $featured_image ) ? $image_attributes
|
736 |
$count++; ?>
|
737 |
<li><?php if ( ! empty( $featured_image[0] ) ) { ?>
|
738 |
<a rel="bookmark" href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>">
|
@@ -864,10 +782,10 @@ if ( ! function_exists( 'gllr_single_template_content' ) ) {
|
|
864 |
<?php }
|
865 |
if ( 1 == $gllr_options['return_link'] ) {
|
866 |
if ( 'gallery_template_url' == $gllr_options["return_link_page"] ) {
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
<div class="return_link gllr_return_link"><a href="<?php echo $gllr_options["return_link_url"]; ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
872 |
<?php }
|
873 |
}
|
@@ -1028,7 +946,8 @@ if ( ! function_exists( 'gllr_add_pdf_print_content' ) ) {
|
|
1028 |
</div><!-- .gallery_box_single -->';
|
1029 |
}
|
1030 |
$custom_content .= '<div class="gllr_clear"></div>';
|
1031 |
-
} elseif (
|
|
|
1032 |
if ( ! is_plugin_active( 'gallery-plugin/gallery-plugin.php' ) ) {
|
1033 |
} else {
|
1034 |
$custom_content .= "<style type='text/css'>
|
@@ -1456,30 +1375,6 @@ if ( ! function_exists( 'gllr_the_excerpt_max_charlength' ) ) {
|
|
1456 |
}
|
1457 |
}
|
1458 |
|
1459 |
-
if ( ! function_exists( 'gllr_page_css_class' ) ) {
|
1460 |
-
function gllr_page_css_class( $classes, $item ) {
|
1461 |
-
global $wpdb, $gllr_options;
|
1462 |
-
|
1463 |
-
$post_type = get_query_var( 'post_type' );
|
1464 |
-
$parent_id = 0;
|
1465 |
-
if ( $gllr_options['post_type_name'] == $post_type ) {
|
1466 |
-
$parent_id = $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' AND $wpdb->posts.ID = $wpdb->postmeta.post_id" );
|
1467 |
-
while ( $parent_id ) {
|
1468 |
-
$page = get_page( $parent_id );
|
1469 |
-
if ( 0 < $page->post_parent )
|
1470 |
-
$parent_id = $page->post_parent;
|
1471 |
-
else
|
1472 |
-
break;
|
1473 |
-
}
|
1474 |
-
wp_reset_query();
|
1475 |
-
}
|
1476 |
-
if ( $item->ID == $parent_id ) {
|
1477 |
-
array_push( $classes, 'current_page_item' );
|
1478 |
-
}
|
1479 |
-
return $classes;
|
1480 |
-
}
|
1481 |
-
}
|
1482 |
-
|
1483 |
if ( ! function_exists( 'gllr_settings_page' ) ) {
|
1484 |
function gllr_settings_page() {
|
1485 |
global $gllr_options, $wp_version, $gllr_plugin_info, $gllr_option_defaults, $gllr_BWS_demo_data;
|
@@ -1509,6 +1404,8 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
|
|
1509 |
$gllr_request_options = $hide_result['options'];
|
1510 |
}
|
1511 |
|
|
|
|
|
1512 |
$gllr_request_options["custom_size_name"] = $gllr_options["custom_size_name"];
|
1513 |
|
1514 |
$gllr_custom_image_size_w_album = ( isset( $_REQUEST['gllr_custom_image_size_w_album'] ) ) ? intval( trim( $_REQUEST['gllr_custom_image_size_w_album'] ) ) : $gllr_option_defaults["custom_size_px"][0][0];
|
@@ -1550,7 +1447,11 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
|
|
1550 |
$gllr_request_options["return_link_text"] = ( isset( $_REQUEST['gllr_return_link_text'] ) ) ? stripslashes( esc_html( $_REQUEST['gllr_return_link_text'] ) ) : $gllr_option_defaults["return_link_text"];
|
1551 |
$gllr_request_options["read_more_link_text"] = ( isset( $_REQUEST['gllr_read_more_link_text'] ) ) ? stripslashes( esc_html( $_REQUEST['gllr_read_more_link_text'] ) ) : $gllr_option_defaults["read_more_link_text"];
|
1552 |
|
1553 |
-
|
|
|
|
|
|
|
|
|
1554 |
|
1555 |
/**
|
1556 |
* rewriting post types name with unique one from default options
|
@@ -1652,6 +1553,17 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
|
|
1652 |
</div>
|
1653 |
<form class="bws_form" method="post" action="admin.php?page=gallery-plugin.php">
|
1654 |
<table class="gllr_settings_table form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1655 |
<tr valign="top">
|
1656 |
<th scope="row"><?php _e( 'Number of images in the row', 'gallery-plugin' ); ?> </th>
|
1657 |
<td>
|
@@ -1861,12 +1773,6 @@ if ( ! function_exists( 'gllr_settings_page' ) ) {
|
|
1861 |
<?php } ?>
|
1862 |
</td>
|
1863 |
</tr>
|
1864 |
-
<tr valign="top">
|
1865 |
-
<th scope="row"><?php _e( 'Rewrite templates after update', 'gallery-plugin' ); ?></th>
|
1866 |
-
<td>
|
1867 |
-
<input type="checkbox" name="gllr_rewrite_template" value="1" <?php if ( 1 == $gllr_options['rewrite_template'] ) echo 'checked="checked"'; ?> /> <span class="bws_info"><?php printf( __( "Turn off the checkbox, if You edited the file '%s' or '%s' file in your theme folder and You don't want to rewrite them", 'gallery-plugin' ), 'gallery-template.php', 'gallery-single-template.php' ); ?></span>
|
1868 |
-
</td>
|
1869 |
-
</tr>
|
1870 |
<?php if ( $gllr_options['post_type_name'] != $gllr_option_defaults['post_type_name'] ) { ?>
|
1871 |
<tr valign="top">
|
1872 |
<th scope="row"><?php _e( 'Rename gallery post type', 'gallery-plugin' ); ?></th>
|
@@ -2178,10 +2084,13 @@ if ( ! function_exists ( 'gllr_wp_footer' ) ) {
|
|
2178 |
if ( ! defined( 'BWS_ENQUEUE_ALL_SCRIPTS' ) && ! wp_script_is( 'gllr_js', 'registered' ) )
|
2179 |
return;
|
2180 |
|
|
|
|
|
2181 |
if ( ! wp_script_is( 'gllr_js', 'registered' ) )
|
2182 |
-
wp_enqueue_script( 'gllr_js', plugins_url( 'js/frontend_script.js', __FILE__ )
|
2183 |
else
|
2184 |
wp_enqueue_script( 'gllr_js' );
|
|
|
2185 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
2186 |
if ( ! ( is_plugin_active( 'portfolio-pro/portfolio-pro.php' ) && wp_script_is( 'prtfl_front_script', 'registered' ) ) ) {
|
2187 |
wp_enqueue_script( 'gllr_fancybox_mousewheel_js', plugins_url( 'fancybox/jquery.mousewheel-3.0.4.pack.js', __FILE__ ), array( 'jquery' ), true );
|
@@ -2238,6 +2147,12 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2238 |
<div class="gallery_box">
|
2239 |
<ul>
|
2240 |
<?php if ( $second_query->have_posts() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
2241 |
while ( $second_query->have_posts() ) {
|
2242 |
$second_query->the_post();
|
2243 |
$attachments = get_post_thumbnail_id( $post->ID );
|
@@ -2264,7 +2179,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2264 |
} ?>
|
2265 |
<li>
|
2266 |
<a rel="bookmark" href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>">
|
2267 |
-
<img width="<?php echo $gllr_options['custom_size_px'][0][0]; ?>" height="<?php echo $gllr_options['custom_size_px'][0][1]; ?>" style="width:<?php echo $gllr_options['custom_size_px'][0][0]; ?>px; height:<?php echo $gllr_options['custom_size_px'][0][1]; ?>px;" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" src="<?php echo $image_attributes[0]; ?>" />
|
2268 |
</a>
|
2269 |
<div class="gallery_detail_box">
|
2270 |
<div><?php the_title(); ?></div>
|
@@ -2317,7 +2232,8 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2317 |
$image_attributes = array( '' );
|
2318 |
} else {
|
2319 |
$image_attributes = wp_get_attachment_image_src( $attachments, 'album-thumb' );
|
2320 |
-
}
|
|
|
2321 |
if ( 1 == $gllr_options['border_images'] ) {
|
2322 |
$border = 'border-width: ' . $gllr_options['border_images_width'] . 'px; border-color:' . $gllr_options['border_images_color'] . ';border: ' . $gllr_options['border_images_width'] . 'px solid ' . $gllr_options['border_images_color'];
|
2323 |
} else {
|
@@ -2339,6 +2255,13 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2339 |
</div><!-- .gallery_box -->
|
2340 |
<?php } else {
|
2341 |
if ( $second_query->have_posts() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2342 |
while ( $second_query->have_posts() ) {
|
2343 |
$second_query->the_post(); ?>
|
2344 |
<div class="gallery_box_single">
|
@@ -2368,13 +2291,6 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2368 |
$image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
|
2369 |
$image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
|
2370 |
$image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
|
2371 |
-
if ( 1 == $gllr_options['border_images'] ) {
|
2372 |
-
$border = 'border-width: ' . $gllr_options['border_images_width'] . 'px; border-color:' . $gllr_options['border_images_color'] . ';border: ' . $gllr_options['border_images_width'] . 'px solid ' . $gllr_options['border_images_color'];
|
2373 |
-
$border_images = $gllr_options['border_images_width'] * 2;
|
2374 |
-
} else {
|
2375 |
-
$border = '';
|
2376 |
-
$border_images = 0;
|
2377 |
-
}
|
2378 |
if ( $count_image_block % $gllr_options['custom_image_row_count'] == 0 ) { ?>
|
2379 |
<div class="gllr_image_row">
|
2380 |
<?php } ?>
|
@@ -2406,10 +2322,10 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2406 |
<?php }
|
2407 |
if ( 1 == $gllr_options['return_link_shortcode'] ) {
|
2408 |
if ( 'gallery_template_url' == $gllr_options["return_link_page"] ) {
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
<div class="return_link gllr_return_link"><a href="<?php echo $gllr_options["return_link_url"]; ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
2414 |
<?php }
|
2415 |
} ?>
|
@@ -2454,7 +2370,7 @@ if ( ! function_exists( 'gllr_echo_inline_script' ) ) {
|
|
2454 |
'speedIn' : 500,
|
2455 |
'speedOut' : 300,
|
2456 |
'titleFormat' : function( title, currentArray, currentIndex, currentOpts ) {
|
2457 |
-
return '<div id="fancybox-title-inside">' + ( title.length ? '<span id="bws_gallery_image_title">' + title
|
2458 |
}<?php if ( $gllr_options['start_slideshow'] == 1 ) { ?>,
|
2459 |
'onComplete': function() {
|
2460 |
clearTimeout( jQuery.fancybox.slider );
|
@@ -3454,8 +3370,6 @@ if ( ! function_exists( 'gllr_add_tabs' ) ) {
|
|
3454 |
if ( ! function_exists ( 'gllr_admin_notices' ) ) {
|
3455 |
function gllr_admin_notices() {
|
3456 |
global $hook_suffix, $gllr_plugin_info, $gllr_BWS_demo_data, $gllr_options;
|
3457 |
-
/* add error if templates were not found in the theme directory */
|
3458 |
-
gllr_admin_error();
|
3459 |
|
3460 |
if ( 'plugins.php' == $hook_suffix || ( isset( $_GET['page'] ) && $_GET['page'] == 'gallery-plugin.php' ) ) {
|
3461 |
|
@@ -3481,13 +3395,7 @@ if ( ! function_exists ( 'gllr_admin_notices' ) ) {
|
|
3481 |
*/
|
3482 |
if ( ! function_exists( 'gllr_plugin_uninstall' ) ) {
|
3483 |
function gllr_plugin_uninstall() {
|
3484 |
-
global $
|
3485 |
-
|
3486 |
-
foreach ( $gllr_filenames as $filename ) {
|
3487 |
-
if ( file_exists( $gllr_themepath . $filename ) && ! unlink( $gllr_themepath . $filename ) ) {
|
3488 |
-
add_action( 'admin_notices', create_function( '', ' return "Error delete template file";' ) );
|
3489 |
-
}
|
3490 |
-
}
|
3491 |
|
3492 |
if ( ! function_exists( 'get_plugins' ) )
|
3493 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
@@ -3510,31 +3418,9 @@ if ( ! function_exists( 'gllr_plugin_uninstall' ) ) {
|
|
3510 |
gllr_include_demo_data();
|
3511 |
$gllr_BWS_demo_data->bws_remove_demo_data();
|
3512 |
|
3513 |
-
delete_option( 'gllr_options' );
|
3514 |
-
}
|
3515 |
-
} else {
|
3516 |
-
if ( function_exists( 'is_multisite' ) && is_multisite() ) {
|
3517 |
-
$old_blog = $wpdb->blogid;
|
3518 |
-
/* Get all blog ids */
|
3519 |
-
$blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
|
3520 |
-
foreach ( $blogids as $blog_id ) {
|
3521 |
-
switch_to_blog( $blog_id );
|
3522 |
-
/* change template attribute from 'gallery-template.php' to 'gallery-pro-template.php' for pages */
|
3523 |
-
$free_template_pages = $wpdb->get_col( "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" );
|
3524 |
-
if ( ! empty( $free_template_pages ) ) {
|
3525 |
-
$free_template_pages = implode( ',', $free_template_pages );
|
3526 |
-
$wpdb->query( "UPDATE $wpdb->postmeta SET meta_value = 'gallery-pro-template.php' WHERE post_id IN ( $free_template_pages )" );
|
3527 |
-
}
|
3528 |
-
}
|
3529 |
-
switch_to_blog( $old_blog );
|
3530 |
-
} else {
|
3531 |
-
/* change template attribute from 'gallery-template.php' to 'gallery-pro-template.php' for pages */
|
3532 |
-
$free_template_pages = $wpdb->get_col( "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" );
|
3533 |
-
if ( ! empty( $free_template_pages ) ) {
|
3534 |
-
$free_template_pages = implode( ',', $free_template_pages );
|
3535 |
-
$wpdb->query( "UPDATE $wpdb->postmeta SET meta_value = 'gallery-pro-template.php' WHERE post_id IN ( $free_template_pages )" );
|
3536 |
-
}
|
3537 |
}
|
|
|
3538 |
}
|
3539 |
|
3540 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
@@ -3557,13 +3443,8 @@ add_action( 'admin_init', 'gllr_admin_init' );
|
|
3557 |
|
3558 |
add_action( 'plugins_loaded', 'gllr_plugins_loaded' );
|
3559 |
|
3560 |
-
add_action( 'after_switch_theme', 'gllr_after_switch_theme', 10, 2 );
|
3561 |
-
|
3562 |
add_filter( 'rewrite_rules_array', 'gllr_custom_permalinks' ); /* Add custom permalink for gallery */
|
3563 |
|
3564 |
-
/* Add themplate for single gallery page */
|
3565 |
-
add_action( 'template_redirect', 'gllr_template_redirect' );
|
3566 |
-
|
3567 |
/* this function returns custom content with images for PDF&Print plugin on Gallery page */
|
3568 |
add_filter( 'bwsplgns_get_pdf_print_content', 'gllr_add_pdf_print_content', 10, 2 );
|
3569 |
|
@@ -3571,9 +3452,6 @@ add_filter( 'bwsplgns_get_pdf_print_content', 'gllr_add_pdf_print_content', 10,
|
|
3571 |
add_action( 'save_post', 'gllr_save_postdata', 1, 2 );
|
3572 |
add_filter( 'content_save_pre', 'gllr_content_save_pre', 10, 1 );
|
3573 |
|
3574 |
-
add_filter( 'nav_menu_css_class', 'gllr_addImageAncestorToMenu' );
|
3575 |
-
add_filter( 'page_css_class', 'gllr_page_css_class', 10, 2 );
|
3576 |
-
|
3577 |
add_action( 'pre_get_posts', 'gllr_manage_pre_get_posts', 1 );
|
3578 |
|
3579 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: gallery-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 4.4.7
|
10 |
Author URI: http://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
29 |
|
30 |
require_once( dirname( __FILE__ ) . '/inc/deprecated.php' );
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
if ( ! function_exists( 'add_gllr_admin_menu' ) ) {
|
33 |
function add_gllr_admin_menu() {
|
34 |
global $submenu, $gllr_options;
|
75 |
/* Call register settings function */
|
76 |
gllr_settings();
|
77 |
|
78 |
+
if ( ! is_admin() ) {
|
79 |
+
/* add template for gallery pages */
|
80 |
+
add_action( 'template_include', 'gllr_template_include' );
|
81 |
+
}
|
82 |
+
|
83 |
/* Add media button to the gallery post type */
|
84 |
if (
|
85 |
( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) == $gllr_options['post_type_name'] ) ||
|
106 |
if ( empty( $bws_plugin_info ) ) {
|
107 |
$bws_plugin_info = array( 'id' => '79', 'version' => $gllr_plugin_info["Version"] );
|
108 |
}
|
|
|
|
|
109 |
/* add gallery to global $bws_shortcode_list */
|
110 |
$bws_shortcode_list['gllr'] = array( 'name' => 'Gallery', 'js_function' => 'gllr_shortcode_init' );
|
111 |
|
117 |
/* Register settings function */
|
118 |
if ( ! function_exists( 'gllr_settings' ) ) {
|
119 |
function gllr_settings() {
|
120 |
+
global $gllr_options, $gllr_plugin_info, $gllr_option_defaults, $wpdb;
|
121 |
|
122 |
$gllr_option_defaults = array(
|
123 |
'plugin_option_version' => $gllr_plugin_info["Version"],
|
141 |
'return_link_page' => 'gallery_template_url',
|
142 |
'return_link_url' => '',
|
143 |
'return_link_shortcode' => 0,
|
|
|
144 |
'display_demo_notice' => 1,
|
145 |
'display_settings_notice' => 1,
|
146 |
'first_install' => strtotime( "now" ),
|
147 |
'suggest_feature_banner' => 1,
|
148 |
+
'post_type_name' => 'bws-gallery',
|
149 |
+
'page_id_gallery_template' => '',
|
150 |
+
'flush_rewrite_rules' => 0
|
151 |
);
|
152 |
|
153 |
/**
|
167 |
$gllr_options = get_option( 'gllr_options' );
|
168 |
|
169 |
/* Array merge incase this version has added new options */
|
170 |
+
if ( $gllr_options['plugin_option_version'] != $gllr_plugin_info["Version"] ) {
|
171 |
+
/**
|
172 |
+
* @deprecated since 4.4.7
|
173 |
+
* @todo remove after 30.06.2017
|
174 |
+
*/
|
175 |
+
if ( isset( $gllr_options['plugin_option_version'] ) && $gllr_plugin_info["Version"] <= '4.4.7' ) {
|
176 |
+
/* get template attribute 'gallery-template.php' for pages */
|
177 |
+
$template_pages = $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" );
|
178 |
+
if ( ! empty( $template_pages ) ) {
|
179 |
+
$gllr_options['page_id_gallery_template'] = $template_pages;
|
180 |
+
}
|
181 |
}
|
182 |
+
if ( isset( $gllr_options['rewrite_template'] ) ) {
|
183 |
+
$themepath = get_stylesheet_directory() . '/';
|
184 |
+
foreach ( array( 'gallery-single-template.php', 'gallery-template.php' ) as $filename ) {
|
185 |
+
if ( file_exists( $themepath . $filename ) ) {
|
186 |
+
if ( 0 == $gllr_options['rewrite_template'] ) {
|
187 |
+
if ( ! is_dir( $themepath . 'bws-templates/' ) )
|
188 |
+
@mkdir( $themepath . 'bws-templates/', 0755 );
|
189 |
+
if ( rename( $themepath . $filename, $themepath . 'bws-templates/' . $filename ) ) {
|
190 |
+
@unlink( $themepath . $filename );
|
191 |
+
}
|
192 |
+
} else {
|
193 |
+
@unlink( $themepath . $filename );
|
194 |
+
}
|
195 |
+
}
|
196 |
+
}
|
197 |
+
unset( $gllr_options['rewrite_template'] );
|
198 |
+
}
|
199 |
+
/* deprecated (end) */
|
200 |
/* using old post type name for updated plugin version */
|
201 |
+
if ( ! isset( $gllr_options['post_type_name'] ) )
|
202 |
$gllr_options['post_type_name'] = 'gallery';
|
|
|
203 |
|
204 |
$gllr_option_defaults['display_demo_notice'] = 0;
|
205 |
$gllr_option_defaults['display_settings_notice'] = 0;
|
206 |
+
|
207 |
$gllr_options = array_merge( $gllr_option_defaults, $gllr_options );
|
208 |
$gllr_options['plugin_option_version'] = $gllr_plugin_info["Version"];
|
209 |
|
211 |
$gllr_options['hide_premium_options'] = array();
|
212 |
|
213 |
update_option( 'gllr_options', $gllr_options );
|
|
|
|
|
214 |
/* registering uninstall hook */
|
215 |
if ( is_multisite() ) {
|
216 |
switch_to_blog( 1 );
|
258 |
if ( ! function_exists( 'gllr_plugin_activate' ) ) {
|
259 |
function gllr_plugin_activate() {
|
260 |
gllr_settings();
|
|
|
261 |
/* first register CPT */
|
262 |
gllr_post_type_images();
|
263 |
/* then flush rules on activation to add custom post */
|
273 |
}
|
274 |
}
|
275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
/**
|
277 |
* Function for update all gallery images to new version ( Stable tag: 4.3.6 )
|
278 |
*/
|
311 |
}
|
312 |
}
|
313 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
/* Create post type for Gallery */
|
315 |
if ( ! function_exists( 'gllr_post_type_images' ) ) {
|
316 |
function gllr_post_type_images() {
|
334 |
'exclude_from_search' => true,
|
335 |
'query_var' => true,
|
336 |
'rewrite' => true,
|
337 |
+
'menu_icon' => 'dashicons-format-gallery',
|
338 |
'capability_type' => 'post',
|
339 |
'has_archive' => false,
|
340 |
'hierarchical' => true,
|
342 |
'register_meta_box_cb' => 'init_metaboxes_gallery',
|
343 |
'taxonomy' => array( 'gallery_categories' )
|
344 |
) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
|
346 |
+
if ( isset( $gllr_options["flush_rewrite_rules"] ) && $gllr_options["flush_rewrite_rules"] == 1 ) {
|
347 |
+
flush_rewrite_rules();
|
348 |
+
$gllr_options["flush_rewrite_rules"] = 0;
|
349 |
+
update_option( 'gllr_options', $gllr_options );
|
|
|
|
|
|
|
350 |
}
|
|
|
351 |
}
|
352 |
}
|
353 |
|
497 |
} else {
|
498 |
delete_post_meta( $post_id, 'gllr_download_link' );
|
499 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
}
|
501 |
}
|
502 |
|
505 |
*/
|
506 |
if ( ! function_exists( 'gllr_custom_permalinks' ) ) {
|
507 |
function gllr_custom_permalinks( $rules ) {
|
508 |
+
global $gllr_options;
|
509 |
$newrules = array();
|
510 |
+
|
511 |
+
if ( ! empty( $gllr_options['page_id_gallery_template'] ) ) {
|
512 |
+
$parent = get_post( $gllr_options['page_id_gallery_template'] );
|
513 |
+
if ( ! empty( $parent ) ) {
|
514 |
+
if ( ! isset( $rules['(.+)/' . $parent->post_name . '/([^/]+)/?$'] ) || ! isset( $rules[ $parent->post_name . '/([^/]+)/?$'] ) ) {
|
515 |
+
$newrules['(.+)/' . $parent->post_name . '/([^/]+)/?$'] = 'index.php?post_type=' . $gllr_options['post_type_name'] . '&name=$matches[2]&posts_per_page=-1';
|
516 |
+
$newrules[ $parent->post_name . '/([^/]+)/?$'] = 'index.php?post_type=' . $gllr_options['post_type_name'] . '&name=$matches[1]&posts_per_page=-1';
|
517 |
+
$newrules[ $parent->post_name . '/page/([^/]+)/?$'] = 'index.php?pagename=' . $parent->post_name . '&paged=$matches[1]';
|
518 |
+
$newrules[ $parent->post_name . '/page/([^/]+)?$'] = 'index.php?pagename=' . $parent->post_name . '&paged=$matches[1]';
|
519 |
}
|
520 |
}
|
521 |
}
|
522 |
+
|
523 |
if ( false === $rules )
|
524 |
return $newrules;
|
525 |
|
527 |
}
|
528 |
}
|
529 |
|
530 |
+
/**
|
531 |
+
* Load a template. Handles template usage so that plugin can use own templates instead of the themes.
|
532 |
+
*
|
533 |
+
* Templates are in the 'templates' folder.
|
534 |
+
* overrides in /{theme}/bws-templates/ by default.
|
535 |
+
* @param mixed $template
|
536 |
+
* @return string
|
537 |
+
*/
|
538 |
+
if ( ! function_exists( 'gllr_template_include' ) ) {
|
539 |
+
function gllr_template_include( $template ) {
|
540 |
+
global $gllr_options, $wp_query;
|
541 |
+
|
542 |
+
if ( function_exists( 'is_embed' ) && is_embed() )
|
543 |
+
return $template;
|
544 |
+
|
545 |
$post_type = get_post_type();
|
546 |
+
if ( is_single() && $gllr_options['post_type_name'] == $post_type ) {
|
547 |
+
$file = 'gallery-single-template.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
} elseif ( $gllr_options['post_type_name'] == $post_type && isset( $wp_query->query_vars["gallery_categories"] ) ) {
|
549 |
+
$file = 'gallery-template.php';
|
550 |
+
} elseif ( is_page( $gllr_options['page_id_gallery_template'] ) ) {
|
551 |
+
$file = 'gallery-template.php';
|
|
|
|
|
|
|
552 |
}
|
553 |
+
|
554 |
+
if ( isset( $file ) ) {
|
555 |
+
$find = array( $file, 'bws-templates/' . $file );
|
556 |
+
$template = locate_template( $find );
|
557 |
+
|
558 |
+
if ( ! $template )
|
559 |
+
$template = untrailingslashit( plugin_dir_path( __FILE__ ) ) . '/templates/' . $file;
|
560 |
}
|
561 |
+
|
562 |
+
return $template;
|
563 |
}
|
564 |
}
|
565 |
|
650 |
$border = 'padding:0;';
|
651 |
$border_images = 0;
|
652 |
}
|
653 |
+
$featured_image = ( false == $featured_image ) ? $image_attributes : $featured_image;
|
654 |
$count++; ?>
|
655 |
<li><?php if ( ! empty( $featured_image[0] ) ) { ?>
|
656 |
<a rel="bookmark" href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>">
|
782 |
<?php }
|
783 |
if ( 1 == $gllr_options['return_link'] ) {
|
784 |
if ( 'gallery_template_url' == $gllr_options["return_link_page"] ) {
|
785 |
+
if ( ! empty( $gllr_options['page_id_gallery_template'] ) ) { ?>
|
786 |
+
<div class="return_link gllr_return_link"><a href="<?php echo get_permalink( $gllr_options['page_id_gallery_template'] ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
787 |
+
<?php }
|
788 |
+
} else { ?>
|
789 |
<div class="return_link gllr_return_link"><a href="<?php echo $gllr_options["return_link_url"]; ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
790 |
<?php }
|
791 |
}
|
946 |
</div><!-- .gallery_box_single -->';
|
947 |
}
|
948 |
$custom_content .= '<div class="gllr_clear"></div>';
|
949 |
+
} elseif ( $post->ID == $gllr_options['page_id_gallery_template'] ) {
|
950 |
+
/* Displaying PDF&PRINT custom content for gallery pro template */
|
951 |
if ( ! is_plugin_active( 'gallery-plugin/gallery-plugin.php' ) ) {
|
952 |
} else {
|
953 |
$custom_content .= "<style type='text/css'>
|
1375 |
}
|
1376 |
}
|
1377 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1378 |
if ( ! function_exists( 'gllr_settings_page' ) ) {
|
1379 |
function gllr_settings_page() {
|
1380 |
global $gllr_options, $wp_version, $gllr_plugin_info, $gllr_option_defaults, $gllr_BWS_demo_data;
|
1404 |
$gllr_request_options = $hide_result['options'];
|
1405 |
}
|
1406 |
|
1407 |
+
$gllr_request_options['page_id_gallery_template'] = intval( $_REQUEST['gllr_page_id_gallery_template'] );
|
1408 |
+
|
1409 |
$gllr_request_options["custom_size_name"] = $gllr_options["custom_size_name"];
|
1410 |
|
1411 |
$gllr_custom_image_size_w_album = ( isset( $_REQUEST['gllr_custom_image_size_w_album'] ) ) ? intval( trim( $_REQUEST['gllr_custom_image_size_w_album'] ) ) : $gllr_option_defaults["custom_size_px"][0][0];
|
1447 |
$gllr_request_options["return_link_text"] = ( isset( $_REQUEST['gllr_return_link_text'] ) ) ? stripslashes( esc_html( $_REQUEST['gllr_return_link_text'] ) ) : $gllr_option_defaults["return_link_text"];
|
1448 |
$gllr_request_options["read_more_link_text"] = ( isset( $_REQUEST['gllr_read_more_link_text'] ) ) ? stripslashes( esc_html( $_REQUEST['gllr_read_more_link_text'] ) ) : $gllr_option_defaults["read_more_link_text"];
|
1449 |
|
1450 |
+
/* for rewrite */
|
1451 |
+
if ( $gllr_request_options['page_id_gallery_template'] != $gllr_options['page_id_gallery_template'] ) {
|
1452 |
+
$gllr_request_options["flush_rewrite_rules"] = 1;
|
1453 |
+
}
|
1454 |
+
|
1455 |
|
1456 |
/**
|
1457 |
* rewriting post types name with unique one from default options
|
1553 |
</div>
|
1554 |
<form class="bws_form" method="post" action="admin.php?page=gallery-plugin.php">
|
1555 |
<table class="gllr_settings_table form-table">
|
1556 |
+
<tr valign="top">
|
1557 |
+
<th scope="row"><?php _e( 'Galleries page', 'gallery-plugin' ); ?></th>
|
1558 |
+
<td>
|
1559 |
+
<?php wp_dropdown_pages( array(
|
1560 |
+
'depth' => 0,
|
1561 |
+
'selected' => $gllr_options['page_id_gallery_template'],
|
1562 |
+
'name' => 'gllr_page_id_gallery_template',
|
1563 |
+
'show_option_none' => '...'
|
1564 |
+
) ); ?>
|
1565 |
+
</td>
|
1566 |
+
</tr>
|
1567 |
<tr valign="top">
|
1568 |
<th scope="row"><?php _e( 'Number of images in the row', 'gallery-plugin' ); ?> </th>
|
1569 |
<td>
|
1773 |
<?php } ?>
|
1774 |
</td>
|
1775 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
1776 |
<?php if ( $gllr_options['post_type_name'] != $gllr_option_defaults['post_type_name'] ) { ?>
|
1777 |
<tr valign="top">
|
1778 |
<th scope="row"><?php _e( 'Rename gallery post type', 'gallery-plugin' ); ?></th>
|
2084 |
if ( ! defined( 'BWS_ENQUEUE_ALL_SCRIPTS' ) && ! wp_script_is( 'gllr_js', 'registered' ) )
|
2085 |
return;
|
2086 |
|
2087 |
+
wp_enqueue_script( 'jquery' );
|
2088 |
+
|
2089 |
if ( ! wp_script_is( 'gllr_js', 'registered' ) )
|
2090 |
+
wp_enqueue_script( 'gllr_js', plugins_url( 'js/frontend_script.js', __FILE__ ) );
|
2091 |
else
|
2092 |
wp_enqueue_script( 'gllr_js' );
|
2093 |
+
|
2094 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
2095 |
if ( ! ( is_plugin_active( 'portfolio-pro/portfolio-pro.php' ) && wp_script_is( 'prtfl_front_script', 'registered' ) ) ) {
|
2096 |
wp_enqueue_script( 'gllr_fancybox_mousewheel_js', plugins_url( 'fancybox/jquery.mousewheel-3.0.4.pack.js', __FILE__ ), array( 'jquery' ), true );
|
2147 |
<div class="gallery_box">
|
2148 |
<ul>
|
2149 |
<?php if ( $second_query->have_posts() ) {
|
2150 |
+
if ( 1 == $gllr_options['border_images'] ) {
|
2151 |
+
$border = 'border-width: ' . $gllr_options['border_images_width'] . 'px; border-color:' . $gllr_options['border_images_color'] . ';border: ' . $gllr_options['border_images_width'] . 'px solid ' . $gllr_options['border_images_color'];
|
2152 |
+
} else {
|
2153 |
+
$border = '';
|
2154 |
+
}
|
2155 |
+
|
2156 |
while ( $second_query->have_posts() ) {
|
2157 |
$second_query->the_post();
|
2158 |
$attachments = get_post_thumbnail_id( $post->ID );
|
2179 |
} ?>
|
2180 |
<li>
|
2181 |
<a rel="bookmark" href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>">
|
2182 |
+
<img width="<?php echo $gllr_options['custom_size_px'][0][0]; ?>" height="<?php echo $gllr_options['custom_size_px'][0][1]; ?>" style="width:<?php echo $gllr_options['custom_size_px'][0][0]; ?>px; height:<?php echo $gllr_options['custom_size_px'][0][1]; ?>px; <?php echo $border; ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" src="<?php echo $image_attributes[0]; ?>" />
|
2183 |
</a>
|
2184 |
<div class="gallery_detail_box">
|
2185 |
<div><?php the_title(); ?></div>
|
2232 |
$image_attributes = array( '' );
|
2233 |
} else {
|
2234 |
$image_attributes = wp_get_attachment_image_src( $attachments, 'album-thumb' );
|
2235 |
+
}
|
2236 |
+
|
2237 |
if ( 1 == $gllr_options['border_images'] ) {
|
2238 |
$border = 'border-width: ' . $gllr_options['border_images_width'] . 'px; border-color:' . $gllr_options['border_images_color'] . ';border: ' . $gllr_options['border_images_width'] . 'px solid ' . $gllr_options['border_images_color'];
|
2239 |
} else {
|
2255 |
</div><!-- .gallery_box -->
|
2256 |
<?php } else {
|
2257 |
if ( $second_query->have_posts() ) {
|
2258 |
+
if ( 1 == $gllr_options['border_images'] ) {
|
2259 |
+
$border = 'border-width: ' . $gllr_options['border_images_width'] . 'px; border-color:' . $gllr_options['border_images_color'] . ';border: ' . $gllr_options['border_images_width'] . 'px solid ' . $gllr_options['border_images_color'];
|
2260 |
+
$border_images = $gllr_options['border_images_width'] * 2;
|
2261 |
+
} else {
|
2262 |
+
$border = '';
|
2263 |
+
$border_images = 0;
|
2264 |
+
}
|
2265 |
while ( $second_query->have_posts() ) {
|
2266 |
$second_query->the_post(); ?>
|
2267 |
<div class="gallery_box_single">
|
2291 |
$image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
|
2292 |
$image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
|
2293 |
$image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2294 |
if ( $count_image_block % $gllr_options['custom_image_row_count'] == 0 ) { ?>
|
2295 |
<div class="gllr_image_row">
|
2296 |
<?php } ?>
|
2322 |
<?php }
|
2323 |
if ( 1 == $gllr_options['return_link_shortcode'] ) {
|
2324 |
if ( 'gallery_template_url' == $gllr_options["return_link_page"] ) {
|
2325 |
+
if ( ! empty( $gllr_options["page_id_gallery_template"] ) ) { ?>
|
2326 |
+
<div class="return_link gllr_return_link"><a href="<?php echo get_permalink( $gllr_options["page_id_gallery_template"] ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
2327 |
+
<?php }
|
2328 |
+
} else { ?>
|
2329 |
<div class="return_link gllr_return_link"><a href="<?php echo $gllr_options["return_link_url"]; ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
2330 |
<?php }
|
2331 |
} ?>
|
2370 |
'speedIn' : 500,
|
2371 |
'speedOut' : 300,
|
2372 |
'titleFormat' : function( title, currentArray, currentIndex, currentOpts ) {
|
2373 |
+
return '<div id="fancybox-title-inside">' + ( title.length ? '<span id="bws_gallery_image_title">' + title + '</span><br />' : '' ) + '<span id="bws_gallery_image_counter"><?php _e( "Image", "gallery-plugin" ); ?> ' + ( currentIndex + 1 ) + ' / ' + currentArray.length + '</span></div><?php if ( get_post_meta( $vars['post_id'], 'gllr_download_link', true ) != '' ) { ?><a id="bws_gallery_download_link" href="' + jQuery( currentOpts.orig ).attr('rel') + '" download="' + jQuery( currentOpts.orig ).attr('rel').substring( jQuery( currentOpts.orig ).attr('rel').lastIndexOf('/') + 1 ) + '" target="_blank"><?php echo $download_link_title; ?></a><?php } ?>';
|
2374 |
}<?php if ( $gllr_options['start_slideshow'] == 1 ) { ?>,
|
2375 |
'onComplete': function() {
|
2376 |
clearTimeout( jQuery.fancybox.slider );
|
3370 |
if ( ! function_exists ( 'gllr_admin_notices' ) ) {
|
3371 |
function gllr_admin_notices() {
|
3372 |
global $hook_suffix, $gllr_plugin_info, $gllr_BWS_demo_data, $gllr_options;
|
|
|
|
|
3373 |
|
3374 |
if ( 'plugins.php' == $hook_suffix || ( isset( $_GET['page'] ) && $_GET['page'] == 'gallery-plugin.php' ) ) {
|
3375 |
|
3395 |
*/
|
3396 |
if ( ! function_exists( 'gllr_plugin_uninstall' ) ) {
|
3397 |
function gllr_plugin_uninstall() {
|
3398 |
+
global $wpdb, $gllr_BWS_demo_data;
|
|
|
|
|
|
|
|
|
|
|
|
|
3399 |
|
3400 |
if ( ! function_exists( 'get_plugins' ) )
|
3401 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
3418 |
gllr_include_demo_data();
|
3419 |
$gllr_BWS_demo_data->bws_remove_demo_data();
|
3420 |
|
3421 |
+
delete_option( 'gllr_options' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3422 |
}
|
3423 |
+
delete_metadata( 'user', null, 'wp_gllr_media_library_mode', '', true );
|
3424 |
}
|
3425 |
|
3426 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
3443 |
|
3444 |
add_action( 'plugins_loaded', 'gllr_plugins_loaded' );
|
3445 |
|
|
|
|
|
3446 |
add_filter( 'rewrite_rules_array', 'gllr_custom_permalinks' ); /* Add custom permalink for gallery */
|
3447 |
|
|
|
|
|
|
|
3448 |
/* this function returns custom content with images for PDF&Print plugin on Gallery page */
|
3449 |
add_filter( 'bwsplgns_get_pdf_print_content', 'gllr_add_pdf_print_content', 10, 2 );
|
3450 |
|
3452 |
add_action( 'save_post', 'gllr_save_postdata', 1, 2 );
|
3453 |
add_filter( 'content_save_pre', 'gllr_content_save_pre', 10, 1 );
|
3454 |
|
|
|
|
|
|
|
3455 |
add_action( 'pre_get_posts', 'gllr_manage_pre_get_posts', 1 );
|
3456 |
|
3457 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
images/menu_single.png
DELETED
Binary file
|
inc/demo-data/class-bws-demo-data.php
CHANGED
@@ -1,16 +1,15 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
* Load demo data
|
5 |
-
* @version 1.0.
|
6 |
*/
|
7 |
|
8 |
if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
9 |
class Bws_Demo_Data {
|
10 |
-
private $bws_plugin_text_domain, $bws_plugin_prefix, $bws_plugin_page, $bws_plugin_name, $bws_plugin_basename, $bws_demo_options, $bws_demo_folder;
|
11 |
|
12 |
public function __construct( $args ) {
|
13 |
-
$plugin_dir_array
|
14 |
$this->bws_plugin_basename = $args['plugin_basename'];
|
15 |
$this->bws_plugin_prefix = $args['plugin_prefix'];
|
16 |
$this->bws_plugin_name = $args['plugin_name'];
|
@@ -18,6 +17,7 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
18 |
$this->bws_demo_folder = $args['demo_folder'];
|
19 |
$this->bws_plugin_text_domain = $plugin_dir_array[0];
|
20 |
$this->bws_demo_options = get_option( $this->bws_plugin_prefix . 'demo_options' );
|
|
|
21 |
}
|
22 |
|
23 |
/**
|
@@ -60,7 +60,7 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
60 |
<p><?php echo $label; ?></p>
|
61 |
<form method="post" action="">
|
62 |
<p>
|
63 |
-
<button class="button" name="bws_<?php echo $_POST['bws_handle_demo']; ?>_demo_confirm" value="true"><?php echo $button_title; ?></button>
|
64 |
<button class="button" name="bws_<?php echo $_POST['bws_handle_demo']; ?>_demo_deny" value="true"><?php _e( 'No, go back to the settings page', $this->bws_plugin_text_domain ) ?></button>
|
65 |
<?php wp_nonce_field( $this->bws_plugin_basename, 'bws_settings_nonce_name' ); ?>
|
66 |
</p>
|
@@ -91,7 +91,7 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
91 |
* @return array $message message about the result of the query
|
92 |
*/
|
93 |
function bws_install_demo_data( $callback = false ) {
|
94 |
-
global $wpdb
|
95 |
/* get demo data*/
|
96 |
$message = array(
|
97 |
'error' => NULL,
|
@@ -110,7 +110,7 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
110 |
$page_id = $posttype_post_id = $post_id = '';
|
111 |
/* get demo data */
|
112 |
@include_once( $this->bws_demo_folder . 'demo-data.php' );
|
113 |
-
$received_demo_data = bws_demo_data_array( $
|
114 |
|
115 |
/*
|
116 |
* load demo data
|
@@ -131,19 +131,17 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
131 |
* load demo options
|
132 |
*/
|
133 |
if ( ! empty( $demo_data['options'] ) ) {
|
134 |
-
$plugin_options = get_option( $this->bws_plugin_prefix . 'options' );
|
135 |
/* remember old plugin options */
|
136 |
-
if ( ! empty( $
|
137 |
-
$this->bws_demo_options['options'] = $
|
138 |
$demo_data['options']['display_demo_notice'] = 0;
|
139 |
-
update_option( $this->bws_plugin_prefix . 'options', array_merge( $
|
140 |
}
|
141 |
} else {
|
142 |
/* remove demo notice */
|
143 |
-
|
144 |
-
|
145 |
-
$
|
146 |
-
update_option( $this->bws_plugin_prefix . 'options', $plugin_options );
|
147 |
}
|
148 |
}
|
149 |
|
@@ -351,6 +349,13 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
351 |
$page_id = $post_id;
|
352 |
$page_template = $post['page_template'];
|
353 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
/* first inserted image is thummbnail for post */
|
355 |
if ( ! empty( $featured_attach_id ) )
|
356 |
update_post_meta( $post_id, '_thumbnail_id', $featured_attach_id );
|
@@ -373,6 +378,8 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
373 |
|
374 |
if ( ! empty( $demo_data['options'] ) )
|
375 |
$message['options'] = $demo_data['options'];
|
|
|
|
|
376 |
|
377 |
if ( $callback && function_exists( $callback ) )
|
378 |
call_user_func( $callback );
|
@@ -403,10 +410,9 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
403 |
*/
|
404 |
function bws_wp_update_attachment_metadata( $data, $id ) {
|
405 |
if ( ! empty( $data ) && ! empty( $this->bws_demo_options['distant_attachments'] ) && $attachment_name = array_search( $id, $this->bws_demo_options['distant_attachments'] ) ) {
|
406 |
-
global $gllr_options;
|
407 |
/* get demo data */
|
408 |
@include_once( $this->bws_demo_folder . 'demo-data.php' );
|
409 |
-
$received_demo_data = bws_demo_data_array( $
|
410 |
|
411 |
if ( isset( $received_demo_data['distant_attachments_metadata'][ $attachment_name ] ) ) {
|
412 |
|
@@ -537,9 +543,8 @@ if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
|
537 |
global $wp_version;
|
538 |
|
539 |
if ( isset( $_POST['bws_hide_demo_notice'] ) && check_admin_referer( $this->bws_plugin_basename, 'bws_demo_nonce_name' ) ) {
|
540 |
-
$
|
541 |
-
$
|
542 |
-
update_option( $this->bws_plugin_prefix . 'options', $plugin_options );
|
543 |
return;
|
544 |
}
|
545 |
if ( ! isset( $_POST['bws_handle_demo'] ) && ! isset( $_POST['bws_install_demo_confirm'] ) ) {
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
* Load demo data
|
4 |
+
* @version 1.0.5
|
5 |
*/
|
6 |
|
7 |
if ( ! class_exists( 'Bws_Demo_Data' ) ) {
|
8 |
class Bws_Demo_Data {
|
9 |
+
private $bws_plugin_text_domain, $bws_plugin_prefix, $bws_plugin_page, $bws_plugin_name, $bws_plugin_basename, $bws_demo_options, $bws_plugin_options, $bws_demo_folder;
|
10 |
|
11 |
public function __construct( $args ) {
|
12 |
+
$plugin_dir_array = explode( '/', $args['plugin_basename'] );
|
13 |
$this->bws_plugin_basename = $args['plugin_basename'];
|
14 |
$this->bws_plugin_prefix = $args['plugin_prefix'];
|
15 |
$this->bws_plugin_name = $args['plugin_name'];
|
17 |
$this->bws_demo_folder = $args['demo_folder'];
|
18 |
$this->bws_plugin_text_domain = $plugin_dir_array[0];
|
19 |
$this->bws_demo_options = get_option( $this->bws_plugin_prefix . 'demo_options' );
|
20 |
+
$this->bws_plugin_options = get_option( $this->bws_plugin_prefix . 'options' );
|
21 |
}
|
22 |
|
23 |
/**
|
60 |
<p><?php echo $label; ?></p>
|
61 |
<form method="post" action="">
|
62 |
<p>
|
63 |
+
<button class="button button-primary" name="bws_<?php echo $_POST['bws_handle_demo']; ?>_demo_confirm" value="true"><?php echo $button_title; ?></button>
|
64 |
<button class="button" name="bws_<?php echo $_POST['bws_handle_demo']; ?>_demo_deny" value="true"><?php _e( 'No, go back to the settings page', $this->bws_plugin_text_domain ) ?></button>
|
65 |
<?php wp_nonce_field( $this->bws_plugin_basename, 'bws_settings_nonce_name' ); ?>
|
66 |
</p>
|
91 |
* @return array $message message about the result of the query
|
92 |
*/
|
93 |
function bws_install_demo_data( $callback = false ) {
|
94 |
+
global $wpdb;
|
95 |
/* get demo data*/
|
96 |
$message = array(
|
97 |
'error' => NULL,
|
110 |
$page_id = $posttype_post_id = $post_id = '';
|
111 |
/* get demo data */
|
112 |
@include_once( $this->bws_demo_folder . 'demo-data.php' );
|
113 |
+
$received_demo_data = bws_demo_data_array( $this->bws_plugin_options['post_type_name'] );
|
114 |
|
115 |
/*
|
116 |
* load demo data
|
131 |
* load demo options
|
132 |
*/
|
133 |
if ( ! empty( $demo_data['options'] ) ) {
|
|
|
134 |
/* remember old plugin options */
|
135 |
+
if ( ! empty( $this->bws_plugin_options ) ) {
|
136 |
+
$this->bws_demo_options['options'] = $this->bws_plugin_options;
|
137 |
$demo_data['options']['display_demo_notice'] = 0;
|
138 |
+
update_option( $this->bws_plugin_prefix . 'options', array_merge( $this->bws_plugin_options, $demo_data['options'] ) );
|
139 |
}
|
140 |
} else {
|
141 |
/* remove demo notice */
|
142 |
+
if ( 0 != $this->bws_plugin_options['display_demo_notice'] ) {
|
143 |
+
$this->bws_plugin_options['display_demo_notice'] = 0;
|
144 |
+
update_option( $this->bws_plugin_prefix . 'options', $this->bws_plugin_options );
|
|
|
145 |
}
|
146 |
}
|
147 |
|
349 |
$page_id = $post_id;
|
350 |
$page_template = $post['page_template'];
|
351 |
}
|
352 |
+
/* save page_id to options */
|
353 |
+
if ( ! empty( $post['save_to_options'] ) ) {
|
354 |
+
$page_id = $post_id;
|
355 |
+
$this->bws_plugin_options[ $post['save_to_options'] ] = $post_id;
|
356 |
+
update_option( $this->bws_plugin_prefix . 'options', $this->bws_plugin_options );
|
357 |
+
}
|
358 |
+
|
359 |
/* first inserted image is thummbnail for post */
|
360 |
if ( ! empty( $featured_attach_id ) )
|
361 |
update_post_meta( $post_id, '_thumbnail_id', $featured_attach_id );
|
378 |
|
379 |
if ( ! empty( $demo_data['options'] ) )
|
380 |
$message['options'] = $demo_data['options'];
|
381 |
+
else
|
382 |
+
$message['options'] = $this->bws_plugin_options;
|
383 |
|
384 |
if ( $callback && function_exists( $callback ) )
|
385 |
call_user_func( $callback );
|
410 |
*/
|
411 |
function bws_wp_update_attachment_metadata( $data, $id ) {
|
412 |
if ( ! empty( $data ) && ! empty( $this->bws_demo_options['distant_attachments'] ) && $attachment_name = array_search( $id, $this->bws_demo_options['distant_attachments'] ) ) {
|
|
|
413 |
/* get demo data */
|
414 |
@include_once( $this->bws_demo_folder . 'demo-data.php' );
|
415 |
+
$received_demo_data = bws_demo_data_array( $this->bws_plugin_options['post_type_name'] );
|
416 |
|
417 |
if ( isset( $received_demo_data['distant_attachments_metadata'][ $attachment_name ] ) ) {
|
418 |
|
543 |
global $wp_version;
|
544 |
|
545 |
if ( isset( $_POST['bws_hide_demo_notice'] ) && check_admin_referer( $this->bws_plugin_basename, 'bws_demo_nonce_name' ) ) {
|
546 |
+
$this->bws_plugin_options['display_demo_notice'] = 0;
|
547 |
+
update_option( $this->bws_plugin_prefix . 'options', $this->bws_plugin_options );
|
|
|
548 |
return;
|
549 |
}
|
550 |
if ( ! isset( $_POST['bws_handle_demo'] ) && ! isset( $_POST['bws_install_demo_confirm'] ) ) {
|
inc/demo-data/demo-data.php
CHANGED
@@ -9,13 +9,13 @@ if ( ! function_exists( 'bws_demo_data_array' ) ) {
|
|
9 |
$posts = array(
|
10 |
/* Page Template Gallery */
|
11 |
array(
|
12 |
-
'comment_status'
|
13 |
-
'ping_status'
|
14 |
-
'post_status'
|
15 |
-
'post_type'
|
16 |
-
'post_title'
|
17 |
-
'post_content'
|
18 |
-
'
|
19 |
),
|
20 |
/* Galleries */
|
21 |
array(
|
@@ -89,7 +89,7 @@ if ( ! function_exists( 'bws_demo_data_array' ) ) {
|
|
89 |
),
|
90 |
);
|
91 |
|
92 |
-
|
93 |
/* gastronomy */
|
94 |
'apple.jpg' => array(
|
95 |
'gllr_image_alt_tag' => 'Apple',
|
@@ -413,7 +413,7 @@ if ( ! function_exists( 'bws_demo_data_array' ) ) {
|
|
413 |
);
|
414 |
return array(
|
415 |
'posts' => $posts,
|
416 |
-
'attachments'
|
417 |
);
|
418 |
}
|
419 |
}
|
9 |
$posts = array(
|
10 |
/* Page Template Gallery */
|
11 |
array(
|
12 |
+
'comment_status' => 'closed',
|
13 |
+
'ping_status' => 'closed',
|
14 |
+
'post_status' => 'publish',
|
15 |
+
'post_type' => 'page',
|
16 |
+
'post_title' => 'DEMO Galleries',
|
17 |
+
'post_content' => '',
|
18 |
+
'save_to_options' => 'page_id_gallery_template'
|
19 |
),
|
20 |
/* Galleries */
|
21 |
array(
|
89 |
),
|
90 |
);
|
91 |
|
92 |
+
$attachments = array(
|
93 |
/* gastronomy */
|
94 |
'apple.jpg' => array(
|
95 |
'gllr_image_alt_tag' => 'Apple',
|
413 |
);
|
414 |
return array(
|
415 |
'posts' => $posts,
|
416 |
+
'attachments' => $attachments
|
417 |
);
|
418 |
}
|
419 |
}
|
languages/gallery-plugin-bg_BG.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Petya <p@pipermagus.com>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -16,74 +16,62 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "Settings"
|
22 |
msgstr "Настройки"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "See images »"
|
26 |
msgstr "Виж изображенията »"
|
27 |
|
28 |
-
#: gallery-plugin.php:
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
-
#, fuzzy, php-format
|
34 |
-
msgid ""
|
35 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
36 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
37 |
-
"theme for the correct work of the Gallery plugin"
|
38 |
-
msgstr ""
|
39 |
-
"Файловете \"gallery-template.php\" и \"gallery-single-template.php\" не бяха "
|
40 |
-
"намерени в папката на вашата тема. Моля копирайте ги от папката `/wp-content/"
|
41 |
-
"plugins/gallery-plugin/template/` в папката на вашата тема, за да работи "
|
42 |
-
"правилно приставката Gallery."
|
43 |
-
|
44 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
45 |
msgid "Galleries"
|
46 |
msgstr "Галерии"
|
47 |
|
48 |
-
#: gallery-plugin.php:
|
49 |
msgid "Gallery"
|
50 |
msgstr "Галерия"
|
51 |
|
52 |
-
#: gallery-plugin.php:
|
53 |
msgid "Add New Gallery"
|
54 |
msgstr "Добави нова галерия"
|
55 |
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "Edit Gallery"
|
58 |
msgstr "Редактирай галерия"
|
59 |
|
60 |
-
#: gallery-plugin.php:
|
61 |
msgid "New Gallery"
|
62 |
msgstr "Нова галерия"
|
63 |
|
64 |
-
#: gallery-plugin.php:
|
65 |
msgid "View Gallery"
|
66 |
msgstr "Преглед на галерия"
|
67 |
|
68 |
-
#: gallery-plugin.php:
|
69 |
#, fuzzy
|
70 |
msgid "Search Galleries"
|
71 |
msgstr "Галерии"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "No Gallery found"
|
75 |
msgstr "Няма намерена галерия"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Gallery Shortcode"
|
79 |
msgstr "Шорткод за галерия"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Categories"
|
84 |
msgstr "Размер на изображението в галерия"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
#, fuzzy, php-format
|
88 |
msgid ""
|
89 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -91,7 +79,7 @@ msgstr ""
|
|
91 |
"Ако искате да добавите галерия към ваша страница или пост, просто копирайте "
|
92 |
"и поставете този шорткод в поста или страницата:"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
#, php-format
|
96 |
msgid ""
|
97 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -99,12 +87,12 @@ msgid ""
|
|
99 |
"please use the shortcode below"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
msgid ""
|
104 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
#, fuzzy
|
109 |
msgid ""
|
110 |
"Use this shortcode to display an album image with the description and the "
|
@@ -113,95 +101,87 @@ msgstr ""
|
|
113 |
"Ако искате да покажете кратко описание, заедно със screenshot и линк към "
|
114 |
"страницата с галерията"
|
115 |
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "Short display"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Most Used"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Default"
|
126 |
msgstr "По подразбиране"
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
#, fuzzy
|
130 |
msgid "Add New Gallery Category"
|
131 |
msgstr "Добави нова галерия"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Install plugin"
|
136 |
msgstr "Встановлених модулів"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
#, fuzzy
|
140 |
msgid "Gallery Category"
|
141 |
msgstr "Размер на изображението в галерия"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
-
msgid "Download high resolution image"
|
145 |
-
msgstr "Свали изображението в цял размер"
|
146 |
-
|
147 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
148 |
-
msgid "Image"
|
149 |
-
msgstr "Изображение"
|
150 |
-
|
151 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
152 |
msgid "Sorry, nothing found."
|
153 |
msgstr "Съжалявам, нищо не е намерено."
|
154 |
|
155 |
-
#: gallery-plugin.php:
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "Title"
|
158 |
msgstr "Име"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Author"
|
162 |
msgstr "Автор "
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
#, fuzzy
|
166 |
msgid "Shortcode"
|
167 |
msgstr "Шорткод за галерия"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Photos"
|
172 |
msgstr "Снимка"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Date"
|
176 |
msgstr "Дата "
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Settings are saved"
|
180 |
msgstr "Настройките са съхранени"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
#, fuzzy
|
184 |
msgid "All plugin settings were restored."
|
185 |
msgstr "на страницата с настройки за плъгина ("
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Gallery Settings"
|
189 |
msgstr "Настройки на галерията"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Custom code"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Go PRO"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "Please enable JavaScript to use the option to renew images."
|
202 |
msgstr "Моля, активирайте JavaScript, за да можете да качвате файлове."
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -209,22 +189,27 @@ msgid ""
|
|
209 |
"please use the shortcode %s, where * stands for gallery ID"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
213 |
msgid "Number of images in the row"
|
214 |
msgstr "Брой изображения на ред"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
#, fuzzy
|
218 |
msgid ""
|
219 |
"The number of images per row can be less depending on the width of the "
|
220 |
"parent block"
|
221 |
msgstr "Брой изображения на ред"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Image size"
|
225 |
msgstr "Размер на изображението"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid ""
|
229 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
230 |
"upload a new photo."
|
@@ -232,669 +217,666 @@ msgstr ""
|
|
232 |
"WordPress ще създава thumbnail с указаните размери, когато качвате нова "
|
233 |
"снимка."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
#, fuzzy
|
237 |
msgid "For the album cover"
|
238 |
msgstr "Размер на изображението за корица на албума"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "width x height"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "in px"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
#, fuzzy
|
250 |
msgid "For thumbnails"
|
251 |
msgstr "Размер на изображението за корица на албума"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "Update images for gallery"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Close"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "For images in the lightbox"
|
264 |
msgstr "Размер на изображението за lightbox"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Display a full size image in the lightbox"
|
268 |
msgstr "Показване на изображението в пълен размер в lightbox"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Crop position"
|
272 |
msgstr "Позиция за изрязване"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "center"
|
276 |
msgstr "център"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Horizontal"
|
280 |
msgstr "Хоризонтално"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Vertical"
|
284 |
msgstr "Вертикално"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
msgid "Unlock premium options by upgrading to Pro version"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
msgid "Start Your Trial"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "or"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
#, fuzzy
|
305 |
msgid "Learn More"
|
306 |
msgstr "Читати далі"
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Display image title"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
#, fuzzy
|
314 |
msgid ""
|
315 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
316 |
msgstr "Не отбелязвайте, ако искате текстът да се показва само в lightbox"
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "Images with border"
|
320 |
msgstr "Изображения с рамка"
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "Border width in px, just numbers"
|
324 |
msgstr "Ширина на рамката в пиксели, само числа"
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Sort images"
|
328 |
msgstr "Подреди изображенията"
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
#, fuzzy
|
332 |
msgid "by Attachment ID"
|
333 |
msgstr "ID на изображението"
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
#, fuzzy
|
337 |
msgid "by Image Name"
|
338 |
msgstr "Име на изображението"
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
#, fuzzy
|
342 |
msgid "by Date"
|
343 |
msgstr "Дата "
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "by Sorting order in the Gallery"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Random"
|
351 |
msgstr "Произволен"
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
#, fuzzy
|
355 |
msgid "The images sort order"
|
356 |
msgstr "Изображения с рамка"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
360 |
msgstr "ASC (възходящ ред - 1, 2, 3, а, б, в)"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid ""
|
364 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
365 |
msgstr "DESC (низходящ ред - 3, 2, 1, в, б, а)"
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
#, fuzzy
|
369 |
msgid "Sort galleries"
|
370 |
msgstr "Галерии"
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
#, fuzzy
|
374 |
msgid "by Gallery ID"
|
375 |
msgstr "Галерия"
|
376 |
|
377 |
-
#: gallery-plugin.php:
|
378 |
#, fuzzy
|
379 |
msgid "by Title"
|
380 |
msgstr "Име"
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
msgid "by Last modified date"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: gallery-plugin.php:
|
387 |
msgid "by Comment count"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: gallery-plugin.php:
|
391 |
#, fuzzy
|
392 |
msgid "by Sorting order (the input field for sorting order)"
|
393 |
msgstr ""
|
394 |
"Ред за сортиране (полето за въвеждане на ред за сортиране в Insert / Upload "
|
395 |
"Media Gallery)"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
#, fuzzy
|
399 |
msgid "by Author"
|
400 |
msgstr "Автор "
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "The galleries sort order"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
msgid "Start slideshow"
|
408 |
msgstr "Слайдшоу"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "Slideshow interval"
|
412 |
msgstr "Интервал за слайдшоу"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "(ms)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Use single lightbox for multiple galleries on one page"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Display the Back link"
|
424 |
msgstr "Показване на линк 'Назад'"
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Display the Back link in the shortcode"
|
428 |
msgstr "Показване на линк 'Назад' в шорткода"
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "The Back link text"
|
432 |
msgstr "Текст за линка 'Назад'"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Back link URL"
|
436 |
msgstr "URL за линка 'Назад'"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "Gallery page (Page with Gallery Template)"
|
440 |
msgstr "Страница с галерия (страница с шаблон 'Gallery Template')"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "(Full URL to custom page)"
|
444 |
msgstr "(Пълно URL към произволна страница)"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "The Read More link text"
|
448 |
msgstr "Текст за линка 'Прочети повече'"
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Add gallery to the search"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Using"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "powered by"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
#, fuzzy
|
464 |
msgid "Activate"
|
465 |
msgstr "Активовані плагіни"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Download"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
-
msgid "Rewrite templates after update"
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: gallery-plugin.php:1929
|
476 |
-
#, php-format
|
477 |
-
msgid ""
|
478 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
479 |
-
"theme folder and You don't want to rewrite them"
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: gallery-plugin.php:1934
|
483 |
msgid "Rename gallery post type"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: gallery-plugin.php:
|
487 |
msgid ""
|
488 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
489 |
"it now"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: gallery-plugin.php:
|
493 |
msgid ""
|
494 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
495 |
"please check settings of your other plugins where 'gallery' post type is used"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: gallery-plugin.php:
|
499 |
#, fuzzy
|
500 |
msgid "Single gallery view"
|
501 |
msgstr "Название на елемент от галерията"
|
502 |
|
503 |
-
#: gallery-plugin.php:
|
504 |
msgid "Grid"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: gallery-plugin.php:
|
508 |
msgid "Masonry"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: gallery-plugin.php:
|
512 |
#, fuzzy
|
513 |
msgid "Under image"
|
514 |
msgstr "подреди изображенията"
|
515 |
|
516 |
-
#: gallery-plugin.php:
|
517 |
msgid "By mouse hover"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: gallery-plugin.php:
|
521 |
msgid "Use pagination for images"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: gallery-plugin.php:
|
525 |
msgid "per page"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: gallery-plugin.php:
|
529 |
msgid "Lightbox background"
|
530 |
msgstr "Фон на lightbox"
|
531 |
|
532 |
-
#: gallery-plugin.php:
|
533 |
msgid "Background transparency (from 0 to 1)"
|
534 |
msgstr "Прозрачност на фона (от 0 до 1)"
|
535 |
|
536 |
-
#: gallery-plugin.php:
|
537 |
msgid ""
|
538 |
"Display all images in the lightbox instead of going into a single gallery"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: gallery-plugin.php:
|
542 |
#, php-format
|
543 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: gallery-plugin.php:
|
547 |
msgid "The lightbox helper"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: gallery-plugin.php:
|
551 |
msgid "Do not use"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: gallery-plugin.php:
|
555 |
msgid "Button helper"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: gallery-plugin.php:
|
559 |
msgid "Thumbnail helper"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: gallery-plugin.php:
|
563 |
msgid "Display Like buttons in the lightbox"
|
564 |
msgstr "Показване на Like бутони в lightbox"
|
565 |
|
566 |
-
#: gallery-plugin.php:
|
567 |
msgid "FaceBook"
|
568 |
msgstr "FaceBook"
|
569 |
|
570 |
-
#: gallery-plugin.php:
|
571 |
msgid "Twitter"
|
572 |
msgstr "Twitter"
|
573 |
|
574 |
-
#: gallery-plugin.php:
|
575 |
msgid "Pinterest"
|
576 |
msgstr "Pinterest"
|
577 |
|
578 |
-
#: gallery-plugin.php:
|
579 |
msgid "Google +1"
|
580 |
msgstr "Google +1"
|
581 |
|
582 |
-
#: gallery-plugin.php:
|
583 |
#, fuzzy
|
584 |
msgid "Show counter"
|
585 |
msgstr "Интервал за слайдшоу"
|
586 |
|
587 |
-
#: gallery-plugin.php:
|
588 |
msgid "Align"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: gallery-plugin.php:
|
592 |
msgid "left"
|
593 |
msgstr "ляво"
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "Title for lightbox button"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: gallery-plugin.php:
|
600 |
msgid "Slug for gallery item"
|
601 |
msgstr "Название на елемент от галерията"
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "for any structure of permalinks except the default structure"
|
605 |
msgstr ""
|
606 |
"за всяка структура от пермалинковете, с изключение на структурата по "
|
607 |
"подразбиране"
|
608 |
|
609 |
-
#: gallery-plugin.php:
|
610 |
msgid "Save Changes"
|
611 |
msgstr "Съхрани промените"
|
612 |
|
613 |
-
#: gallery-plugin.php:
|
614 |
msgid ""
|
615 |
"If you install the demo-data, will be created galleries with images, demo-"
|
616 |
"post with available shortcodes and page with a list of all the galleries."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: gallery-plugin.php:
|
620 |
msgid "FAQ"
|
621 |
msgstr "Често задавани въпроси"
|
622 |
|
623 |
-
#: gallery-plugin.php:
|
624 |
msgid "Support"
|
625 |
msgstr "Поддръжка"
|
626 |
|
627 |
-
#: gallery-plugin.php:
|
628 |
msgid "Updating images..."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: gallery-plugin.php:
|
632 |
#, fuzzy
|
633 |
msgid "No image found."
|
634 |
msgstr "Няма намерена галерия"
|
635 |
|
636 |
-
#: gallery-plugin.php:
|
637 |
msgid "All images are updated."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: gallery-plugin.php:
|
641 |
msgid "Error."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: gallery-plugin.php:
|
645 |
msgid ""
|
646 |
"You are about to delete these items from this gallery.\n"
|
647 |
" 'Cancel' to stop, 'OK' to delete."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: gallery-plugin.php:
|
651 |
msgid ""
|
652 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
653 |
"switching?"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: gallery-plugin.php:
|
657 |
msgid "Insert Media"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: gallery-plugin.php:
|
661 |
msgid "Insert"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: gallery-plugin.php:
|
665 |
#, fuzzy
|
666 |
msgid "Learn more"
|
667 |
msgstr "Читати далі"
|
668 |
|
669 |
-
#: gallery-plugin.php:
|
670 |
#, fuzzy
|
671 |
msgid "Install now"
|
672 |
msgstr "Установка %"
|
673 |
|
674 |
-
#: gallery-plugin.php:
|
675 |
msgid "Add multiple gallery categories"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: gallery-plugin.php:
|
679 |
msgid ""
|
680 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
684 |
#, fuzzy
|
685 |
msgid "Image size not defined"
|
686 |
msgstr "Размер на изображението"
|
687 |
|
688 |
-
#: gallery-plugin.php:
|
689 |
msgid ""
|
690 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
691 |
"manually reload image."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: gallery-plugin.php:
|
695 |
msgid "Image size changes not defined"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: gallery-plugin.php:
|
699 |
msgid "Invalid path"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: gallery-plugin.php:
|
703 |
msgid "Add images requires JavaScript."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: gallery-plugin.php:
|
707 |
msgid "Add Media"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: gallery-plugin.php:
|
711 |
msgid "The grid view for the Gallery images requires JavaScript."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: gallery-plugin.php:
|
715 |
msgid "Switch to the list view"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: gallery-plugin.php:
|
719 |
msgid "List View"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: gallery-plugin.php:
|
723 |
msgid "Grid View"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: gallery-plugin.php:
|
727 |
msgid "Filter"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: gallery-plugin.php:
|
731 |
msgid "Empty Trash"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
#, fuzzy
|
736 |
msgid "No images found"
|
737 |
msgstr "Няма намерена галерия"
|
738 |
|
739 |
-
#: gallery-plugin.php:
|
740 |
msgid "Select bulk action"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: gallery-plugin.php:
|
744 |
msgid "Bulk Actions"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: gallery-plugin.php:
|
748 |
msgid "Apply"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: gallery-plugin.php:
|
752 |
#, fuzzy
|
753 |
msgid "Delete from Gallery"
|
754 |
msgstr "Нова галерия"
|
755 |
|
756 |
-
#: gallery-plugin.php:
|
757 |
#, fuzzy
|
758 |
msgid "Display link to the original file under each image in the lightbox"
|
759 |
msgstr "Показване на изображението в пълен размер в lightbox"
|
760 |
|
761 |
-
#: gallery-plugin.php:
|
762 |
msgid "Bulk Select"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: gallery-plugin.php:
|
766 |
msgid "Cancel Selection"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: gallery-plugin.php:
|
770 |
msgid "Delete Selected"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: gallery-plugin.php:
|
774 |
msgid "File"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid "Dimensions"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: gallery-plugin.php:
|
782 |
msgid "Alt tag"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid ""
|
787 |
"The alt attribute specifies an alternate text for an image, if the image "
|
788 |
"cannot be displayed."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: gallery-plugin.php:
|
792 |
msgid "Custom URL"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: gallery-plugin.php:
|
796 |
msgid ""
|
797 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
798 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: gallery-plugin.php:
|
802 |
msgid "Deselect"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: gallery-plugin.php:
|
806 |
msgid "File name"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: gallery-plugin.php:
|
810 |
msgid "File type"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: gallery-plugin.php:
|
814 |
#, fuzzy
|
815 |
msgid "Edit Attachment Info"
|
816 |
msgstr "ID на изображението"
|
817 |
|
818 |
-
#: gallery-plugin.php:
|
819 |
#, fuzzy
|
820 |
msgid "Edit Attachment"
|
821 |
msgstr "ID на изображението"
|
822 |
|
823 |
-
#: gallery-plugin.php:
|
824 |
msgid "Go Pro"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
msgid "Pro version"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: gallery-plugin.php:
|
832 |
msgid "This setting is available in Pro version"
|
833 |
msgstr "Тази настройка е достъпна само в Pro версията."
|
834 |
|
835 |
-
#: gallery-plugin.php:
|
836 |
msgid "Edit more details"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: gallery-plugin.php:
|
840 |
#, php-format
|
841 |
msgid "Select %s"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: gallery-plugin.php:
|
845 |
#, php-format
|
846 |
msgid "Edit “%s”"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: gallery-plugin.php:
|
850 |
msgid "Edit"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: gallery-plugin.php:
|
854 |
msgid "Trash"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: gallery-plugin.php:
|
858 |
msgid "Delete Permanently"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
#, php-format
|
863 |
msgid "View “%s”"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: gallery-plugin.php:
|
867 |
msgid "View"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: gallery-plugin.php:
|
871 |
#, fuzzy
|
872 |
msgid "Attach"
|
873 |
msgstr "ID на изображението"
|
874 |
|
875 |
-
#: gallery-plugin.php:
|
876 |
msgid "Restore"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: gallery-plugin.php:
|
880 |
msgid "Warning"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: gallery-plugin.php:
|
884 |
msgid "You can add only images to the gallery"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: gallery-plugin.php:
|
888 |
#, fuzzy
|
889 |
msgid "no title"
|
890 |
msgstr "Име"
|
891 |
|
892 |
-
#: gallery-plugin.php:
|
893 |
#, fuzzy
|
894 |
msgid "Sorry, no gallery found."
|
895 |
msgstr "Съжалявам, нищо не е намерено."
|
896 |
|
897 |
-
#: gallery-plugin.php:
|
898 |
#, fuzzy
|
899 |
msgid ""
|
900 |
"Display an album image with the description and the link to a single gallery "
|
@@ -903,93 +885,104 @@ msgstr ""
|
|
903 |
"Ако искате да покажете кратко описание, заедно със screenshot и линк към "
|
904 |
"страницата с галерията"
|
905 |
|
906 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
907 |
#, fuzzy
|
908 |
msgid "Install Demo Data"
|
909 |
msgstr "Установка %"
|
910 |
|
911 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
912 |
msgid "Remove Demo Data"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
916 |
msgid "Delete demo-data and restore old plugin settings."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
920 |
msgid "Yes, install demo data"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
924 |
msgid "Are you sure you want to install demo data?"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
928 |
msgid "Yes, remove demo data"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
932 |
msgid "Are you sure you want to remove demo data?"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
936 |
#, fuzzy
|
937 |
msgid "No, go back to the settings page"
|
938 |
msgstr "на страницата с настройки за плъгина ("
|
939 |
|
940 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
941 |
msgid "Can not get demo data."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
945 |
msgid "Demo options already installed."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
949 |
msgid "Demo data successfully installed."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
953 |
msgid "View post with shortcodes"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
957 |
msgid "View page with examples"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
961 |
msgid "Installation of demo data with some errors occurred."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
965 |
msgid "Posts data is missing."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
969 |
msgid "Demo data have already been removed."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
973 |
msgid "Demo data successfully removed."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
977 |
msgid "Removing demo data with some errors occurred."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
981 |
msgid "Close notice"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
985 |
#, fuzzy
|
986 |
msgid "Install demo data"
|
987 |
msgstr "Установка %"
|
988 |
|
989 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
990 |
msgid "for an acquaintance with the possibilities of the"
|
991 |
msgstr ""
|
992 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
#~ msgid "Select a border color"
|
994 |
#~ msgstr "Изберете цвят за рамката"
|
995 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:19+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Petya <p@pipermagus.com>\n"
|
9 |
"Language: uk_UA\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
20 |
+
#: gallery-plugin.php:2010
|
21 |
msgid "Settings"
|
22 |
msgstr "Настройки"
|
23 |
|
24 |
+
#: gallery-plugin.php:139
|
25 |
msgid "See images »"
|
26 |
msgstr "Виж изображенията »"
|
27 |
|
28 |
+
#: gallery-plugin.php:142
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Galleries"
|
34 |
msgstr "Галерии"
|
35 |
|
36 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
37 |
msgid "Gallery"
|
38 |
msgstr "Галерия"
|
39 |
|
40 |
+
#: gallery-plugin.php:322
|
41 |
msgid "Add New Gallery"
|
42 |
msgstr "Добави нова галерия"
|
43 |
|
44 |
+
#: gallery-plugin.php:323
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "Редактирай галерия"
|
47 |
|
48 |
+
#: gallery-plugin.php:324
|
49 |
msgid "New Gallery"
|
50 |
msgstr "Нова галерия"
|
51 |
|
52 |
+
#: gallery-plugin.php:325
|
53 |
msgid "View Gallery"
|
54 |
msgstr "Преглед на галерия"
|
55 |
|
56 |
+
#: gallery-plugin.php:326
|
57 |
#, fuzzy
|
58 |
msgid "Search Galleries"
|
59 |
msgstr "Галерии"
|
60 |
|
61 |
+
#: gallery-plugin.php:327
|
62 |
msgid "No Gallery found"
|
63 |
msgstr "Няма намерена галерия"
|
64 |
|
65 |
+
#: gallery-plugin.php:388
|
66 |
msgid "Gallery Shortcode"
|
67 |
msgstr "Шорткод за галерия"
|
68 |
|
69 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
70 |
#, fuzzy
|
71 |
msgid "Gallery Categories"
|
72 |
msgstr "Размер на изображението в галерия"
|
73 |
|
74 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
75 |
#, fuzzy, php-format
|
76 |
msgid ""
|
77 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
79 |
"Ако искате да добавите галерия към ваша страница или пост, просто копирайте "
|
80 |
"и поставете този шорткод в поста или страницата:"
|
81 |
|
82 |
+
#: gallery-plugin.php:405
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
87 |
"please use the shortcode below"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:411
|
91 |
msgid ""
|
92 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: gallery-plugin.php:414
|
96 |
#, fuzzy
|
97 |
msgid ""
|
98 |
"Use this shortcode to display an album image with the description and the "
|
101 |
"Ако искате да покажете кратко описание, заедно със screenshot и линк към "
|
102 |
"страницата с галерията"
|
103 |
|
104 |
+
#: gallery-plugin.php:416
|
105 |
msgid "Short display"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:433
|
109 |
msgid "Most Used"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
113 |
msgid "Default"
|
114 |
msgstr "По подразбиране"
|
115 |
|
116 |
+
#: gallery-plugin.php:443
|
117 |
#, fuzzy
|
118 |
msgid "Add New Gallery Category"
|
119 |
msgstr "Добави нова галерия"
|
120 |
|
121 |
+
#: gallery-plugin.php:448
|
122 |
#, fuzzy
|
123 |
msgid "Install plugin"
|
124 |
msgstr "Встановлених модулів"
|
125 |
|
126 |
+
#: gallery-plugin.php:610
|
127 |
#, fuzzy
|
128 |
msgid "Gallery Category"
|
129 |
msgstr "Размер на изображението в галерия"
|
130 |
|
131 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
msgid "Sorry, nothing found."
|
133 |
msgstr "Съжалявам, нищо не е намерено."
|
134 |
|
135 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
136 |
+
#: gallery-plugin.php:3128
|
137 |
msgid "Title"
|
138 |
msgstr "Име"
|
139 |
|
140 |
+
#: gallery-plugin.php:1356
|
141 |
msgid "Author"
|
142 |
msgstr "Автор "
|
143 |
|
144 |
+
#: gallery-plugin.php:1357
|
145 |
#, fuzzy
|
146 |
msgid "Shortcode"
|
147 |
msgstr "Шорткод за галерия"
|
148 |
|
149 |
+
#: gallery-plugin.php:1358
|
150 |
#, fuzzy
|
151 |
msgid "Photos"
|
152 |
msgstr "Снимка"
|
153 |
|
154 |
+
#: gallery-plugin.php:1359
|
155 |
msgid "Date"
|
156 |
msgstr "Дата "
|
157 |
|
158 |
+
#: gallery-plugin.php:1547
|
159 |
msgid "Settings are saved"
|
160 |
msgstr "Настройките са съхранени"
|
161 |
|
162 |
+
#: gallery-plugin.php:1564
|
163 |
#, fuzzy
|
164 |
msgid "All plugin settings were restored."
|
165 |
msgstr "на страницата с настройки за плъгина ("
|
166 |
|
167 |
+
#: gallery-plugin.php:1576
|
168 |
msgid "Gallery Settings"
|
169 |
msgstr "Настройки на галерията"
|
170 |
|
171 |
+
#: gallery-plugin.php:1579
|
172 |
msgid "Custom code"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: gallery-plugin.php:1580
|
176 |
msgid "Go PRO"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: gallery-plugin.php:1590
|
180 |
#, fuzzy
|
181 |
msgid "Please enable JavaScript to use the option to renew images."
|
182 |
msgstr "Моля, активирайте JavaScript, за да можете да качвате файлове."
|
183 |
|
184 |
+
#: gallery-plugin.php:1602
|
185 |
#, php-format
|
186 |
msgid ""
|
187 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
189 |
"please use the shortcode %s, where * stands for gallery ID"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: gallery-plugin.php:1612
|
193 |
+
#, fuzzy
|
194 |
+
msgid "Galleries page"
|
195 |
+
msgstr "Галерии"
|
196 |
+
|
197 |
+
#: gallery-plugin.php:1622
|
198 |
msgid "Number of images in the row"
|
199 |
msgstr "Брой изображения на ред"
|
200 |
|
201 |
+
#: gallery-plugin.php:1624
|
202 |
#, fuzzy
|
203 |
msgid ""
|
204 |
"The number of images per row can be less depending on the width of the "
|
205 |
"parent block"
|
206 |
msgstr "Брой изображения на ред"
|
207 |
|
208 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
209 |
msgid "Image size"
|
210 |
msgstr "Размер на изображението"
|
211 |
|
212 |
+
#: gallery-plugin.php:1631
|
213 |
msgid ""
|
214 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
215 |
"upload a new photo."
|
217 |
"WordPress ще създава thumbnail с указаните размери, когато качвате нова "
|
218 |
"снимка."
|
219 |
|
220 |
+
#: gallery-plugin.php:1633
|
221 |
#, fuzzy
|
222 |
msgid "For the album cover"
|
223 |
msgstr "Размер на изображението за корица на албума"
|
224 |
|
225 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
226 |
msgid "width x height"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
230 |
msgid "in px"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: gallery-plugin.php:1637
|
234 |
#, fuzzy
|
235 |
msgid "For thumbnails"
|
236 |
msgstr "Размер на изображението за корица на албума"
|
237 |
|
238 |
+
#: gallery-plugin.php:1641
|
239 |
msgid "Update images for gallery"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
243 |
msgid "Close"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1657
|
247 |
#, fuzzy
|
248 |
msgid "For images in the lightbox"
|
249 |
msgstr "Размер на изображението за lightbox"
|
250 |
|
251 |
+
#: gallery-plugin.php:1661
|
252 |
msgid "Display a full size image in the lightbox"
|
253 |
msgstr "Показване на изображението в пълен размер в lightbox"
|
254 |
|
255 |
+
#: gallery-plugin.php:1666
|
256 |
msgid "Crop position"
|
257 |
msgstr "Позиция за изрязване"
|
258 |
|
259 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
260 |
msgid "center"
|
261 |
msgstr "център"
|
262 |
|
263 |
+
#: gallery-plugin.php:1672
|
264 |
msgid "Horizontal"
|
265 |
msgstr "Хоризонтално"
|
266 |
|
267 |
+
#: gallery-plugin.php:1678
|
268 |
msgid "Vertical"
|
269 |
msgstr "Вертикално"
|
270 |
|
271 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
272 |
msgid ""
|
273 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
277 |
msgid "Unlock premium options by upgrading to Pro version"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
281 |
msgid "Start Your Trial"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
285 |
msgid "or"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
289 |
#, fuzzy
|
290 |
msgid "Learn More"
|
291 |
msgstr "Читати далі"
|
292 |
|
293 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
294 |
msgid "Display image title"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: gallery-plugin.php:1708
|
298 |
#, fuzzy
|
299 |
msgid ""
|
300 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
301 |
msgstr "Не отбелязвайте, ако искате текстът да се показва само в lightbox"
|
302 |
|
303 |
+
#: gallery-plugin.php:1712
|
304 |
msgid "Images with border"
|
305 |
msgstr "Изображения с рамка"
|
306 |
|
307 |
+
#: gallery-plugin.php:1716
|
308 |
msgid "Border width in px, just numbers"
|
309 |
msgstr "Ширина на рамката в пиксели, само числа"
|
310 |
|
311 |
+
#: gallery-plugin.php:1722
|
312 |
msgid "Sort images"
|
313 |
msgstr "Подреди изображенията"
|
314 |
|
315 |
+
#: gallery-plugin.php:1725
|
316 |
#, fuzzy
|
317 |
msgid "by Attachment ID"
|
318 |
msgstr "ID на изображението"
|
319 |
|
320 |
+
#: gallery-plugin.php:1726
|
321 |
#, fuzzy
|
322 |
msgid "by Image Name"
|
323 |
msgstr "Име на изображението"
|
324 |
|
325 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
326 |
#, fuzzy
|
327 |
msgid "by Date"
|
328 |
msgstr "Дата "
|
329 |
|
330 |
+
#: gallery-plugin.php:1728
|
331 |
msgid "by Sorting order in the Gallery"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
335 |
msgid "Random"
|
336 |
msgstr "Произволен"
|
337 |
|
338 |
+
#: gallery-plugin.php:1734
|
339 |
#, fuzzy
|
340 |
msgid "The images sort order"
|
341 |
msgstr "Изображения с рамка"
|
342 |
|
343 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
344 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
345 |
msgstr "ASC (възходящ ред - 1, 2, 3, а, б, в)"
|
346 |
|
347 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
348 |
msgid ""
|
349 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
350 |
msgstr "DESC (низходящ ред - 3, 2, 1, в, б, а)"
|
351 |
|
352 |
+
#: gallery-plugin.php:1743
|
353 |
#, fuzzy
|
354 |
msgid "Sort galleries"
|
355 |
msgstr "Галерии"
|
356 |
|
357 |
+
#: gallery-plugin.php:1746
|
358 |
#, fuzzy
|
359 |
msgid "by Gallery ID"
|
360 |
msgstr "Галерия"
|
361 |
|
362 |
+
#: gallery-plugin.php:1747
|
363 |
#, fuzzy
|
364 |
msgid "by Title"
|
365 |
msgstr "Име"
|
366 |
|
367 |
+
#: gallery-plugin.php:1749
|
368 |
msgid "by Last modified date"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: gallery-plugin.php:1750
|
372 |
msgid "by Comment count"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: gallery-plugin.php:1751
|
376 |
#, fuzzy
|
377 |
msgid "by Sorting order (the input field for sorting order)"
|
378 |
msgstr ""
|
379 |
"Ред за сортиране (полето за въвеждане на ред за сортиране в Insert / Upload "
|
380 |
"Media Gallery)"
|
381 |
|
382 |
+
#: gallery-plugin.php:1752
|
383 |
#, fuzzy
|
384 |
msgid "by Author"
|
385 |
msgstr "Автор "
|
386 |
|
387 |
+
#: gallery-plugin.php:1758
|
388 |
msgid "The galleries sort order"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: gallery-plugin.php:1767
|
392 |
msgid "Start slideshow"
|
393 |
msgstr "Слайдшоу"
|
394 |
|
395 |
+
#: gallery-plugin.php:1770
|
396 |
msgid "Slideshow interval"
|
397 |
msgstr "Интервал за слайдшоу"
|
398 |
|
399 |
+
#: gallery-plugin.php:1770
|
400 |
msgid "(ms)"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: gallery-plugin.php:1774
|
404 |
msgid "Use single lightbox for multiple galleries on one page"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: gallery-plugin.php:1780
|
408 |
msgid "Display the Back link"
|
409 |
msgstr "Показване на линк 'Назад'"
|
410 |
|
411 |
+
#: gallery-plugin.php:1786
|
412 |
msgid "Display the Back link in the shortcode"
|
413 |
msgstr "Показване на линк 'Назад' в шорткода"
|
414 |
|
415 |
+
#: gallery-plugin.php:1792
|
416 |
msgid "The Back link text"
|
417 |
msgstr "Текст за линка 'Назад'"
|
418 |
|
419 |
+
#: gallery-plugin.php:1798
|
420 |
msgid "The Back link URL"
|
421 |
msgstr "URL за линка 'Назад'"
|
422 |
|
423 |
+
#: gallery-plugin.php:1801
|
424 |
msgid "Gallery page (Page with Gallery Template)"
|
425 |
msgstr "Страница с галерия (страница с шаблон 'Gallery Template')"
|
426 |
|
427 |
+
#: gallery-plugin.php:1803
|
428 |
msgid "(Full URL to custom page)"
|
429 |
msgstr "(Пълно URL към произволна страница)"
|
430 |
|
431 |
+
#: gallery-plugin.php:1808
|
432 |
msgid "The Read More link text"
|
433 |
msgstr "Текст за линка 'Прочети повече'"
|
434 |
|
435 |
+
#: gallery-plugin.php:1814
|
436 |
msgid "Add gallery to the search"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
440 |
msgid "Using"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
444 |
msgid "powered by"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
448 |
#, fuzzy
|
449 |
msgid "Activate"
|
450 |
msgstr "Активовані плагіни"
|
451 |
|
452 |
+
#: gallery-plugin.php:1826
|
453 |
msgid "Download"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
457 |
msgid "Rename gallery post type"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:1837
|
461 |
msgid ""
|
462 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
463 |
"it now"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: gallery-plugin.php:1838
|
467 |
msgid ""
|
468 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
469 |
"please check settings of your other plugins where 'gallery' post type is used"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: gallery-plugin.php:1851
|
473 |
#, fuzzy
|
474 |
msgid "Single gallery view"
|
475 |
msgstr "Название на елемент от галерията"
|
476 |
|
477 |
+
#: gallery-plugin.php:1854
|
478 |
msgid "Grid"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:1855
|
482 |
msgid "Masonry"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1863
|
486 |
#, fuzzy
|
487 |
msgid "Under image"
|
488 |
msgstr "подреди изображенията"
|
489 |
|
490 |
+
#: gallery-plugin.php:1864
|
491 |
msgid "By mouse hover"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:1869
|
495 |
msgid "Use pagination for images"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1872
|
499 |
msgid "per page"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:1876
|
503 |
msgid "Lightbox background"
|
504 |
msgstr "Фон на lightbox"
|
505 |
|
506 |
+
#: gallery-plugin.php:1879
|
507 |
msgid "Background transparency (from 0 to 1)"
|
508 |
msgstr "Прозрачност на фона (от 0 до 1)"
|
509 |
|
510 |
+
#: gallery-plugin.php:1885
|
511 |
msgid ""
|
512 |
"Display all images in the lightbox instead of going into a single gallery"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:1888
|
516 |
#, php-format
|
517 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: gallery-plugin.php:1892
|
521 |
msgid "The lightbox helper"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:1894
|
525 |
msgid "Do not use"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: gallery-plugin.php:1895
|
529 |
msgid "Button helper"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1896
|
533 |
msgid "Thumbnail helper"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1900
|
537 |
msgid "Display Like buttons in the lightbox"
|
538 |
msgstr "Показване на Like бутони в lightbox"
|
539 |
|
540 |
+
#: gallery-plugin.php:1904
|
541 |
msgid "FaceBook"
|
542 |
msgstr "FaceBook"
|
543 |
|
544 |
+
#: gallery-plugin.php:1905
|
545 |
msgid "Twitter"
|
546 |
msgstr "Twitter"
|
547 |
|
548 |
+
#: gallery-plugin.php:1906
|
549 |
msgid "Pinterest"
|
550 |
msgstr "Pinterest"
|
551 |
|
552 |
+
#: gallery-plugin.php:1907
|
553 |
msgid "Google +1"
|
554 |
msgstr "Google +1"
|
555 |
|
556 |
+
#: gallery-plugin.php:1910
|
557 |
#, fuzzy
|
558 |
msgid "Show counter"
|
559 |
msgstr "Интервал за слайдшоу"
|
560 |
|
561 |
+
#: gallery-plugin.php:1912
|
562 |
msgid "Align"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: gallery-plugin.php:1914
|
566 |
msgid "left"
|
567 |
msgstr "ляво"
|
568 |
|
569 |
+
#: gallery-plugin.php:1921
|
570 |
msgid "Title for lightbox button"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: gallery-plugin.php:1927
|
574 |
msgid "Slug for gallery item"
|
575 |
msgstr "Название на елемент от галерията"
|
576 |
|
577 |
+
#: gallery-plugin.php:1929
|
578 |
msgid "for any structure of permalinks except the default structure"
|
579 |
msgstr ""
|
580 |
"за всяка структура от пермалинковете, с изключение на структурата по "
|
581 |
"подразбиране"
|
582 |
|
583 |
+
#: gallery-plugin.php:1955
|
584 |
msgid "Save Changes"
|
585 |
msgstr "Съхрани промените"
|
586 |
|
587 |
+
#: gallery-plugin.php:1960
|
588 |
msgid ""
|
589 |
"If you install the demo-data, will be created galleries with images, demo-"
|
590 |
"post with available shortcodes and page with a list of all the galleries."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: gallery-plugin.php:1994
|
594 |
msgid "FAQ"
|
595 |
msgstr "Често задавани въпроси"
|
596 |
|
597 |
+
#: gallery-plugin.php:1995
|
598 |
msgid "Support"
|
599 |
msgstr "Поддръжка"
|
600 |
|
601 |
+
#: gallery-plugin.php:2032
|
602 |
msgid "Updating images..."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: gallery-plugin.php:2033
|
606 |
#, fuzzy
|
607 |
msgid "No image found."
|
608 |
msgstr "Няма намерена галерия"
|
609 |
|
610 |
+
#: gallery-plugin.php:2034
|
611 |
msgid "All images are updated."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: gallery-plugin.php:2035
|
615 |
msgid "Error."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: gallery-plugin.php:2049
|
619 |
msgid ""
|
620 |
"You are about to delete these items from this gallery.\n"
|
621 |
" 'Cancel' to stop, 'OK' to delete."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:2050
|
625 |
msgid ""
|
626 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
627 |
"switching?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: gallery-plugin.php:2051
|
631 |
msgid "Insert Media"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: gallery-plugin.php:2052
|
635 |
msgid "Insert"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: gallery-plugin.php:2064
|
639 |
#, fuzzy
|
640 |
msgid "Learn more"
|
641 |
msgstr "Читати далі"
|
642 |
|
643 |
+
#: gallery-plugin.php:2076
|
644 |
#, fuzzy
|
645 |
msgid "Install now"
|
646 |
msgstr "Установка %"
|
647 |
|
648 |
+
#: gallery-plugin.php:2085
|
649 |
msgid "Add multiple gallery categories"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: gallery-plugin.php:2085
|
653 |
msgid ""
|
654 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: gallery-plugin.php:2405
|
658 |
+
msgid "Download high resolution image"
|
659 |
+
msgstr "Свали изображението в цял размер"
|
660 |
+
|
661 |
+
#: gallery-plugin.php:2417
|
662 |
+
msgid "Image"
|
663 |
+
msgstr "Изображение"
|
664 |
+
|
665 |
+
#: gallery-plugin.php:2558
|
666 |
#, fuzzy
|
667 |
msgid "Image size not defined"
|
668 |
msgstr "Размер на изображението"
|
669 |
|
670 |
+
#: gallery-plugin.php:2573
|
671 |
msgid ""
|
672 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
673 |
"manually reload image."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: gallery-plugin.php:2584
|
677 |
msgid "Image size changes not defined"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
681 |
msgid "Invalid path"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: gallery-plugin.php:2694
|
685 |
msgid "Add images requires JavaScript."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: gallery-plugin.php:2697
|
689 |
msgid "Add Media"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: gallery-plugin.php:2707
|
693 |
msgid "The grid view for the Gallery images requires JavaScript."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2707
|
697 |
msgid "Switch to the list view"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2734
|
701 |
msgid "List View"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: gallery-plugin.php:2735
|
705 |
msgid "Grid View"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: gallery-plugin.php:2790
|
709 |
msgid "Filter"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2794
|
713 |
msgid "Empty Trash"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: gallery-plugin.php:2815
|
717 |
#, fuzzy
|
718 |
msgid "No images found"
|
719 |
msgstr "Няма намерена галерия"
|
720 |
|
721 |
+
#: gallery-plugin.php:2867
|
722 |
msgid "Select bulk action"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: gallery-plugin.php:2869
|
726 |
msgid "Bulk Actions"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: gallery-plugin.php:2879
|
730 |
msgid "Apply"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
734 |
#, fuzzy
|
735 |
msgid "Delete from Gallery"
|
736 |
msgstr "Нова галерия"
|
737 |
|
738 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
739 |
#, fuzzy
|
740 |
msgid "Display link to the original file under each image in the lightbox"
|
741 |
msgstr "Показване на изображението в пълен размер в lightbox"
|
742 |
|
743 |
+
#: gallery-plugin.php:2908
|
744 |
msgid "Bulk Select"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: gallery-plugin.php:2910
|
748 |
msgid "Cancel Selection"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: gallery-plugin.php:2911
|
752 |
msgid "Delete Selected"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: gallery-plugin.php:2924
|
756 |
msgid "File"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
760 |
msgid "Dimensions"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
764 |
msgid "Alt tag"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
768 |
msgid ""
|
769 |
"The alt attribute specifies an alternate text for an image, if the image "
|
770 |
"cannot be displayed."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
774 |
msgid "Custom URL"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
778 |
msgid ""
|
779 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
780 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: gallery-plugin.php:3006
|
784 |
msgid "Deselect"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:3012
|
788 |
msgid "File name"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: gallery-plugin.php:3013
|
792 |
msgid "File type"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
796 |
#, fuzzy
|
797 |
msgid "Edit Attachment Info"
|
798 |
msgstr "ID на изображението"
|
799 |
|
800 |
+
#: gallery-plugin.php:3017
|
801 |
#, fuzzy
|
802 |
msgid "Edit Attachment"
|
803 |
msgstr "ID на изображението"
|
804 |
|
805 |
+
#: gallery-plugin.php:3027
|
806 |
msgid "Go Pro"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: gallery-plugin.php:3027
|
810 |
msgid "Pro version"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: gallery-plugin.php:3030
|
814 |
msgid "This setting is available in Pro version"
|
815 |
msgstr "Тази настройка е достъпна само в Pro версията."
|
816 |
|
817 |
+
#: gallery-plugin.php:3063
|
818 |
msgid "Edit more details"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: gallery-plugin.php:3098
|
822 |
#, php-format
|
823 |
msgid "Select %s"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: gallery-plugin.php:3111
|
827 |
#, php-format
|
828 |
msgid "Edit “%s”"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
832 |
msgid "Edit"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
836 |
msgid "Trash"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
840 |
msgid "Delete Permanently"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
844 |
#, php-format
|
845 |
msgid "View “%s”"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
849 |
msgid "View"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: gallery-plugin.php:3166
|
853 |
#, fuzzy
|
854 |
msgid "Attach"
|
855 |
msgstr "ID на изображението"
|
856 |
|
857 |
+
#: gallery-plugin.php:3172
|
858 |
msgid "Restore"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: gallery-plugin.php:3303
|
862 |
msgid "Warning"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: gallery-plugin.php:3303
|
866 |
msgid "You can add only images to the gallery"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: gallery-plugin.php:3345
|
870 |
#, fuzzy
|
871 |
msgid "no title"
|
872 |
msgstr "Име"
|
873 |
|
874 |
+
#: gallery-plugin.php:3353
|
875 |
#, fuzzy
|
876 |
msgid "Sorry, no gallery found."
|
877 |
msgstr "Съжалявам, нищо не е намерено."
|
878 |
|
879 |
+
#: gallery-plugin.php:3359
|
880 |
#, fuzzy
|
881 |
msgid ""
|
882 |
"Display an album image with the description and the link to a single gallery "
|
885 |
"Ако искате да покажете кратко описание, заедно със screenshot и линк към "
|
886 |
"страницата с галерията"
|
887 |
|
888 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
889 |
#, fuzzy
|
890 |
msgid "Install Demo Data"
|
891 |
msgstr "Установка %"
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
894 |
msgid "Remove Demo Data"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
898 |
msgid "Delete demo-data and restore old plugin settings."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
902 |
msgid "Yes, install demo data"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
906 |
msgid "Are you sure you want to install demo data?"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
910 |
msgid "Yes, remove demo data"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
914 |
msgid "Are you sure you want to remove demo data?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
918 |
#, fuzzy
|
919 |
msgid "No, go back to the settings page"
|
920 |
msgstr "на страницата с настройки за плъгина ("
|
921 |
|
922 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
923 |
msgid "Can not get demo data."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
927 |
msgid "Demo options already installed."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
931 |
msgid "Demo data successfully installed."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
935 |
msgid "View post with shortcodes"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
939 |
msgid "View page with examples"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
943 |
msgid "Installation of demo data with some errors occurred."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
947 |
msgid "Posts data is missing."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
951 |
msgid "Demo data have already been removed."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
955 |
msgid "Demo data successfully removed."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
959 |
msgid "Removing demo data with some errors occurred."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
963 |
msgid "Close notice"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
967 |
#, fuzzy
|
968 |
msgid "Install demo data"
|
969 |
msgstr "Установка %"
|
970 |
|
971 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
972 |
msgid "for an acquaintance with the possibilities of the"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#, fuzzy
|
976 |
+
#~ msgid ""
|
977 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
978 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
979 |
+
#~ "theme for the correct work of the Gallery plugin"
|
980 |
+
#~ msgstr ""
|
981 |
+
#~ "Файловете \"gallery-template.php\" и \"gallery-single-template.php\" не "
|
982 |
+
#~ "бяха намерени в папката на вашата тема. Моля копирайте ги от папката `/wp-"
|
983 |
+
#~ "content/plugins/gallery-plugin/template/` в папката на вашата тема, за да "
|
984 |
+
#~ "работи правилно приставката Gallery."
|
985 |
+
|
986 |
#~ msgid "Select a border color"
|
987 |
#~ msgstr "Изберете цвят за рамката"
|
988 |
|
languages/gallery-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/gallery-plugin-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lagya <lagya@me.com>\n"
|
9 |
"Language: cs\n"
|
@@ -17,74 +17,62 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "Settings"
|
23 |
msgstr "Nastavení"
|
24 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "See images »"
|
27 |
msgstr "Viz obrázky »"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
-
#, fuzzy, php-format
|
35 |
-
msgid ""
|
36 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
37 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
38 |
-
"theme for the correct work of the Gallery plugin"
|
39 |
-
msgstr ""
|
40 |
-
"Následující soubory \"gallery-template.php\" a \"gallery-single-template.php"
|
41 |
-
"\"nebyly nalezeny v adresáři vašeho tématu WP. Zkopírujte prosím z adresáře "
|
42 |
-
"`/wp-content/plugins/gallery-plugin/template/` do adresáře vašeho motivu pro "
|
43 |
-
"správnou práci pluginu Gallery."
|
44 |
-
|
45 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galerie"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galerie"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Přidej novou galerii"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Uprav galerii"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Nová galerie"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Ukaž galerii"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
#, fuzzy
|
71 |
msgid "Search Galleries"
|
72 |
msgstr "Galerie"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Žádná galerie nenalezena"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Gallery Shortcode"
|
80 |
msgstr "Zkrácený kód galerie"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Categories"
|
85 |
msgstr "Velikost obrázku v galerii"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
#, fuzzy, php-format
|
89 |
msgid ""
|
90 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -92,7 +80,7 @@ msgstr ""
|
|
92 |
"Pokud byste chtěli přidat jednu Galerie na vaše stránky nebo příspěvek, "
|
93 |
"stačí zkopírovat a vložit tento zkrácený kód do příspěvku nebo stránky:"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -100,12 +88,12 @@ msgid ""
|
|
100 |
"please use the shortcode below"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid ""
|
105 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
#, fuzzy
|
110 |
msgid ""
|
111 |
"Use this shortcode to display an album image with the description and the "
|
@@ -114,94 +102,86 @@ msgstr ""
|
|
114 |
"Chcete-li zobrazit krátký popis obsahující screenshot a odkaz na jednu "
|
115 |
"stránku Galerie"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Short display"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Most Used"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Default"
|
127 |
msgstr "Výchozí"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "Add New Gallery Category"
|
132 |
msgstr "Přidej novou galerii"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
#, fuzzy
|
136 |
msgid "Install plugin"
|
137 |
msgstr "Встановлених модулів"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
#, fuzzy
|
141 |
msgid "Gallery Category"
|
142 |
msgstr "Velikost obrázku v galerii"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
-
msgid "Download high resolution image"
|
146 |
-
msgstr "Stáhnout obrázek ve vysokém rozlišení"
|
147 |
-
|
148 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
149 |
-
msgid "Image"
|
150 |
-
msgstr "Obrázek"
|
151 |
-
|
152 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
153 |
msgid "Sorry, nothing found."
|
154 |
msgstr "Ups, nic nenalezeno"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Title"
|
159 |
msgstr "Titulek"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Author"
|
163 |
msgstr "Autor"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
#, fuzzy
|
167 |
msgid "Shortcode"
|
168 |
msgstr "Zkrácený kód galerie"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
#, fuzzy
|
172 |
msgid "Photos"
|
173 |
msgstr "Foto"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Date"
|
177 |
msgstr "Datum"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Settings are saved"
|
181 |
msgstr "Nastavení uloženo"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
#, fuzzy
|
185 |
msgid "All plugin settings were restored."
|
186 |
msgstr "na stránce pluginu ("
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Gallery Settings"
|
190 |
msgstr "Nastavení galerie"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Custom code"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Go PRO"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Please enable JavaScript to use the option to renew images."
|
202 |
msgstr "Povolte JavaScript pro použití možnosti obnovení obrázků."
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -209,22 +189,27 @@ msgid ""
|
|
209 |
"please use the shortcode %s, where * stands for gallery ID"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
213 |
msgid "Number of images in the row"
|
214 |
msgstr "Počet snímků na řádku"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
#, fuzzy
|
218 |
msgid ""
|
219 |
"The number of images per row can be less depending on the width of the "
|
220 |
"parent block"
|
221 |
msgstr "Počet snímků na řádku"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Image size"
|
225 |
msgstr "Velikost obrázku"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid ""
|
229 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
230 |
"upload a new photo."
|
@@ -232,462 +217,459 @@ msgstr ""
|
|
232 |
"WordPress se vytvoří novou miniaturu se zadanými rozměry, když nahrajete "
|
233 |
"novou fotku."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
#, fuzzy
|
237 |
msgid "For the album cover"
|
238 |
msgstr "Velikost obrázku na obalu alba"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "width x height"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "in px"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
#, fuzzy
|
250 |
msgid "For thumbnails"
|
251 |
msgstr "Velikost obrázku na obalu alba"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "Update images for gallery"
|
255 |
msgstr "Aktualizace obrázků galerie"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Close"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "For images in the lightbox"
|
264 |
msgstr "Velikost obrazu v Lightboxu"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Display a full size image in the lightbox"
|
268 |
msgstr "Zobrazení obrázku v plné velikosti v lightboxu"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Crop position"
|
272 |
msgstr "Pozice ořezu"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "center"
|
276 |
msgstr "střed"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Horizontal"
|
280 |
msgstr "Horizontálně"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Vertical"
|
284 |
msgstr "Vertikálně"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
289 |
msgstr ""
|
290 |
"Pokud jste upgradovali na verzi Pro, všechna vaše nastavení a galerie se "
|
291 |
"uloží."
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "Unlock premium options by upgrading to Pro version"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
298 |
msgid "Start Your Trial"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "or"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Learn More"
|
307 |
msgstr "Dozvědět se více"
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Display image title"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
#, fuzzy
|
315 |
msgid ""
|
316 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
317 |
msgstr "Vypněte políčko, chcete-li zobrazit text pouze v Lightboxu"
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Images with border"
|
321 |
msgstr "Obrázek s okrajem"
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Border width in px, just numbers"
|
325 |
msgstr "Šířka okraje v px, jen čísla"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "Sort images"
|
329 |
msgstr "Řadit obrázky"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
#, fuzzy
|
333 |
msgid "by Attachment ID"
|
334 |
msgstr "ID přílohy"
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
#, fuzzy
|
338 |
msgid "by Image Name"
|
339 |
msgstr "Název obrázku"
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
#, fuzzy
|
343 |
msgid "by Date"
|
344 |
msgstr "Datum"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "by Sorting order in the Gallery"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Random"
|
352 |
msgstr "Náhodně"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
#, fuzzy
|
356 |
msgid "The images sort order"
|
357 |
msgstr "Obrázek s okrajem"
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
361 |
msgstr ""
|
362 |
"ASC (řadit vzestupně od nejnižší k nejvyšší hodnotě - 1, 2, 3, a, b, c)"
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid ""
|
366 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
367 |
msgstr ""
|
368 |
"DESC (řadit sestupně od nejvyšší po nejnižší hodnotu - 3, 2, 1, c, b, a)"
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
#, fuzzy
|
372 |
msgid "Sort galleries"
|
373 |
msgstr "Galerie"
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "by Gallery ID"
|
378 |
msgstr "Galerie"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
#, fuzzy
|
382 |
msgid "by Title"
|
383 |
msgstr "Titulek"
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "by Last modified date"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "by Comment count"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
#, fuzzy
|
395 |
msgid "by Sorting order (the input field for sorting order)"
|
396 |
msgstr ""
|
397 |
"Řazení objednávky (vstupní pole pro třídění pořadí v dialogovém okně "
|
398 |
"Insert / upload Media Gallery)"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
#, fuzzy
|
402 |
msgid "by Author"
|
403 |
msgstr "Autor"
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
msgid "The galleries sort order"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "Start slideshow"
|
411 |
msgstr "Spustit prezentaci"
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "Slideshow interval"
|
415 |
msgstr "Interval prezentace"
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "(ms)"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "Use single lightbox for multiple galleries on one page"
|
423 |
msgstr "Použijte jeden Lightbox pro více galerií na jedné stránce"
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "Display the Back link"
|
427 |
msgstr "Zobrazit odkaz Zpět"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "Display the Back link in the shortcode"
|
431 |
msgstr "Zobrazit odkaz Zpět na zkrácený kód"
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "The Back link text"
|
435 |
msgstr "Text odkazu Zpět"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
msgid "The Back link URL"
|
439 |
msgstr "URL odkazu Zpět "
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
msgid "Gallery page (Page with Gallery Template)"
|
443 |
msgstr "Stránka Galerie (stránka šablony)"
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "(Full URL to custom page)"
|
447 |
msgstr "(celá URL na vlastní stránku)"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "The Read More link text"
|
451 |
msgstr "Text odkazu Čtěte více"
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "Add gallery to the search"
|
455 |
msgstr "Přidat galerii do vyhledávání"
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "Using"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
msgid "powered by"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: gallery-plugin.php:
|
466 |
#, fuzzy
|
467 |
msgid "Activate"
|
468 |
msgstr "Активовані плагіни"
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
msgid "Download"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: gallery-plugin.php:
|
475 |
-
msgid "Rewrite templates after update"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: gallery-plugin.php:1929
|
479 |
-
#, php-format
|
480 |
-
msgid ""
|
481 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
482 |
-
"theme folder and You don't want to rewrite them"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: gallery-plugin.php:1934
|
486 |
msgid "Rename gallery post type"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
msgid ""
|
491 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
492 |
"it now"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: gallery-plugin.php:
|
496 |
msgid ""
|
497 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
498 |
"please check settings of your other plugins where 'gallery' post type is used"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: gallery-plugin.php:
|
502 |
#, fuzzy
|
503 |
msgid "Single gallery view"
|
504 |
msgstr "Jména pro galerii"
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "Grid"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
msgid "Masonry"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: gallery-plugin.php:
|
515 |
#, fuzzy
|
516 |
msgid "Under image"
|
517 |
msgstr "Aktualizace obrázků"
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
msgid "By mouse hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: gallery-plugin.php:
|
524 |
#, fuzzy
|
525 |
msgid "Use pagination for images"
|
526 |
msgstr "Aktualizuji obrázky..."
|
527 |
|
528 |
-
#: gallery-plugin.php:
|
529 |
msgid "per page"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: gallery-plugin.php:
|
533 |
msgid "Lightbox background"
|
534 |
msgstr "Pozadí Lightboxu"
|
535 |
|
536 |
-
#: gallery-plugin.php:
|
537 |
msgid "Background transparency (from 0 to 1)"
|
538 |
msgstr "Průhlednost pozadí (od 0 do 1)"
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
msgid ""
|
542 |
"Display all images in the lightbox instead of going into a single gallery"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
#, php-format
|
547 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: gallery-plugin.php:
|
551 |
msgid "The lightbox helper"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: gallery-plugin.php:
|
555 |
msgid "Do not use"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: gallery-plugin.php:
|
559 |
msgid "Button helper"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: gallery-plugin.php:
|
563 |
msgid "Thumbnail helper"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: gallery-plugin.php:
|
567 |
msgid "Display Like buttons in the lightbox"
|
568 |
msgstr "Zobrazit tlačítka Like v Lightboxu"
|
569 |
|
570 |
-
#: gallery-plugin.php:
|
571 |
msgid "FaceBook"
|
572 |
msgstr "FaceBook"
|
573 |
|
574 |
-
#: gallery-plugin.php:
|
575 |
msgid "Twitter"
|
576 |
msgstr "Twitter"
|
577 |
|
578 |
-
#: gallery-plugin.php:
|
579 |
msgid "Pinterest"
|
580 |
msgstr "Pinterest"
|
581 |
|
582 |
-
#: gallery-plugin.php:
|
583 |
msgid "Google +1"
|
584 |
msgstr "Google +1"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
#, fuzzy
|
588 |
msgid "Show counter"
|
589 |
msgstr "Interval prezentace"
|
590 |
|
591 |
-
#: gallery-plugin.php:
|
592 |
msgid "Align"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "left"
|
597 |
msgstr "vlevo"
|
598 |
|
599 |
-
#: gallery-plugin.php:
|
600 |
msgid "Title for lightbox button"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "Slug for gallery item"
|
605 |
msgstr "Jména pro galerii"
|
606 |
|
607 |
-
#: gallery-plugin.php:
|
608 |
msgid "for any structure of permalinks except the default structure"
|
609 |
msgstr "pro všechny struktury permalinks kromě výchozí struktury"
|
610 |
|
611 |
-
#: gallery-plugin.php:
|
612 |
msgid "Save Changes"
|
613 |
msgstr "Ulož změny"
|
614 |
|
615 |
-
#: gallery-plugin.php:
|
616 |
msgid ""
|
617 |
"If you install the demo-data, will be created galleries with images, demo-"
|
618 |
"post with available shortcodes and page with a list of all the galleries."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: gallery-plugin.php:
|
622 |
msgid "FAQ"
|
623 |
msgstr "FAQ "
|
624 |
|
625 |
-
#: gallery-plugin.php:
|
626 |
msgid "Support"
|
627 |
msgstr "Podpora"
|
628 |
|
629 |
-
#: gallery-plugin.php:
|
630 |
msgid "Updating images..."
|
631 |
msgstr "Aktualizuji obrázky..."
|
632 |
|
633 |
-
#: gallery-plugin.php:
|
634 |
#, fuzzy
|
635 |
msgid "No image found."
|
636 |
msgstr "Nenalezen žádný obrázek"
|
637 |
|
638 |
-
#: gallery-plugin.php:
|
639 |
#, fuzzy
|
640 |
msgid "All images are updated."
|
641 |
msgstr "Všechny obrázky jsou aktuální"
|
642 |
|
643 |
-
#: gallery-plugin.php:
|
644 |
msgid "Error."
|
645 |
msgstr "Chyba."
|
646 |
|
647 |
-
#: gallery-plugin.php:
|
648 |
msgid ""
|
649 |
"You are about to delete these items from this gallery.\n"
|
650 |
" 'Cancel' to stop, 'OK' to delete."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: gallery-plugin.php:
|
654 |
msgid ""
|
655 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
656 |
"switching?"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: gallery-plugin.php:
|
660 |
msgid "Insert Media"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: gallery-plugin.php:
|
664 |
msgid "Insert"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: gallery-plugin.php:
|
668 |
#, fuzzy
|
669 |
msgid "Learn more"
|
670 |
msgstr "Dozvědět se více"
|
671 |
|
672 |
-
#: gallery-plugin.php:
|
673 |
#, fuzzy
|
674 |
msgid "Install now"
|
675 |
msgstr "Установка %"
|
676 |
|
677 |
-
#: gallery-plugin.php:
|
678 |
msgid "Add multiple gallery categories"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: gallery-plugin.php:
|
682 |
msgid ""
|
683 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
msgid "Image size not defined"
|
688 |
msgstr "Velikost obrázku není definována"
|
689 |
|
690 |
-
#: gallery-plugin.php:
|
691 |
msgid ""
|
692 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
693 |
"manually reload image."
|
@@ -695,210 +677,210 @@ msgstr ""
|
|
695 |
"Můžeme aktualizovat pouze PNG, JPEG, GIF, WPMP nebo XBM soubory. Ostatní "
|
696 |
"musíte nahrát ručně."
|
697 |
|
698 |
-
#: gallery-plugin.php:
|
699 |
msgid "Image size changes not defined"
|
700 |
msgstr "Změna velikosti obrázku není definována"
|
701 |
|
702 |
-
#: gallery-plugin.php:
|
703 |
msgid "Invalid path"
|
704 |
msgstr "Špatná cesta"
|
705 |
|
706 |
-
#: gallery-plugin.php:
|
707 |
msgid "Add images requires JavaScript."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: gallery-plugin.php:
|
711 |
msgid "Add Media"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: gallery-plugin.php:
|
715 |
msgid "The grid view for the Gallery images requires JavaScript."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: gallery-plugin.php:
|
719 |
msgid "Switch to the list view"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: gallery-plugin.php:
|
723 |
msgid "List View"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: gallery-plugin.php:
|
727 |
msgid "Grid View"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: gallery-plugin.php:
|
731 |
msgid "Filter"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
msgid "Empty Trash"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: gallery-plugin.php:
|
739 |
#, fuzzy
|
740 |
msgid "No images found"
|
741 |
msgstr "Nenalezen žádný obrázek"
|
742 |
|
743 |
-
#: gallery-plugin.php:
|
744 |
msgid "Select bulk action"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: gallery-plugin.php:
|
748 |
msgid "Bulk Actions"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: gallery-plugin.php:
|
752 |
msgid "Apply"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: gallery-plugin.php:
|
756 |
#, fuzzy
|
757 |
msgid "Delete from Gallery"
|
758 |
msgstr "Nová galerie"
|
759 |
|
760 |
-
#: gallery-plugin.php:
|
761 |
#, fuzzy
|
762 |
msgid "Display link to the original file under each image in the lightbox"
|
763 |
msgstr "Zobrazení obrázku v plné velikosti v lightboxu"
|
764 |
|
765 |
-
#: gallery-plugin.php:
|
766 |
msgid "Bulk Select"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: gallery-plugin.php:
|
770 |
msgid "Cancel Selection"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: gallery-plugin.php:
|
774 |
msgid "Delete Selected"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid "File"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: gallery-plugin.php:
|
782 |
msgid "Dimensions"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid "Alt tag"
|
787 |
msgstr "Alt tag"
|
788 |
|
789 |
-
#: gallery-plugin.php:
|
790 |
msgid ""
|
791 |
"The alt attribute specifies an alternate text for an image, if the image "
|
792 |
"cannot be displayed."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: gallery-plugin.php:
|
796 |
msgid "Custom URL"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: gallery-plugin.php:
|
800 |
msgid ""
|
801 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
802 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: gallery-plugin.php:
|
806 |
msgid "Deselect"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: gallery-plugin.php:
|
810 |
msgid "File name"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: gallery-plugin.php:
|
814 |
msgid "File type"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: gallery-plugin.php:
|
818 |
#, fuzzy
|
819 |
msgid "Edit Attachment Info"
|
820 |
msgstr "ID přílohy"
|
821 |
|
822 |
-
#: gallery-plugin.php:
|
823 |
#, fuzzy
|
824 |
msgid "Edit Attachment"
|
825 |
msgstr "ID přílohy"
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
msgid "Go Pro"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: gallery-plugin.php:
|
832 |
msgid "Pro version"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: gallery-plugin.php:
|
836 |
msgid "This setting is available in Pro version"
|
837 |
msgstr "Toto nastavení je k dispozici ve verzi Pro"
|
838 |
|
839 |
-
#: gallery-plugin.php:
|
840 |
msgid "Edit more details"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: gallery-plugin.php:
|
844 |
#, php-format
|
845 |
msgid "Select %s"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: gallery-plugin.php:
|
849 |
#, php-format
|
850 |
msgid "Edit “%s”"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: gallery-plugin.php:
|
854 |
msgid "Edit"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: gallery-plugin.php:
|
858 |
msgid "Trash"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
msgid "Delete Permanently"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: gallery-plugin.php:
|
866 |
#, php-format
|
867 |
msgid "View “%s”"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: gallery-plugin.php:
|
871 |
msgid "View"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: gallery-plugin.php:
|
875 |
#, fuzzy
|
876 |
msgid "Attach"
|
877 |
msgstr "ID přílohy"
|
878 |
|
879 |
-
#: gallery-plugin.php:
|
880 |
msgid "Restore"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: gallery-plugin.php:
|
884 |
msgid "Warning"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: gallery-plugin.php:
|
888 |
msgid "You can add only images to the gallery"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: gallery-plugin.php:
|
892 |
#, fuzzy
|
893 |
msgid "no title"
|
894 |
msgstr "Titulek"
|
895 |
|
896 |
-
#: gallery-plugin.php:
|
897 |
#, fuzzy
|
898 |
msgid "Sorry, no gallery found."
|
899 |
msgstr "Ups, nic nenalezeno"
|
900 |
|
901 |
-
#: gallery-plugin.php:
|
902 |
#, fuzzy
|
903 |
msgid ""
|
904 |
"Display an album image with the description and the link to a single gallery "
|
@@ -907,93 +889,104 @@ msgstr ""
|
|
907 |
"Chcete-li zobrazit krátký popis obsahující screenshot a odkaz na jednu "
|
908 |
"stránku Galerie"
|
909 |
|
910 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
911 |
#, fuzzy
|
912 |
msgid "Install Demo Data"
|
913 |
msgstr "Установка %"
|
914 |
|
915 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
916 |
msgid "Remove Demo Data"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
920 |
msgid "Delete demo-data and restore old plugin settings."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
924 |
msgid "Yes, install demo data"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
928 |
msgid "Are you sure you want to install demo data?"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
932 |
msgid "Yes, remove demo data"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
936 |
msgid "Are you sure you want to remove demo data?"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
940 |
#, fuzzy
|
941 |
msgid "No, go back to the settings page"
|
942 |
msgstr "na stránce pluginu ("
|
943 |
|
944 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
945 |
msgid "Can not get demo data."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
949 |
msgid "Demo options already installed."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
953 |
msgid "Demo data successfully installed."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
957 |
msgid "View post with shortcodes"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
961 |
msgid "View page with examples"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
965 |
msgid "Installation of demo data with some errors occurred."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
969 |
msgid "Posts data is missing."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
973 |
msgid "Demo data have already been removed."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
977 |
msgid "Demo data successfully removed."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
981 |
msgid "Removing demo data with some errors occurred."
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
985 |
msgid "Close notice"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
989 |
#, fuzzy
|
990 |
msgid "Install demo data"
|
991 |
msgstr "Установка %"
|
992 |
|
993 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
994 |
msgid "for an acquaintance with the possibilities of the"
|
995 |
msgstr ""
|
996 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
997 |
#~ msgid "Select a border color"
|
998 |
#~ msgstr "Vyber barvu okraje"
|
999 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:19+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lagya <lagya@me.com>\n"
|
9 |
"Language: cs\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
21 |
+
#: gallery-plugin.php:2010
|
22 |
msgid "Settings"
|
23 |
msgstr "Nastavení"
|
24 |
|
25 |
+
#: gallery-plugin.php:139
|
26 |
msgid "See images »"
|
27 |
msgstr "Viz obrázky »"
|
28 |
|
29 |
+
#: gallery-plugin.php:142
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Galleries"
|
35 |
msgstr "Galerie"
|
36 |
|
37 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
38 |
msgid "Gallery"
|
39 |
msgstr "Galerie"
|
40 |
|
41 |
+
#: gallery-plugin.php:322
|
42 |
msgid "Add New Gallery"
|
43 |
msgstr "Přidej novou galerii"
|
44 |
|
45 |
+
#: gallery-plugin.php:323
|
46 |
msgid "Edit Gallery"
|
47 |
msgstr "Uprav galerii"
|
48 |
|
49 |
+
#: gallery-plugin.php:324
|
50 |
msgid "New Gallery"
|
51 |
msgstr "Nová galerie"
|
52 |
|
53 |
+
#: gallery-plugin.php:325
|
54 |
msgid "View Gallery"
|
55 |
msgstr "Ukaž galerii"
|
56 |
|
57 |
+
#: gallery-plugin.php:326
|
58 |
#, fuzzy
|
59 |
msgid "Search Galleries"
|
60 |
msgstr "Galerie"
|
61 |
|
62 |
+
#: gallery-plugin.php:327
|
63 |
msgid "No Gallery found"
|
64 |
msgstr "Žádná galerie nenalezena"
|
65 |
|
66 |
+
#: gallery-plugin.php:388
|
67 |
msgid "Gallery Shortcode"
|
68 |
msgstr "Zkrácený kód galerie"
|
69 |
|
70 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
71 |
#, fuzzy
|
72 |
msgid "Gallery Categories"
|
73 |
msgstr "Velikost obrázku v galerii"
|
74 |
|
75 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
76 |
#, fuzzy, php-format
|
77 |
msgid ""
|
78 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
80 |
"Pokud byste chtěli přidat jednu Galerie na vaše stránky nebo příspěvek, "
|
81 |
"stačí zkopírovat a vložit tento zkrácený kód do příspěvku nebo stránky:"
|
82 |
|
83 |
+
#: gallery-plugin.php:405
|
84 |
#, php-format
|
85 |
msgid ""
|
86 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
88 |
"please use the shortcode below"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: gallery-plugin.php:411
|
92 |
msgid ""
|
93 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: gallery-plugin.php:414
|
97 |
#, fuzzy
|
98 |
msgid ""
|
99 |
"Use this shortcode to display an album image with the description and the "
|
102 |
"Chcete-li zobrazit krátký popis obsahující screenshot a odkaz na jednu "
|
103 |
"stránku Galerie"
|
104 |
|
105 |
+
#: gallery-plugin.php:416
|
106 |
msgid "Short display"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: gallery-plugin.php:433
|
110 |
msgid "Most Used"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
114 |
msgid "Default"
|
115 |
msgstr "Výchozí"
|
116 |
|
117 |
+
#: gallery-plugin.php:443
|
118 |
#, fuzzy
|
119 |
msgid "Add New Gallery Category"
|
120 |
msgstr "Přidej novou galerii"
|
121 |
|
122 |
+
#: gallery-plugin.php:448
|
123 |
#, fuzzy
|
124 |
msgid "Install plugin"
|
125 |
msgstr "Встановлених модулів"
|
126 |
|
127 |
+
#: gallery-plugin.php:610
|
128 |
#, fuzzy
|
129 |
msgid "Gallery Category"
|
130 |
msgstr "Velikost obrázku v galerii"
|
131 |
|
132 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Sorry, nothing found."
|
134 |
msgstr "Ups, nic nenalezeno"
|
135 |
|
136 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
137 |
+
#: gallery-plugin.php:3128
|
138 |
msgid "Title"
|
139 |
msgstr "Titulek"
|
140 |
|
141 |
+
#: gallery-plugin.php:1356
|
142 |
msgid "Author"
|
143 |
msgstr "Autor"
|
144 |
|
145 |
+
#: gallery-plugin.php:1357
|
146 |
#, fuzzy
|
147 |
msgid "Shortcode"
|
148 |
msgstr "Zkrácený kód galerie"
|
149 |
|
150 |
+
#: gallery-plugin.php:1358
|
151 |
#, fuzzy
|
152 |
msgid "Photos"
|
153 |
msgstr "Foto"
|
154 |
|
155 |
+
#: gallery-plugin.php:1359
|
156 |
msgid "Date"
|
157 |
msgstr "Datum"
|
158 |
|
159 |
+
#: gallery-plugin.php:1547
|
160 |
msgid "Settings are saved"
|
161 |
msgstr "Nastavení uloženo"
|
162 |
|
163 |
+
#: gallery-plugin.php:1564
|
164 |
#, fuzzy
|
165 |
msgid "All plugin settings were restored."
|
166 |
msgstr "na stránce pluginu ("
|
167 |
|
168 |
+
#: gallery-plugin.php:1576
|
169 |
msgid "Gallery Settings"
|
170 |
msgstr "Nastavení galerie"
|
171 |
|
172 |
+
#: gallery-plugin.php:1579
|
173 |
msgid "Custom code"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: gallery-plugin.php:1580
|
177 |
msgid "Go PRO"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: gallery-plugin.php:1590
|
181 |
msgid "Please enable JavaScript to use the option to renew images."
|
182 |
msgstr "Povolte JavaScript pro použití možnosti obnovení obrázků."
|
183 |
|
184 |
+
#: gallery-plugin.php:1602
|
185 |
#, php-format
|
186 |
msgid ""
|
187 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
189 |
"please use the shortcode %s, where * stands for gallery ID"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: gallery-plugin.php:1612
|
193 |
+
#, fuzzy
|
194 |
+
msgid "Galleries page"
|
195 |
+
msgstr "Galerie"
|
196 |
+
|
197 |
+
#: gallery-plugin.php:1622
|
198 |
msgid "Number of images in the row"
|
199 |
msgstr "Počet snímků na řádku"
|
200 |
|
201 |
+
#: gallery-plugin.php:1624
|
202 |
#, fuzzy
|
203 |
msgid ""
|
204 |
"The number of images per row can be less depending on the width of the "
|
205 |
"parent block"
|
206 |
msgstr "Počet snímků na řádku"
|
207 |
|
208 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
209 |
msgid "Image size"
|
210 |
msgstr "Velikost obrázku"
|
211 |
|
212 |
+
#: gallery-plugin.php:1631
|
213 |
msgid ""
|
214 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
215 |
"upload a new photo."
|
217 |
"WordPress se vytvoří novou miniaturu se zadanými rozměry, když nahrajete "
|
218 |
"novou fotku."
|
219 |
|
220 |
+
#: gallery-plugin.php:1633
|
221 |
#, fuzzy
|
222 |
msgid "For the album cover"
|
223 |
msgstr "Velikost obrázku na obalu alba"
|
224 |
|
225 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
226 |
msgid "width x height"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
230 |
msgid "in px"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: gallery-plugin.php:1637
|
234 |
#, fuzzy
|
235 |
msgid "For thumbnails"
|
236 |
msgstr "Velikost obrázku na obalu alba"
|
237 |
|
238 |
+
#: gallery-plugin.php:1641
|
239 |
msgid "Update images for gallery"
|
240 |
msgstr "Aktualizace obrázků galerie"
|
241 |
|
242 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
243 |
msgid "Close"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1657
|
247 |
#, fuzzy
|
248 |
msgid "For images in the lightbox"
|
249 |
msgstr "Velikost obrazu v Lightboxu"
|
250 |
|
251 |
+
#: gallery-plugin.php:1661
|
252 |
msgid "Display a full size image in the lightbox"
|
253 |
msgstr "Zobrazení obrázku v plné velikosti v lightboxu"
|
254 |
|
255 |
+
#: gallery-plugin.php:1666
|
256 |
msgid "Crop position"
|
257 |
msgstr "Pozice ořezu"
|
258 |
|
259 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
260 |
msgid "center"
|
261 |
msgstr "střed"
|
262 |
|
263 |
+
#: gallery-plugin.php:1672
|
264 |
msgid "Horizontal"
|
265 |
msgstr "Horizontálně"
|
266 |
|
267 |
+
#: gallery-plugin.php:1678
|
268 |
msgid "Vertical"
|
269 |
msgstr "Vertikálně"
|
270 |
|
271 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
272 |
msgid ""
|
273 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
274 |
msgstr ""
|
275 |
"Pokud jste upgradovali na verzi Pro, všechna vaše nastavení a galerie se "
|
276 |
"uloží."
|
277 |
|
278 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
279 |
msgid "Unlock premium options by upgrading to Pro version"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
283 |
msgid "Start Your Trial"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
287 |
msgid "or"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
291 |
msgid "Learn More"
|
292 |
msgstr "Dozvědět se více"
|
293 |
|
294 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
295 |
msgid "Display image title"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1708
|
299 |
#, fuzzy
|
300 |
msgid ""
|
301 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
302 |
msgstr "Vypněte políčko, chcete-li zobrazit text pouze v Lightboxu"
|
303 |
|
304 |
+
#: gallery-plugin.php:1712
|
305 |
msgid "Images with border"
|
306 |
msgstr "Obrázek s okrajem"
|
307 |
|
308 |
+
#: gallery-plugin.php:1716
|
309 |
msgid "Border width in px, just numbers"
|
310 |
msgstr "Šířka okraje v px, jen čísla"
|
311 |
|
312 |
+
#: gallery-plugin.php:1722
|
313 |
msgid "Sort images"
|
314 |
msgstr "Řadit obrázky"
|
315 |
|
316 |
+
#: gallery-plugin.php:1725
|
317 |
#, fuzzy
|
318 |
msgid "by Attachment ID"
|
319 |
msgstr "ID přílohy"
|
320 |
|
321 |
+
#: gallery-plugin.php:1726
|
322 |
#, fuzzy
|
323 |
msgid "by Image Name"
|
324 |
msgstr "Název obrázku"
|
325 |
|
326 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
327 |
#, fuzzy
|
328 |
msgid "by Date"
|
329 |
msgstr "Datum"
|
330 |
|
331 |
+
#: gallery-plugin.php:1728
|
332 |
msgid "by Sorting order in the Gallery"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
336 |
msgid "Random"
|
337 |
msgstr "Náhodně"
|
338 |
|
339 |
+
#: gallery-plugin.php:1734
|
340 |
#, fuzzy
|
341 |
msgid "The images sort order"
|
342 |
msgstr "Obrázek s okrajem"
|
343 |
|
344 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
345 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
346 |
msgstr ""
|
347 |
"ASC (řadit vzestupně od nejnižší k nejvyšší hodnotě - 1, 2, 3, a, b, c)"
|
348 |
|
349 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
350 |
msgid ""
|
351 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
352 |
msgstr ""
|
353 |
"DESC (řadit sestupně od nejvyšší po nejnižší hodnotu - 3, 2, 1, c, b, a)"
|
354 |
|
355 |
+
#: gallery-plugin.php:1743
|
356 |
#, fuzzy
|
357 |
msgid "Sort galleries"
|
358 |
msgstr "Galerie"
|
359 |
|
360 |
+
#: gallery-plugin.php:1746
|
361 |
#, fuzzy
|
362 |
msgid "by Gallery ID"
|
363 |
msgstr "Galerie"
|
364 |
|
365 |
+
#: gallery-plugin.php:1747
|
366 |
#, fuzzy
|
367 |
msgid "by Title"
|
368 |
msgstr "Titulek"
|
369 |
|
370 |
+
#: gallery-plugin.php:1749
|
371 |
msgid "by Last modified date"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: gallery-plugin.php:1750
|
375 |
msgid "by Comment count"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: gallery-plugin.php:1751
|
379 |
#, fuzzy
|
380 |
msgid "by Sorting order (the input field for sorting order)"
|
381 |
msgstr ""
|
382 |
"Řazení objednávky (vstupní pole pro třídění pořadí v dialogovém okně "
|
383 |
"Insert / upload Media Gallery)"
|
384 |
|
385 |
+
#: gallery-plugin.php:1752
|
386 |
#, fuzzy
|
387 |
msgid "by Author"
|
388 |
msgstr "Autor"
|
389 |
|
390 |
+
#: gallery-plugin.php:1758
|
391 |
msgid "The galleries sort order"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: gallery-plugin.php:1767
|
395 |
msgid "Start slideshow"
|
396 |
msgstr "Spustit prezentaci"
|
397 |
|
398 |
+
#: gallery-plugin.php:1770
|
399 |
msgid "Slideshow interval"
|
400 |
msgstr "Interval prezentace"
|
401 |
|
402 |
+
#: gallery-plugin.php:1770
|
403 |
msgid "(ms)"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: gallery-plugin.php:1774
|
407 |
msgid "Use single lightbox for multiple galleries on one page"
|
408 |
msgstr "Použijte jeden Lightbox pro více galerií na jedné stránce"
|
409 |
|
410 |
+
#: gallery-plugin.php:1780
|
411 |
msgid "Display the Back link"
|
412 |
msgstr "Zobrazit odkaz Zpět"
|
413 |
|
414 |
+
#: gallery-plugin.php:1786
|
415 |
msgid "Display the Back link in the shortcode"
|
416 |
msgstr "Zobrazit odkaz Zpět na zkrácený kód"
|
417 |
|
418 |
+
#: gallery-plugin.php:1792
|
419 |
msgid "The Back link text"
|
420 |
msgstr "Text odkazu Zpět"
|
421 |
|
422 |
+
#: gallery-plugin.php:1798
|
423 |
msgid "The Back link URL"
|
424 |
msgstr "URL odkazu Zpět "
|
425 |
|
426 |
+
#: gallery-plugin.php:1801
|
427 |
msgid "Gallery page (Page with Gallery Template)"
|
428 |
msgstr "Stránka Galerie (stránka šablony)"
|
429 |
|
430 |
+
#: gallery-plugin.php:1803
|
431 |
msgid "(Full URL to custom page)"
|
432 |
msgstr "(celá URL na vlastní stránku)"
|
433 |
|
434 |
+
#: gallery-plugin.php:1808
|
435 |
msgid "The Read More link text"
|
436 |
msgstr "Text odkazu Čtěte více"
|
437 |
|
438 |
+
#: gallery-plugin.php:1814
|
439 |
msgid "Add gallery to the search"
|
440 |
msgstr "Přidat galerii do vyhledávání"
|
441 |
|
442 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
443 |
msgid "Using"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
447 |
msgid "powered by"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
451 |
#, fuzzy
|
452 |
msgid "Activate"
|
453 |
msgstr "Активовані плагіни"
|
454 |
|
455 |
+
#: gallery-plugin.php:1826
|
456 |
msgid "Download"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
msgid "Rename gallery post type"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: gallery-plugin.php:1837
|
464 |
msgid ""
|
465 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
466 |
"it now"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: gallery-plugin.php:1838
|
470 |
msgid ""
|
471 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
472 |
"please check settings of your other plugins where 'gallery' post type is used"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: gallery-plugin.php:1851
|
476 |
#, fuzzy
|
477 |
msgid "Single gallery view"
|
478 |
msgstr "Jména pro galerii"
|
479 |
|
480 |
+
#: gallery-plugin.php:1854
|
481 |
msgid "Grid"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: gallery-plugin.php:1855
|
485 |
msgid "Masonry"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: gallery-plugin.php:1863
|
489 |
#, fuzzy
|
490 |
msgid "Under image"
|
491 |
msgstr "Aktualizace obrázků"
|
492 |
|
493 |
+
#: gallery-plugin.php:1864
|
494 |
msgid "By mouse hover"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:1869
|
498 |
#, fuzzy
|
499 |
msgid "Use pagination for images"
|
500 |
msgstr "Aktualizuji obrázky..."
|
501 |
|
502 |
+
#: gallery-plugin.php:1872
|
503 |
msgid "per page"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:1876
|
507 |
msgid "Lightbox background"
|
508 |
msgstr "Pozadí Lightboxu"
|
509 |
|
510 |
+
#: gallery-plugin.php:1879
|
511 |
msgid "Background transparency (from 0 to 1)"
|
512 |
msgstr "Průhlednost pozadí (od 0 do 1)"
|
513 |
|
514 |
+
#: gallery-plugin.php:1885
|
515 |
msgid ""
|
516 |
"Display all images in the lightbox instead of going into a single gallery"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1888
|
520 |
#, php-format
|
521 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:1892
|
525 |
msgid "The lightbox helper"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: gallery-plugin.php:1894
|
529 |
msgid "Do not use"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1895
|
533 |
msgid "Button helper"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1896
|
537 |
msgid "Thumbnail helper"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1900
|
541 |
msgid "Display Like buttons in the lightbox"
|
542 |
msgstr "Zobrazit tlačítka Like v Lightboxu"
|
543 |
|
544 |
+
#: gallery-plugin.php:1904
|
545 |
msgid "FaceBook"
|
546 |
msgstr "FaceBook"
|
547 |
|
548 |
+
#: gallery-plugin.php:1905
|
549 |
msgid "Twitter"
|
550 |
msgstr "Twitter"
|
551 |
|
552 |
+
#: gallery-plugin.php:1906
|
553 |
msgid "Pinterest"
|
554 |
msgstr "Pinterest"
|
555 |
|
556 |
+
#: gallery-plugin.php:1907
|
557 |
msgid "Google +1"
|
558 |
msgstr "Google +1"
|
559 |
|
560 |
+
#: gallery-plugin.php:1910
|
561 |
#, fuzzy
|
562 |
msgid "Show counter"
|
563 |
msgstr "Interval prezentace"
|
564 |
|
565 |
+
#: gallery-plugin.php:1912
|
566 |
msgid "Align"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: gallery-plugin.php:1914
|
570 |
msgid "left"
|
571 |
msgstr "vlevo"
|
572 |
|
573 |
+
#: gallery-plugin.php:1921
|
574 |
msgid "Title for lightbox button"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: gallery-plugin.php:1927
|
578 |
msgid "Slug for gallery item"
|
579 |
msgstr "Jména pro galerii"
|
580 |
|
581 |
+
#: gallery-plugin.php:1929
|
582 |
msgid "for any structure of permalinks except the default structure"
|
583 |
msgstr "pro všechny struktury permalinks kromě výchozí struktury"
|
584 |
|
585 |
+
#: gallery-plugin.php:1955
|
586 |
msgid "Save Changes"
|
587 |
msgstr "Ulož změny"
|
588 |
|
589 |
+
#: gallery-plugin.php:1960
|
590 |
msgid ""
|
591 |
"If you install the demo-data, will be created galleries with images, demo-"
|
592 |
"post with available shortcodes and page with a list of all the galleries."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1994
|
596 |
msgid "FAQ"
|
597 |
msgstr "FAQ "
|
598 |
|
599 |
+
#: gallery-plugin.php:1995
|
600 |
msgid "Support"
|
601 |
msgstr "Podpora"
|
602 |
|
603 |
+
#: gallery-plugin.php:2032
|
604 |
msgid "Updating images..."
|
605 |
msgstr "Aktualizuji obrázky..."
|
606 |
|
607 |
+
#: gallery-plugin.php:2033
|
608 |
#, fuzzy
|
609 |
msgid "No image found."
|
610 |
msgstr "Nenalezen žádný obrázek"
|
611 |
|
612 |
+
#: gallery-plugin.php:2034
|
613 |
#, fuzzy
|
614 |
msgid "All images are updated."
|
615 |
msgstr "Všechny obrázky jsou aktuální"
|
616 |
|
617 |
+
#: gallery-plugin.php:2035
|
618 |
msgid "Error."
|
619 |
msgstr "Chyba."
|
620 |
|
621 |
+
#: gallery-plugin.php:2049
|
622 |
msgid ""
|
623 |
"You are about to delete these items from this gallery.\n"
|
624 |
" 'Cancel' to stop, 'OK' to delete."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:2050
|
628 |
msgid ""
|
629 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
630 |
"switching?"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: gallery-plugin.php:2051
|
634 |
msgid "Insert Media"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: gallery-plugin.php:2052
|
638 |
msgid "Insert"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:2064
|
642 |
#, fuzzy
|
643 |
msgid "Learn more"
|
644 |
msgstr "Dozvědět se více"
|
645 |
|
646 |
+
#: gallery-plugin.php:2076
|
647 |
#, fuzzy
|
648 |
msgid "Install now"
|
649 |
msgstr "Установка %"
|
650 |
|
651 |
+
#: gallery-plugin.php:2085
|
652 |
msgid "Add multiple gallery categories"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: gallery-plugin.php:2085
|
656 |
msgid ""
|
657 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: gallery-plugin.php:2405
|
661 |
+
msgid "Download high resolution image"
|
662 |
+
msgstr "Stáhnout obrázek ve vysokém rozlišení"
|
663 |
+
|
664 |
+
#: gallery-plugin.php:2417
|
665 |
+
msgid "Image"
|
666 |
+
msgstr "Obrázek"
|
667 |
+
|
668 |
+
#: gallery-plugin.php:2558
|
669 |
msgid "Image size not defined"
|
670 |
msgstr "Velikost obrázku není definována"
|
671 |
|
672 |
+
#: gallery-plugin.php:2573
|
673 |
msgid ""
|
674 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
675 |
"manually reload image."
|
677 |
"Můžeme aktualizovat pouze PNG, JPEG, GIF, WPMP nebo XBM soubory. Ostatní "
|
678 |
"musíte nahrát ručně."
|
679 |
|
680 |
+
#: gallery-plugin.php:2584
|
681 |
msgid "Image size changes not defined"
|
682 |
msgstr "Změna velikosti obrázku není definována"
|
683 |
|
684 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
685 |
msgid "Invalid path"
|
686 |
msgstr "Špatná cesta"
|
687 |
|
688 |
+
#: gallery-plugin.php:2694
|
689 |
msgid "Add images requires JavaScript."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: gallery-plugin.php:2697
|
693 |
msgid "Add Media"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2707
|
697 |
msgid "The grid view for the Gallery images requires JavaScript."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2707
|
701 |
msgid "Switch to the list view"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: gallery-plugin.php:2734
|
705 |
msgid "List View"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: gallery-plugin.php:2735
|
709 |
msgid "Grid View"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2790
|
713 |
msgid "Filter"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: gallery-plugin.php:2794
|
717 |
msgid "Empty Trash"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: gallery-plugin.php:2815
|
721 |
#, fuzzy
|
722 |
msgid "No images found"
|
723 |
msgstr "Nenalezen žádný obrázek"
|
724 |
|
725 |
+
#: gallery-plugin.php:2867
|
726 |
msgid "Select bulk action"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: gallery-plugin.php:2869
|
730 |
msgid "Bulk Actions"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: gallery-plugin.php:2879
|
734 |
msgid "Apply"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
738 |
#, fuzzy
|
739 |
msgid "Delete from Gallery"
|
740 |
msgstr "Nová galerie"
|
741 |
|
742 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
743 |
#, fuzzy
|
744 |
msgid "Display link to the original file under each image in the lightbox"
|
745 |
msgstr "Zobrazení obrázku v plné velikosti v lightboxu"
|
746 |
|
747 |
+
#: gallery-plugin.php:2908
|
748 |
msgid "Bulk Select"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: gallery-plugin.php:2910
|
752 |
msgid "Cancel Selection"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: gallery-plugin.php:2911
|
756 |
msgid "Delete Selected"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: gallery-plugin.php:2924
|
760 |
msgid "File"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
764 |
msgid "Dimensions"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
768 |
msgid "Alt tag"
|
769 |
msgstr "Alt tag"
|
770 |
|
771 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
772 |
msgid ""
|
773 |
"The alt attribute specifies an alternate text for an image, if the image "
|
774 |
"cannot be displayed."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
778 |
msgid "Custom URL"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
782 |
msgid ""
|
783 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
784 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:3006
|
788 |
msgid "Deselect"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: gallery-plugin.php:3012
|
792 |
msgid "File name"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: gallery-plugin.php:3013
|
796 |
msgid "File type"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
800 |
#, fuzzy
|
801 |
msgid "Edit Attachment Info"
|
802 |
msgstr "ID přílohy"
|
803 |
|
804 |
+
#: gallery-plugin.php:3017
|
805 |
#, fuzzy
|
806 |
msgid "Edit Attachment"
|
807 |
msgstr "ID přílohy"
|
808 |
|
809 |
+
#: gallery-plugin.php:3027
|
810 |
msgid "Go Pro"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: gallery-plugin.php:3027
|
814 |
msgid "Pro version"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: gallery-plugin.php:3030
|
818 |
msgid "This setting is available in Pro version"
|
819 |
msgstr "Toto nastavení je k dispozici ve verzi Pro"
|
820 |
|
821 |
+
#: gallery-plugin.php:3063
|
822 |
msgid "Edit more details"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: gallery-plugin.php:3098
|
826 |
#, php-format
|
827 |
msgid "Select %s"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: gallery-plugin.php:3111
|
831 |
#, php-format
|
832 |
msgid "Edit “%s”"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
836 |
msgid "Edit"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
840 |
msgid "Trash"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
844 |
msgid "Delete Permanently"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
848 |
#, php-format
|
849 |
msgid "View “%s”"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
853 |
msgid "View"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: gallery-plugin.php:3166
|
857 |
#, fuzzy
|
858 |
msgid "Attach"
|
859 |
msgstr "ID přílohy"
|
860 |
|
861 |
+
#: gallery-plugin.php:3172
|
862 |
msgid "Restore"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: gallery-plugin.php:3303
|
866 |
msgid "Warning"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: gallery-plugin.php:3303
|
870 |
msgid "You can add only images to the gallery"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: gallery-plugin.php:3345
|
874 |
#, fuzzy
|
875 |
msgid "no title"
|
876 |
msgstr "Titulek"
|
877 |
|
878 |
+
#: gallery-plugin.php:3353
|
879 |
#, fuzzy
|
880 |
msgid "Sorry, no gallery found."
|
881 |
msgstr "Ups, nic nenalezeno"
|
882 |
|
883 |
+
#: gallery-plugin.php:3359
|
884 |
#, fuzzy
|
885 |
msgid ""
|
886 |
"Display an album image with the description and the link to a single gallery "
|
889 |
"Chcete-li zobrazit krátký popis obsahující screenshot a odkaz na jednu "
|
890 |
"stránku Galerie"
|
891 |
|
892 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
893 |
#, fuzzy
|
894 |
msgid "Install Demo Data"
|
895 |
msgstr "Установка %"
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
898 |
msgid "Remove Demo Data"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
902 |
msgid "Delete demo-data and restore old plugin settings."
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
906 |
msgid "Yes, install demo data"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
910 |
msgid "Are you sure you want to install demo data?"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
914 |
msgid "Yes, remove demo data"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
918 |
msgid "Are you sure you want to remove demo data?"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
922 |
#, fuzzy
|
923 |
msgid "No, go back to the settings page"
|
924 |
msgstr "na stránce pluginu ("
|
925 |
|
926 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
927 |
msgid "Can not get demo data."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
931 |
msgid "Demo options already installed."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
935 |
msgid "Demo data successfully installed."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
939 |
msgid "View post with shortcodes"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
943 |
msgid "View page with examples"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
947 |
msgid "Installation of demo data with some errors occurred."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
951 |
msgid "Posts data is missing."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
955 |
msgid "Demo data have already been removed."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
959 |
msgid "Demo data successfully removed."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
963 |
msgid "Removing demo data with some errors occurred."
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
967 |
msgid "Close notice"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
971 |
#, fuzzy
|
972 |
msgid "Install demo data"
|
973 |
msgstr "Установка %"
|
974 |
|
975 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
976 |
msgid "for an acquaintance with the possibilities of the"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#, fuzzy
|
980 |
+
#~ msgid ""
|
981 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
982 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
983 |
+
#~ "theme for the correct work of the Gallery plugin"
|
984 |
+
#~ msgstr ""
|
985 |
+
#~ "Následující soubory \"gallery-template.php\" a \"gallery-single-template."
|
986 |
+
#~ "php\"nebyly nalezeny v adresáři vašeho tématu WP. Zkopírujte prosím z "
|
987 |
+
#~ "adresáře `/wp-content/plugins/gallery-plugin/template/` do adresáře "
|
988 |
+
#~ "vašeho motivu pro správnou práci pluginu Gallery."
|
989 |
+
|
990 |
#~ msgid "Select a border color"
|
991 |
#~ msgstr "Vyber barvu okraje"
|
992 |
|
languages/gallery-plugin-de_DE.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -16,75 +16,62 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "Settings"
|
22 |
msgstr "Einstellungen"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "See images »"
|
26 |
msgstr "Fotos anzeigen »"
|
27 |
|
28 |
-
#: gallery-plugin.php:
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
-
#, fuzzy, php-format
|
34 |
-
msgid ""
|
35 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
36 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
37 |
-
"theme for the correct work of the Gallery plugin"
|
38 |
-
msgstr ""
|
39 |
-
"Fehler Gallery PluginDie Dateien \"gallery-template.php\" und \"gallery-"
|
40 |
-
"single-template.php\" wurden nicht in deinem Theme gefunden. Bitte kopiere "
|
41 |
-
"sie aus dem Verzeichnis `/wp-content/plugins/gallery-plugin/template/` "
|
42 |
-
"direkt in das Verzeichnis deines Themes, damit das Plugin richtig "
|
43 |
-
"funktionieren kann."
|
44 |
-
|
45 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galerien"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galerie"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Galerie hinzufügen"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Galerie bearbeiten"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Neue Galerie"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Galerie anzeigen"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
#, fuzzy
|
71 |
msgid "Search Galleries"
|
72 |
msgstr "Galerien"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Keine Galerien gefunden"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Gallery Shortcode"
|
80 |
msgstr "Galerie Einstellungen"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Categories"
|
85 |
msgstr "Bildgröße für Galerie"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
#, fuzzy, php-format
|
89 |
msgid ""
|
90 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -92,7 +79,7 @@ msgstr ""
|
|
92 |
"Zum Einfügen einer Galerie füge diesen Shortcode in eine Seite oder einen "
|
93 |
"Beitrag ein:"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -100,107 +87,99 @@ msgid ""
|
|
100 |
"please use the shortcode below"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid ""
|
105 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
#, fuzzy
|
110 |
msgid ""
|
111 |
"Use this shortcode to display an album image with the description and the "
|
112 |
"link to a single gallery page"
|
113 |
msgstr "Shortcode zum Anzeigen einer Kurzbeschreibung, Link und Bild"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Short display"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Most Used"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Default"
|
125 |
msgstr "Standard"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, fuzzy
|
129 |
msgid "Add New Gallery Category"
|
130 |
msgstr "Galerie hinzufügen"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
#, fuzzy
|
134 |
msgid "Install plugin"
|
135 |
msgstr "Installierte Plugins"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, fuzzy
|
139 |
msgid "Gallery Category"
|
140 |
msgstr "Bildgröße für Galerie"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
msgid "Download high resolution image"
|
144 |
-
msgstr "Lade Bild in Originalgröße"
|
145 |
-
|
146 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
147 |
-
msgid "Image"
|
148 |
-
msgstr "Bild"
|
149 |
-
|
150 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
151 |
msgid "Sorry, nothing found."
|
152 |
msgstr "Leider nichts gefunden."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
-
#: gallery-plugin.php:
|
156 |
msgid "Title"
|
157 |
msgstr "Titel"
|
158 |
|
159 |
-
#: gallery-plugin.php:
|
160 |
msgid "Author"
|
161 |
msgstr "Author"
|
162 |
|
163 |
-
#: gallery-plugin.php:
|
164 |
#, fuzzy
|
165 |
msgid "Shortcode"
|
166 |
msgstr "Galerie Einstellungen"
|
167 |
|
168 |
-
#: gallery-plugin.php:
|
169 |
#, fuzzy
|
170 |
msgid "Photos"
|
171 |
msgstr "Foto"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "Date"
|
175 |
msgstr "Datum"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Settings are saved"
|
179 |
msgstr "Einstellungen gespeichert."
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
#, fuzzy
|
183 |
msgid "All plugin settings were restored."
|
184 |
msgstr "auf der Plugin-Optionen-Seite ("
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Gallery Settings"
|
188 |
msgstr "Galerie Einstellungen"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Custom code"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Go PRO"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
#, fuzzy
|
200 |
msgid "Please enable JavaScript to use the option to renew images."
|
201 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -208,22 +187,27 @@ msgid ""
|
|
208 |
"please use the shortcode %s, where * stands for gallery ID"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
212 |
msgid "Number of images in the row"
|
213 |
msgstr "Anzahl Bilder in einer Reihe"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
#, fuzzy
|
217 |
msgid ""
|
218 |
"The number of images per row can be less depending on the width of the "
|
219 |
"parent block"
|
220 |
msgstr "Anzahl Bilder in einer Reihe"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "Image size"
|
224 |
msgstr "Name der Bilder"
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid ""
|
228 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
229 |
"upload a new photo."
|
@@ -231,760 +215,769 @@ msgstr ""
|
|
231 |
"Wordpress wird ein neues Thumbnail mit den Einstellungen erstellen, wenn du "
|
232 |
"ein neues Bild hochlädst."
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
#, fuzzy
|
236 |
msgid "For the album cover"
|
237 |
msgstr "Bildgröße für Beitragsbild"
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "width x height"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "in px"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
#, fuzzy
|
249 |
msgid "For thumbnails"
|
250 |
msgstr "Bildgröße für Beitragsbild"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "Update images for gallery"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Close"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
#, fuzzy
|
262 |
msgid "For images in the lightbox"
|
263 |
msgstr "Galeriegröße in der Lightbox"
|
264 |
|
265 |
-
#: gallery-plugin.php:
|
266 |
msgid "Display a full size image in the lightbox"
|
267 |
msgstr "Zeige das Bild in Originalgröße in derLightbox"
|
268 |
|
269 |
-
#: gallery-plugin.php:
|
270 |
msgid "Crop position"
|
271 |
msgstr "Crop Position"
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "center"
|
275 |
msgstr "zentriert"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "Horizontal"
|
279 |
msgstr "Horizontal"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Vertical"
|
283 |
msgstr "vertikal"
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
msgid ""
|
287 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
msgid "Unlock premium options by upgrading to Pro version"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Start Your Trial"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "or"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
#, fuzzy
|
304 |
msgid "Learn More"
|
305 |
msgstr "Mehr erfahren"
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
msgid "Display image title"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
#, fuzzy
|
313 |
msgid ""
|
314 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
315 |
msgstr "Text nur in Lightbox anzeigen"
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "Images with border"
|
319 |
msgstr "Bilder mit Rand"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Border width in px, just numbers"
|
323 |
msgstr "Breite Bildrand in Pixel"
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Sort images"
|
327 |
msgstr "Reihenfolge"
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
#, fuzzy
|
331 |
msgid "by Attachment ID"
|
332 |
msgstr "Anhang ID"
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
#, fuzzy
|
336 |
msgid "by Image Name"
|
337 |
msgstr "Bildname"
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
#, fuzzy
|
341 |
msgid "by Date"
|
342 |
msgstr "Datum"
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid "by Sorting order in the Gallery"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: gallery-plugin.php:
|
349 |
msgid "Random"
|
350 |
msgstr "Zufall"
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
#, fuzzy
|
354 |
msgid "The images sort order"
|
355 |
msgstr "Bilder mit Rand"
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
359 |
msgstr "ASC (aufsteigend)"
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid ""
|
363 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
364 |
msgstr "DESC (absteigend)"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
#, fuzzy
|
368 |
msgid "Sort galleries"
|
369 |
msgstr "Galerien"
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
#, fuzzy
|
373 |
msgid "by Gallery ID"
|
374 |
msgstr "Galerie"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "by Title"
|
379 |
msgstr "Titel"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "by Last modified date"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "by Comment count"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
#, fuzzy
|
391 |
msgid "by Sorting order (the input field for sorting order)"
|
392 |
msgstr ""
|
393 |
"Reihenfolge (the input field for sorting order in the Insert / Upload Media "
|
394 |
"Gallery dialog)"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
#, fuzzy
|
398 |
msgid "by Author"
|
399 |
msgstr "Author"
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
msgid "The galleries sort order"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
msgid "Start slideshow"
|
407 |
msgstr "Starte Slideshow"
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "Slideshow interval"
|
411 |
msgstr "Slideshow Geschwindigkeit"
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "(ms)"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Use single lightbox for multiple galleries on one page"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "Display the Back link"
|
423 |
msgstr "Aktiviere Zurück-Link"
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "Display the Back link in the shortcode"
|
427 |
msgstr "Aktiviere Zurück-Link im Shortcode"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "The Back link text"
|
431 |
msgstr "Zurück-Link Text"
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "The Back link URL"
|
435 |
msgstr "Zurück-Link URL"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
msgid "Gallery page (Page with Gallery Template)"
|
439 |
msgstr "Galerie-Seite (Seite mit Gallerie-Template)"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
msgid "(Full URL to custom page)"
|
443 |
msgstr "(URL zu eigener Seite)"
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "The Read More link text"
|
447 |
msgstr "Weiterlesen link Text"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "Add gallery to the search"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "Using"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "powered by"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
#, fuzzy
|
463 |
msgid "Activate"
|
464 |
msgstr "Aktivierte Plugins"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "Download"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
-
msgid "Rewrite templates after update"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: gallery-plugin.php:1929
|
475 |
-
#, php-format
|
476 |
-
msgid ""
|
477 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
478 |
-
"theme folder and You don't want to rewrite them"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: gallery-plugin.php:1934
|
482 |
msgid "Rename gallery post type"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
msgid ""
|
487 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
488 |
"it now"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: gallery-plugin.php:
|
492 |
msgid ""
|
493 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
494 |
"please check settings of your other plugins where 'gallery' post type is used"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
#, fuzzy
|
499 |
msgid "Single gallery view"
|
500 |
msgstr "Galerie Slug"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "Grid"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "Masonry"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
#, fuzzy
|
512 |
msgid "Under image"
|
513 |
msgstr "Reihenfolge Bilder"
|
514 |
|
515 |
-
#: gallery-plugin.php:
|
516 |
msgid "By mouse hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
msgid "Use pagination for images"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: gallery-plugin.php:
|
524 |
msgid "per page"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: gallery-plugin.php:
|
528 |
msgid "Lightbox background"
|
529 |
msgstr "Lightbox Hintergrund"
|
530 |
|
531 |
-
#: gallery-plugin.php:
|
532 |
msgid "Background transparency (from 0 to 1)"
|
533 |
msgstr "Hintergrund Transparenz (0 – 1)"
|
534 |
|
535 |
-
#: gallery-plugin.php:
|
536 |
msgid ""
|
537 |
"Display all images in the lightbox instead of going into a single gallery"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
#, php-format
|
542 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "The lightbox helper"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: gallery-plugin.php:
|
550 |
msgid "Do not use"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: gallery-plugin.php:
|
554 |
msgid "Button helper"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: gallery-plugin.php:
|
558 |
msgid "Thumbnail helper"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: gallery-plugin.php:
|
562 |
msgid "Display Like buttons in the lightbox"
|
563 |
msgstr "Aktivier Like-Button in der Lightbox"
|
564 |
|
565 |
-
#: gallery-plugin.php:
|
566 |
msgid "FaceBook"
|
567 |
msgstr "Facebook"
|
568 |
|
569 |
-
#: gallery-plugin.php:
|
570 |
msgid "Twitter"
|
571 |
msgstr "Twitter"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
msgid "Pinterest"
|
575 |
msgstr "Pinterest"
|
576 |
|
577 |
-
#: gallery-plugin.php:
|
578 |
msgid "Google +1"
|
579 |
msgstr "Goolge+"
|
580 |
|
581 |
-
#: gallery-plugin.php:
|
582 |
#, fuzzy
|
583 |
msgid "Show counter"
|
584 |
msgstr "Slideshow Geschwindigkeit"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
msgid "Align"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: gallery-plugin.php:
|
591 |
msgid "left"
|
592 |
msgstr "links"
|
593 |
|
594 |
-
#: gallery-plugin.php:
|
595 |
msgid "Title for lightbox button"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: gallery-plugin.php:
|
599 |
msgid "Slug for gallery item"
|
600 |
msgstr "Galerie Slug"
|
601 |
|
602 |
-
#: gallery-plugin.php:
|
603 |
msgid "for any structure of permalinks except the default structure"
|
604 |
msgstr "Permalinkstruktur (Default ausgenommen)"
|
605 |
|
606 |
-
#: gallery-plugin.php:
|
607 |
msgid "Save Changes"
|
608 |
msgstr "Einstellungen speichern"
|
609 |
|
610 |
-
#: gallery-plugin.php:
|
611 |
msgid ""
|
612 |
"If you install the demo-data, will be created galleries with images, demo-"
|
613 |
"post with available shortcodes and page with a list of all the galleries."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: gallery-plugin.php:
|
617 |
msgid "FAQ"
|
618 |
msgstr "FAQ"
|
619 |
|
620 |
-
#: gallery-plugin.php:
|
621 |
msgid "Support"
|
622 |
msgstr "Support"
|
623 |
|
624 |
-
#: gallery-plugin.php:
|
625 |
msgid "Updating images..."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: gallery-plugin.php:
|
629 |
#, fuzzy
|
630 |
msgid "No image found."
|
631 |
msgstr "Keine Galerien gefunden"
|
632 |
|
633 |
-
#: gallery-plugin.php:
|
634 |
msgid "All images are updated."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: gallery-plugin.php:
|
638 |
msgid "Error."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: gallery-plugin.php:
|
642 |
msgid ""
|
643 |
"You are about to delete these items from this gallery.\n"
|
644 |
" 'Cancel' to stop, 'OK' to delete."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: gallery-plugin.php:
|
648 |
msgid ""
|
649 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
650 |
"switching?"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: gallery-plugin.php:
|
654 |
msgid "Insert Media"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: gallery-plugin.php:
|
658 |
msgid "Insert"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: gallery-plugin.php:
|
662 |
#, fuzzy
|
663 |
msgid "Learn more"
|
664 |
msgstr "Mehr erfahren"
|
665 |
|
666 |
-
#: gallery-plugin.php:
|
667 |
#, fuzzy
|
668 |
msgid "Install now"
|
669 |
msgstr "Installiere %s"
|
670 |
|
671 |
-
#: gallery-plugin.php:
|
672 |
msgid "Add multiple gallery categories"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: gallery-plugin.php:
|
676 |
msgid ""
|
677 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
681 |
#, fuzzy
|
682 |
msgid "Image size not defined"
|
683 |
msgstr "Name der Bilder"
|
684 |
|
685 |
-
#: gallery-plugin.php:
|
686 |
msgid ""
|
687 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
688 |
"manually reload image."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: gallery-plugin.php:
|
692 |
msgid "Image size changes not defined"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: gallery-plugin.php:
|
696 |
msgid "Invalid path"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: gallery-plugin.php:
|
700 |
msgid "Add images requires JavaScript."
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: gallery-plugin.php:
|
704 |
msgid "Add Media"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: gallery-plugin.php:
|
708 |
msgid "The grid view for the Gallery images requires JavaScript."
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: gallery-plugin.php:
|
712 |
msgid "Switch to the list view"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: gallery-plugin.php:
|
716 |
msgid "List View"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: gallery-plugin.php:
|
720 |
msgid "Grid View"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: gallery-plugin.php:
|
724 |
msgid "Filter"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: gallery-plugin.php:
|
728 |
msgid "Empty Trash"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: gallery-plugin.php:
|
732 |
#, fuzzy
|
733 |
msgid "No images found"
|
734 |
msgstr "Keine Galerien gefunden"
|
735 |
|
736 |
-
#: gallery-plugin.php:
|
737 |
msgid "Select bulk action"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: gallery-plugin.php:
|
741 |
msgid "Bulk Actions"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: gallery-plugin.php:
|
745 |
msgid "Apply"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: gallery-plugin.php:
|
749 |
#, fuzzy
|
750 |
msgid "Delete from Gallery"
|
751 |
msgstr "Neue Galerie"
|
752 |
|
753 |
-
#: gallery-plugin.php:
|
754 |
#, fuzzy
|
755 |
msgid "Display link to the original file under each image in the lightbox"
|
756 |
msgstr "Zeige das Bild in Originalgröße in derLightbox"
|
757 |
|
758 |
-
#: gallery-plugin.php:
|
759 |
msgid "Bulk Select"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: gallery-plugin.php:
|
763 |
msgid "Cancel Selection"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: gallery-plugin.php:
|
767 |
msgid "Delete Selected"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: gallery-plugin.php:
|
771 |
msgid "File"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: gallery-plugin.php:
|
775 |
msgid "Dimensions"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: gallery-plugin.php:
|
779 |
msgid "Alt tag"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: gallery-plugin.php:
|
783 |
msgid ""
|
784 |
"The alt attribute specifies an alternate text for an image, if the image "
|
785 |
"cannot be displayed."
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: gallery-plugin.php:
|
789 |
msgid "Custom URL"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: gallery-plugin.php:
|
793 |
msgid ""
|
794 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
795 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: gallery-plugin.php:
|
799 |
msgid "Deselect"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: gallery-plugin.php:
|
803 |
msgid "File name"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: gallery-plugin.php:
|
807 |
msgid "File type"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: gallery-plugin.php:
|
811 |
#, fuzzy
|
812 |
msgid "Edit Attachment Info"
|
813 |
msgstr "Anhang ID"
|
814 |
|
815 |
-
#: gallery-plugin.php:
|
816 |
#, fuzzy
|
817 |
msgid "Edit Attachment"
|
818 |
msgstr "Anhang ID"
|
819 |
|
820 |
-
#: gallery-plugin.php:
|
821 |
msgid "Go Pro"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: gallery-plugin.php:
|
825 |
msgid "Pro version"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: gallery-plugin.php:
|
829 |
msgid "This setting is available in Pro version"
|
830 |
msgstr "Diese Einstellung ist in der Pro-Version verfügbar"
|
831 |
|
832 |
-
#: gallery-plugin.php:
|
833 |
msgid "Edit more details"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: gallery-plugin.php:
|
837 |
#, php-format
|
838 |
msgid "Select %s"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: gallery-plugin.php:
|
842 |
#, php-format
|
843 |
msgid "Edit “%s”"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: gallery-plugin.php:
|
847 |
msgid "Edit"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: gallery-plugin.php:
|
851 |
msgid "Trash"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: gallery-plugin.php:
|
855 |
msgid "Delete Permanently"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: gallery-plugin.php:
|
859 |
#, php-format
|
860 |
msgid "View “%s”"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: gallery-plugin.php:
|
864 |
msgid "View"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: gallery-plugin.php:
|
868 |
#, fuzzy
|
869 |
msgid "Attach"
|
870 |
msgstr "Anhang ID"
|
871 |
|
872 |
-
#: gallery-plugin.php:
|
873 |
msgid "Restore"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: gallery-plugin.php:
|
877 |
msgid "Warning"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: gallery-plugin.php:
|
881 |
msgid "You can add only images to the gallery"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: gallery-plugin.php:
|
885 |
#, fuzzy
|
886 |
msgid "no title"
|
887 |
msgstr "Titel"
|
888 |
|
889 |
-
#: gallery-plugin.php:
|
890 |
#, fuzzy
|
891 |
msgid "Sorry, no gallery found."
|
892 |
msgstr "Leider nichts gefunden."
|
893 |
|
894 |
-
#: gallery-plugin.php:
|
895 |
#, fuzzy
|
896 |
msgid ""
|
897 |
"Display an album image with the description and the link to a single gallery "
|
898 |
"page"
|
899 |
msgstr "Shortcode zum Anzeigen einer Kurzbeschreibung, Link und Bild"
|
900 |
|
901 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
902 |
#, fuzzy
|
903 |
msgid "Install Demo Data"
|
904 |
msgstr "Installiere %s"
|
905 |
|
906 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
907 |
msgid "Remove Demo Data"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
911 |
msgid "Delete demo-data and restore old plugin settings."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
915 |
msgid "Yes, install demo data"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
919 |
msgid "Are you sure you want to install demo data?"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
923 |
msgid "Yes, remove demo data"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
927 |
msgid "Are you sure you want to remove demo data?"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
931 |
#, fuzzy
|
932 |
msgid "No, go back to the settings page"
|
933 |
msgstr "auf der Plugin-Optionen-Seite ("
|
934 |
|
935 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
936 |
msgid "Can not get demo data."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
940 |
msgid "Demo options already installed."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
944 |
msgid "Demo data successfully installed."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
948 |
msgid "View post with shortcodes"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
952 |
msgid "View page with examples"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
956 |
msgid "Installation of demo data with some errors occurred."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
960 |
msgid "Posts data is missing."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
964 |
msgid "Demo data have already been removed."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
968 |
msgid "Demo data successfully removed."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
972 |
msgid "Removing demo data with some errors occurred."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
976 |
msgid "Close notice"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
980 |
#, fuzzy
|
981 |
msgid "Install demo data"
|
982 |
msgstr "Installiere %s"
|
983 |
|
984 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
985 |
msgid "for an acquaintance with the possibilities of the"
|
986 |
msgstr ""
|
987 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
988 |
#~ msgid "Select a border color"
|
989 |
#~ msgstr "Rahmenfarbe"
|
990 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:19+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
|
9 |
"Language: uk_UA\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
20 |
+
#: gallery-plugin.php:2010
|
21 |
msgid "Settings"
|
22 |
msgstr "Einstellungen"
|
23 |
|
24 |
+
#: gallery-plugin.php:139
|
25 |
msgid "See images »"
|
26 |
msgstr "Fotos anzeigen »"
|
27 |
|
28 |
+
#: gallery-plugin.php:142
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Galleries"
|
34 |
msgstr "Galerien"
|
35 |
|
36 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
37 |
msgid "Gallery"
|
38 |
msgstr "Galerie"
|
39 |
|
40 |
+
#: gallery-plugin.php:322
|
41 |
msgid "Add New Gallery"
|
42 |
msgstr "Galerie hinzufügen"
|
43 |
|
44 |
+
#: gallery-plugin.php:323
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "Galerie bearbeiten"
|
47 |
|
48 |
+
#: gallery-plugin.php:324
|
49 |
msgid "New Gallery"
|
50 |
msgstr "Neue Galerie"
|
51 |
|
52 |
+
#: gallery-plugin.php:325
|
53 |
msgid "View Gallery"
|
54 |
msgstr "Galerie anzeigen"
|
55 |
|
56 |
+
#: gallery-plugin.php:326
|
57 |
#, fuzzy
|
58 |
msgid "Search Galleries"
|
59 |
msgstr "Galerien"
|
60 |
|
61 |
+
#: gallery-plugin.php:327
|
62 |
msgid "No Gallery found"
|
63 |
msgstr "Keine Galerien gefunden"
|
64 |
|
65 |
+
#: gallery-plugin.php:388
|
66 |
msgid "Gallery Shortcode"
|
67 |
msgstr "Galerie Einstellungen"
|
68 |
|
69 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
70 |
#, fuzzy
|
71 |
msgid "Gallery Categories"
|
72 |
msgstr "Bildgröße für Galerie"
|
73 |
|
74 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
75 |
#, fuzzy, php-format
|
76 |
msgid ""
|
77 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
79 |
"Zum Einfügen einer Galerie füge diesen Shortcode in eine Seite oder einen "
|
80 |
"Beitrag ein:"
|
81 |
|
82 |
+
#: gallery-plugin.php:405
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
87 |
"please use the shortcode below"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:411
|
91 |
msgid ""
|
92 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: gallery-plugin.php:414
|
96 |
#, fuzzy
|
97 |
msgid ""
|
98 |
"Use this shortcode to display an album image with the description and the "
|
99 |
"link to a single gallery page"
|
100 |
msgstr "Shortcode zum Anzeigen einer Kurzbeschreibung, Link und Bild"
|
101 |
|
102 |
+
#: gallery-plugin.php:416
|
103 |
msgid "Short display"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:433
|
107 |
msgid "Most Used"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
111 |
msgid "Default"
|
112 |
msgstr "Standard"
|
113 |
|
114 |
+
#: gallery-plugin.php:443
|
115 |
#, fuzzy
|
116 |
msgid "Add New Gallery Category"
|
117 |
msgstr "Galerie hinzufügen"
|
118 |
|
119 |
+
#: gallery-plugin.php:448
|
120 |
#, fuzzy
|
121 |
msgid "Install plugin"
|
122 |
msgstr "Installierte Plugins"
|
123 |
|
124 |
+
#: gallery-plugin.php:610
|
125 |
#, fuzzy
|
126 |
msgid "Gallery Category"
|
127 |
msgstr "Bildgröße für Galerie"
|
128 |
|
129 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid "Sorry, nothing found."
|
131 |
msgstr "Leider nichts gefunden."
|
132 |
|
133 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
134 |
+
#: gallery-plugin.php:3128
|
135 |
msgid "Title"
|
136 |
msgstr "Titel"
|
137 |
|
138 |
+
#: gallery-plugin.php:1356
|
139 |
msgid "Author"
|
140 |
msgstr "Author"
|
141 |
|
142 |
+
#: gallery-plugin.php:1357
|
143 |
#, fuzzy
|
144 |
msgid "Shortcode"
|
145 |
msgstr "Galerie Einstellungen"
|
146 |
|
147 |
+
#: gallery-plugin.php:1358
|
148 |
#, fuzzy
|
149 |
msgid "Photos"
|
150 |
msgstr "Foto"
|
151 |
|
152 |
+
#: gallery-plugin.php:1359
|
153 |
msgid "Date"
|
154 |
msgstr "Datum"
|
155 |
|
156 |
+
#: gallery-plugin.php:1547
|
157 |
msgid "Settings are saved"
|
158 |
msgstr "Einstellungen gespeichert."
|
159 |
|
160 |
+
#: gallery-plugin.php:1564
|
161 |
#, fuzzy
|
162 |
msgid "All plugin settings were restored."
|
163 |
msgstr "auf der Plugin-Optionen-Seite ("
|
164 |
|
165 |
+
#: gallery-plugin.php:1576
|
166 |
msgid "Gallery Settings"
|
167 |
msgstr "Galerie Einstellungen"
|
168 |
|
169 |
+
#: gallery-plugin.php:1579
|
170 |
msgid "Custom code"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: gallery-plugin.php:1580
|
174 |
msgid "Go PRO"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: gallery-plugin.php:1590
|
178 |
#, fuzzy
|
179 |
msgid "Please enable JavaScript to use the option to renew images."
|
180 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
181 |
|
182 |
+
#: gallery-plugin.php:1602
|
183 |
#, php-format
|
184 |
msgid ""
|
185 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
187 |
"please use the shortcode %s, where * stands for gallery ID"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: gallery-plugin.php:1612
|
191 |
+
#, fuzzy
|
192 |
+
msgid "Galleries page"
|
193 |
+
msgstr "Galerien"
|
194 |
+
|
195 |
+
#: gallery-plugin.php:1622
|
196 |
msgid "Number of images in the row"
|
197 |
msgstr "Anzahl Bilder in einer Reihe"
|
198 |
|
199 |
+
#: gallery-plugin.php:1624
|
200 |
#, fuzzy
|
201 |
msgid ""
|
202 |
"The number of images per row can be less depending on the width of the "
|
203 |
"parent block"
|
204 |
msgstr "Anzahl Bilder in einer Reihe"
|
205 |
|
206 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
207 |
msgid "Image size"
|
208 |
msgstr "Name der Bilder"
|
209 |
|
210 |
+
#: gallery-plugin.php:1631
|
211 |
msgid ""
|
212 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
213 |
"upload a new photo."
|
215 |
"Wordpress wird ein neues Thumbnail mit den Einstellungen erstellen, wenn du "
|
216 |
"ein neues Bild hochlädst."
|
217 |
|
218 |
+
#: gallery-plugin.php:1633
|
219 |
#, fuzzy
|
220 |
msgid "For the album cover"
|
221 |
msgstr "Bildgröße für Beitragsbild"
|
222 |
|
223 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
224 |
msgid "width x height"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
228 |
msgid "in px"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:1637
|
232 |
#, fuzzy
|
233 |
msgid "For thumbnails"
|
234 |
msgstr "Bildgröße für Beitragsbild"
|
235 |
|
236 |
+
#: gallery-plugin.php:1641
|
237 |
msgid "Update images for gallery"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
241 |
msgid "Close"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: gallery-plugin.php:1657
|
245 |
#, fuzzy
|
246 |
msgid "For images in the lightbox"
|
247 |
msgstr "Galeriegröße in der Lightbox"
|
248 |
|
249 |
+
#: gallery-plugin.php:1661
|
250 |
msgid "Display a full size image in the lightbox"
|
251 |
msgstr "Zeige das Bild in Originalgröße in derLightbox"
|
252 |
|
253 |
+
#: gallery-plugin.php:1666
|
254 |
msgid "Crop position"
|
255 |
msgstr "Crop Position"
|
256 |
|
257 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
258 |
msgid "center"
|
259 |
msgstr "zentriert"
|
260 |
|
261 |
+
#: gallery-plugin.php:1672
|
262 |
msgid "Horizontal"
|
263 |
msgstr "Horizontal"
|
264 |
|
265 |
+
#: gallery-plugin.php:1678
|
266 |
msgid "Vertical"
|
267 |
msgstr "vertikal"
|
268 |
|
269 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
270 |
msgid ""
|
271 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
275 |
msgid "Unlock premium options by upgrading to Pro version"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
279 |
msgid "Start Your Trial"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
283 |
msgid "or"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
287 |
#, fuzzy
|
288 |
msgid "Learn More"
|
289 |
msgstr "Mehr erfahren"
|
290 |
|
291 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
292 |
msgid "Display image title"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: gallery-plugin.php:1708
|
296 |
#, fuzzy
|
297 |
msgid ""
|
298 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
299 |
msgstr "Text nur in Lightbox anzeigen"
|
300 |
|
301 |
+
#: gallery-plugin.php:1712
|
302 |
msgid "Images with border"
|
303 |
msgstr "Bilder mit Rand"
|
304 |
|
305 |
+
#: gallery-plugin.php:1716
|
306 |
msgid "Border width in px, just numbers"
|
307 |
msgstr "Breite Bildrand in Pixel"
|
308 |
|
309 |
+
#: gallery-plugin.php:1722
|
310 |
msgid "Sort images"
|
311 |
msgstr "Reihenfolge"
|
312 |
|
313 |
+
#: gallery-plugin.php:1725
|
314 |
#, fuzzy
|
315 |
msgid "by Attachment ID"
|
316 |
msgstr "Anhang ID"
|
317 |
|
318 |
+
#: gallery-plugin.php:1726
|
319 |
#, fuzzy
|
320 |
msgid "by Image Name"
|
321 |
msgstr "Bildname"
|
322 |
|
323 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
324 |
#, fuzzy
|
325 |
msgid "by Date"
|
326 |
msgstr "Datum"
|
327 |
|
328 |
+
#: gallery-plugin.php:1728
|
329 |
msgid "by Sorting order in the Gallery"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
333 |
msgid "Random"
|
334 |
msgstr "Zufall"
|
335 |
|
336 |
+
#: gallery-plugin.php:1734
|
337 |
#, fuzzy
|
338 |
msgid "The images sort order"
|
339 |
msgstr "Bilder mit Rand"
|
340 |
|
341 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
342 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
343 |
msgstr "ASC (aufsteigend)"
|
344 |
|
345 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
346 |
msgid ""
|
347 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
348 |
msgstr "DESC (absteigend)"
|
349 |
|
350 |
+
#: gallery-plugin.php:1743
|
351 |
#, fuzzy
|
352 |
msgid "Sort galleries"
|
353 |
msgstr "Galerien"
|
354 |
|
355 |
+
#: gallery-plugin.php:1746
|
356 |
#, fuzzy
|
357 |
msgid "by Gallery ID"
|
358 |
msgstr "Galerie"
|
359 |
|
360 |
+
#: gallery-plugin.php:1747
|
361 |
#, fuzzy
|
362 |
msgid "by Title"
|
363 |
msgstr "Titel"
|
364 |
|
365 |
+
#: gallery-plugin.php:1749
|
366 |
msgid "by Last modified date"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: gallery-plugin.php:1750
|
370 |
msgid "by Comment count"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: gallery-plugin.php:1751
|
374 |
#, fuzzy
|
375 |
msgid "by Sorting order (the input field for sorting order)"
|
376 |
msgstr ""
|
377 |
"Reihenfolge (the input field for sorting order in the Insert / Upload Media "
|
378 |
"Gallery dialog)"
|
379 |
|
380 |
+
#: gallery-plugin.php:1752
|
381 |
#, fuzzy
|
382 |
msgid "by Author"
|
383 |
msgstr "Author"
|
384 |
|
385 |
+
#: gallery-plugin.php:1758
|
386 |
msgid "The galleries sort order"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: gallery-plugin.php:1767
|
390 |
msgid "Start slideshow"
|
391 |
msgstr "Starte Slideshow"
|
392 |
|
393 |
+
#: gallery-plugin.php:1770
|
394 |
msgid "Slideshow interval"
|
395 |
msgstr "Slideshow Geschwindigkeit"
|
396 |
|
397 |
+
#: gallery-plugin.php:1770
|
398 |
msgid "(ms)"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: gallery-plugin.php:1774
|
402 |
msgid "Use single lightbox for multiple galleries on one page"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: gallery-plugin.php:1780
|
406 |
msgid "Display the Back link"
|
407 |
msgstr "Aktiviere Zurück-Link"
|
408 |
|
409 |
+
#: gallery-plugin.php:1786
|
410 |
msgid "Display the Back link in the shortcode"
|
411 |
msgstr "Aktiviere Zurück-Link im Shortcode"
|
412 |
|
413 |
+
#: gallery-plugin.php:1792
|
414 |
msgid "The Back link text"
|
415 |
msgstr "Zurück-Link Text"
|
416 |
|
417 |
+
#: gallery-plugin.php:1798
|
418 |
msgid "The Back link URL"
|
419 |
msgstr "Zurück-Link URL"
|
420 |
|
421 |
+
#: gallery-plugin.php:1801
|
422 |
msgid "Gallery page (Page with Gallery Template)"
|
423 |
msgstr "Galerie-Seite (Seite mit Gallerie-Template)"
|
424 |
|
425 |
+
#: gallery-plugin.php:1803
|
426 |
msgid "(Full URL to custom page)"
|
427 |
msgstr "(URL zu eigener Seite)"
|
428 |
|
429 |
+
#: gallery-plugin.php:1808
|
430 |
msgid "The Read More link text"
|
431 |
msgstr "Weiterlesen link Text"
|
432 |
|
433 |
+
#: gallery-plugin.php:1814
|
434 |
msgid "Add gallery to the search"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
438 |
msgid "Using"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
442 |
msgid "powered by"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
446 |
#, fuzzy
|
447 |
msgid "Activate"
|
448 |
msgstr "Aktivierte Plugins"
|
449 |
|
450 |
+
#: gallery-plugin.php:1826
|
451 |
msgid "Download"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
msgid "Rename gallery post type"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: gallery-plugin.php:1837
|
459 |
msgid ""
|
460 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
461 |
"it now"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: gallery-plugin.php:1838
|
465 |
msgid ""
|
466 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
467 |
"please check settings of your other plugins where 'gallery' post type is used"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: gallery-plugin.php:1851
|
471 |
#, fuzzy
|
472 |
msgid "Single gallery view"
|
473 |
msgstr "Galerie Slug"
|
474 |
|
475 |
+
#: gallery-plugin.php:1854
|
476 |
msgid "Grid"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: gallery-plugin.php:1855
|
480 |
msgid "Masonry"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: gallery-plugin.php:1863
|
484 |
#, fuzzy
|
485 |
msgid "Under image"
|
486 |
msgstr "Reihenfolge Bilder"
|
487 |
|
488 |
+
#: gallery-plugin.php:1864
|
489 |
msgid "By mouse hover"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: gallery-plugin.php:1869
|
493 |
msgid "Use pagination for images"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: gallery-plugin.php:1872
|
497 |
msgid "per page"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: gallery-plugin.php:1876
|
501 |
msgid "Lightbox background"
|
502 |
msgstr "Lightbox Hintergrund"
|
503 |
|
504 |
+
#: gallery-plugin.php:1879
|
505 |
msgid "Background transparency (from 0 to 1)"
|
506 |
msgstr "Hintergrund Transparenz (0 – 1)"
|
507 |
|
508 |
+
#: gallery-plugin.php:1885
|
509 |
msgid ""
|
510 |
"Display all images in the lightbox instead of going into a single gallery"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: gallery-plugin.php:1888
|
514 |
#, php-format
|
515 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:1892
|
519 |
msgid "The lightbox helper"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1894
|
523 |
msgid "Do not use"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1895
|
527 |
msgid "Button helper"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: gallery-plugin.php:1896
|
531 |
msgid "Thumbnail helper"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:1900
|
535 |
msgid "Display Like buttons in the lightbox"
|
536 |
msgstr "Aktivier Like-Button in der Lightbox"
|
537 |
|
538 |
+
#: gallery-plugin.php:1904
|
539 |
msgid "FaceBook"
|
540 |
msgstr "Facebook"
|
541 |
|
542 |
+
#: gallery-plugin.php:1905
|
543 |
msgid "Twitter"
|
544 |
msgstr "Twitter"
|
545 |
|
546 |
+
#: gallery-plugin.php:1906
|
547 |
msgid "Pinterest"
|
548 |
msgstr "Pinterest"
|
549 |
|
550 |
+
#: gallery-plugin.php:1907
|
551 |
msgid "Google +1"
|
552 |
msgstr "Goolge+"
|
553 |
|
554 |
+
#: gallery-plugin.php:1910
|
555 |
#, fuzzy
|
556 |
msgid "Show counter"
|
557 |
msgstr "Slideshow Geschwindigkeit"
|
558 |
|
559 |
+
#: gallery-plugin.php:1912
|
560 |
msgid "Align"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: gallery-plugin.php:1914
|
564 |
msgid "left"
|
565 |
msgstr "links"
|
566 |
|
567 |
+
#: gallery-plugin.php:1921
|
568 |
msgid "Title for lightbox button"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: gallery-plugin.php:1927
|
572 |
msgid "Slug for gallery item"
|
573 |
msgstr "Galerie Slug"
|
574 |
|
575 |
+
#: gallery-plugin.php:1929
|
576 |
msgid "for any structure of permalinks except the default structure"
|
577 |
msgstr "Permalinkstruktur (Default ausgenommen)"
|
578 |
|
579 |
+
#: gallery-plugin.php:1955
|
580 |
msgid "Save Changes"
|
581 |
msgstr "Einstellungen speichern"
|
582 |
|
583 |
+
#: gallery-plugin.php:1960
|
584 |
msgid ""
|
585 |
"If you install the demo-data, will be created galleries with images, demo-"
|
586 |
"post with available shortcodes and page with a list of all the galleries."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: gallery-plugin.php:1994
|
590 |
msgid "FAQ"
|
591 |
msgstr "FAQ"
|
592 |
|
593 |
+
#: gallery-plugin.php:1995
|
594 |
msgid "Support"
|
595 |
msgstr "Support"
|
596 |
|
597 |
+
#: gallery-plugin.php:2032
|
598 |
msgid "Updating images..."
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: gallery-plugin.php:2033
|
602 |
#, fuzzy
|
603 |
msgid "No image found."
|
604 |
msgstr "Keine Galerien gefunden"
|
605 |
|
606 |
+
#: gallery-plugin.php:2034
|
607 |
msgid "All images are updated."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: gallery-plugin.php:2035
|
611 |
msgid "Error."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: gallery-plugin.php:2049
|
615 |
msgid ""
|
616 |
"You are about to delete these items from this gallery.\n"
|
617 |
" 'Cancel' to stop, 'OK' to delete."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:2050
|
621 |
msgid ""
|
622 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
623 |
"switching?"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: gallery-plugin.php:2051
|
627 |
msgid "Insert Media"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: gallery-plugin.php:2052
|
631 |
msgid "Insert"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: gallery-plugin.php:2064
|
635 |
#, fuzzy
|
636 |
msgid "Learn more"
|
637 |
msgstr "Mehr erfahren"
|
638 |
|
639 |
+
#: gallery-plugin.php:2076
|
640 |
#, fuzzy
|
641 |
msgid "Install now"
|
642 |
msgstr "Installiere %s"
|
643 |
|
644 |
+
#: gallery-plugin.php:2085
|
645 |
msgid "Add multiple gallery categories"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: gallery-plugin.php:2085
|
649 |
msgid ""
|
650 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: gallery-plugin.php:2405
|
654 |
+
msgid "Download high resolution image"
|
655 |
+
msgstr "Lade Bild in Originalgröße"
|
656 |
+
|
657 |
+
#: gallery-plugin.php:2417
|
658 |
+
msgid "Image"
|
659 |
+
msgstr "Bild"
|
660 |
+
|
661 |
+
#: gallery-plugin.php:2558
|
662 |
#, fuzzy
|
663 |
msgid "Image size not defined"
|
664 |
msgstr "Name der Bilder"
|
665 |
|
666 |
+
#: gallery-plugin.php:2573
|
667 |
msgid ""
|
668 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
669 |
"manually reload image."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: gallery-plugin.php:2584
|
673 |
msgid "Image size changes not defined"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
677 |
msgid "Invalid path"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: gallery-plugin.php:2694
|
681 |
msgid "Add images requires JavaScript."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: gallery-plugin.php:2697
|
685 |
msgid "Add Media"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: gallery-plugin.php:2707
|
689 |
msgid "The grid view for the Gallery images requires JavaScript."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: gallery-plugin.php:2707
|
693 |
msgid "Switch to the list view"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2734
|
697 |
msgid "List View"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2735
|
701 |
msgid "Grid View"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: gallery-plugin.php:2790
|
705 |
msgid "Filter"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: gallery-plugin.php:2794
|
709 |
msgid "Empty Trash"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2815
|
713 |
#, fuzzy
|
714 |
msgid "No images found"
|
715 |
msgstr "Keine Galerien gefunden"
|
716 |
|
717 |
+
#: gallery-plugin.php:2867
|
718 |
msgid "Select bulk action"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: gallery-plugin.php:2869
|
722 |
msgid "Bulk Actions"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: gallery-plugin.php:2879
|
726 |
msgid "Apply"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
730 |
#, fuzzy
|
731 |
msgid "Delete from Gallery"
|
732 |
msgstr "Neue Galerie"
|
733 |
|
734 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
735 |
#, fuzzy
|
736 |
msgid "Display link to the original file under each image in the lightbox"
|
737 |
msgstr "Zeige das Bild in Originalgröße in derLightbox"
|
738 |
|
739 |
+
#: gallery-plugin.php:2908
|
740 |
msgid "Bulk Select"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: gallery-plugin.php:2910
|
744 |
msgid "Cancel Selection"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: gallery-plugin.php:2911
|
748 |
msgid "Delete Selected"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: gallery-plugin.php:2924
|
752 |
msgid "File"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
756 |
msgid "Dimensions"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
760 |
msgid "Alt tag"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
764 |
msgid ""
|
765 |
"The alt attribute specifies an alternate text for an image, if the image "
|
766 |
"cannot be displayed."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
770 |
msgid "Custom URL"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
774 |
msgid ""
|
775 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
776 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: gallery-plugin.php:3006
|
780 |
msgid "Deselect"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: gallery-plugin.php:3012
|
784 |
msgid "File name"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:3013
|
788 |
msgid "File type"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
792 |
#, fuzzy
|
793 |
msgid "Edit Attachment Info"
|
794 |
msgstr "Anhang ID"
|
795 |
|
796 |
+
#: gallery-plugin.php:3017
|
797 |
#, fuzzy
|
798 |
msgid "Edit Attachment"
|
799 |
msgstr "Anhang ID"
|
800 |
|
801 |
+
#: gallery-plugin.php:3027
|
802 |
msgid "Go Pro"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: gallery-plugin.php:3027
|
806 |
msgid "Pro version"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: gallery-plugin.php:3030
|
810 |
msgid "This setting is available in Pro version"
|
811 |
msgstr "Diese Einstellung ist in der Pro-Version verfügbar"
|
812 |
|
813 |
+
#: gallery-plugin.php:3063
|
814 |
msgid "Edit more details"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: gallery-plugin.php:3098
|
818 |
#, php-format
|
819 |
msgid "Select %s"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: gallery-plugin.php:3111
|
823 |
#, php-format
|
824 |
msgid "Edit “%s”"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
828 |
msgid "Edit"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
832 |
msgid "Trash"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
836 |
msgid "Delete Permanently"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
840 |
#, php-format
|
841 |
msgid "View “%s”"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
845 |
msgid "View"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: gallery-plugin.php:3166
|
849 |
#, fuzzy
|
850 |
msgid "Attach"
|
851 |
msgstr "Anhang ID"
|
852 |
|
853 |
+
#: gallery-plugin.php:3172
|
854 |
msgid "Restore"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: gallery-plugin.php:3303
|
858 |
msgid "Warning"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: gallery-plugin.php:3303
|
862 |
msgid "You can add only images to the gallery"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: gallery-plugin.php:3345
|
866 |
#, fuzzy
|
867 |
msgid "no title"
|
868 |
msgstr "Titel"
|
869 |
|
870 |
+
#: gallery-plugin.php:3353
|
871 |
#, fuzzy
|
872 |
msgid "Sorry, no gallery found."
|
873 |
msgstr "Leider nichts gefunden."
|
874 |
|
875 |
+
#: gallery-plugin.php:3359
|
876 |
#, fuzzy
|
877 |
msgid ""
|
878 |
"Display an album image with the description and the link to a single gallery "
|
879 |
"page"
|
880 |
msgstr "Shortcode zum Anzeigen einer Kurzbeschreibung, Link und Bild"
|
881 |
|
882 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
883 |
#, fuzzy
|
884 |
msgid "Install Demo Data"
|
885 |
msgstr "Installiere %s"
|
886 |
|
887 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
888 |
msgid "Remove Demo Data"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
892 |
msgid "Delete demo-data and restore old plugin settings."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
896 |
msgid "Yes, install demo data"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
900 |
msgid "Are you sure you want to install demo data?"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
904 |
msgid "Yes, remove demo data"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
908 |
msgid "Are you sure you want to remove demo data?"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
912 |
#, fuzzy
|
913 |
msgid "No, go back to the settings page"
|
914 |
msgstr "auf der Plugin-Optionen-Seite ("
|
915 |
|
916 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
917 |
msgid "Can not get demo data."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
921 |
msgid "Demo options already installed."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
925 |
msgid "Demo data successfully installed."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
929 |
msgid "View post with shortcodes"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
933 |
msgid "View page with examples"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
937 |
msgid "Installation of demo data with some errors occurred."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
941 |
msgid "Posts data is missing."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
945 |
msgid "Demo data have already been removed."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
949 |
msgid "Demo data successfully removed."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
953 |
msgid "Removing demo data with some errors occurred."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
957 |
msgid "Close notice"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
961 |
#, fuzzy
|
962 |
msgid "Install demo data"
|
963 |
msgstr "Installiere %s"
|
964 |
|
965 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
966 |
msgid "for an acquaintance with the possibilities of the"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#, fuzzy
|
970 |
+
#~ msgid ""
|
971 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
972 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
973 |
+
#~ "theme for the correct work of the Gallery plugin"
|
974 |
+
#~ msgstr ""
|
975 |
+
#~ "Fehler Gallery PluginDie Dateien \"gallery-template.php\" und \"gallery-"
|
976 |
+
#~ "single-template.php\" wurden nicht in deinem Theme gefunden. Bitte "
|
977 |
+
#~ "kopiere sie aus dem Verzeichnis `/wp-content/plugins/gallery-plugin/"
|
978 |
+
#~ "template/` direkt in das Verzeichnis deines Themes, damit das Plugin "
|
979 |
+
#~ "richtig funktionieren kann."
|
980 |
+
|
981 |
#~ msgid "Select a border color"
|
982 |
#~ msgstr "Rahmenfarbe"
|
983 |
|
languages/gallery-plugin-es_ES.mo
CHANGED
Binary file
|
languages/gallery-plugin-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Carlos Limia <climia@climia.es>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -20,87 +20,74 @@ msgstr ""
|
|
20 |
|
21 |
# @ bestwebsoft
|
22 |
# @ gallery
|
23 |
-
#: gallery-plugin.php:
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Configuraciones"
|
27 |
|
28 |
# @ gallery
|
29 |
-
#: gallery-plugin.php:
|
30 |
msgid "See images »"
|
31 |
msgstr "Ver imagens »"
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ gallery
|
38 |
-
#: gallery-plugin.php:
|
39 |
-
#, fuzzy, php-format
|
40 |
-
msgid ""
|
41 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
42 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
43 |
-
"theme for the correct work of the Gallery plugin"
|
44 |
-
msgstr ""
|
45 |
-
"Os siguientes archivos \"gallery-template.php\" y \"gallery-single-template."
|
46 |
-
"php\" no se encontraron en el directorio de tema utilizado. Por favor, copie "
|
47 |
-
"los del directorio `/wp-content/plugins/gallery-plugin/template/` al "
|
48 |
-
"directorio de su tema para que el plugin Galeria funcione corretamente"
|
49 |
-
|
50 |
-
# @ gallery
|
51 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
52 |
msgid "Galleries"
|
53 |
msgstr "Galerias"
|
54 |
|
55 |
# @ gallery
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "Gallery"
|
58 |
msgstr "Galeria"
|
59 |
|
60 |
# @ gallery
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Add New Gallery"
|
63 |
msgstr "Agregar una Galeria nueva"
|
64 |
|
65 |
# @ gallery
|
66 |
-
#: gallery-plugin.php:
|
67 |
msgid "Edit Gallery"
|
68 |
msgstr "Editar Galeria"
|
69 |
|
70 |
# @ gallery
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "New Gallery"
|
73 |
msgstr "Galeria nueva"
|
74 |
|
75 |
# @ gallery
|
76 |
-
#: gallery-plugin.php:
|
77 |
msgid "View Gallery"
|
78 |
msgstr "Ver Galeria"
|
79 |
|
80 |
# @ gallery
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Search Galleries"
|
84 |
msgstr "Galerias"
|
85 |
|
86 |
# @ gallery
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "No Gallery found"
|
89 |
msgstr "Ninguna galeria encontrada"
|
90 |
|
91 |
# @ gallery
|
92 |
-
#: gallery-plugin.php:
|
93 |
msgid "Gallery Shortcode"
|
94 |
msgstr "Codigo corto de Galeria"
|
95 |
|
96 |
# @ gallery
|
97 |
-
#: gallery-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Gallery Categories"
|
100 |
msgstr "Tamanño de da imagen de la galeria"
|
101 |
|
102 |
# @ gallery
|
103 |
-
#: gallery-plugin.php:
|
104 |
#, fuzzy, php-format
|
105 |
msgid ""
|
106 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -108,7 +95,7 @@ msgstr ""
|
|
108 |
"Si quiere agregar una Galeria a su pagina o entrada, simplemente copie y "
|
109 |
"pege el codigo corto en la pagina o entrada."
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
#, php-format
|
113 |
msgid ""
|
114 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -116,13 +103,13 @@ msgid ""
|
|
116 |
"please use the shortcode below"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid ""
|
121 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
122 |
msgstr ""
|
123 |
|
124 |
# @ gallery
|
125 |
-
#: gallery-plugin.php:
|
126 |
#, fuzzy
|
127 |
msgid ""
|
128 |
"Use this shortcode to display an album image with the description and the "
|
@@ -131,109 +118,99 @@ msgstr ""
|
|
131 |
"Si quiere mostrar una descripcion corta con una miniatura de una Galeria en "
|
132 |
"una pagina."
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Short display"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "Most Used"
|
140 |
msgstr ""
|
141 |
|
142 |
# @ gallery
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Default"
|
145 |
msgstr "Por Defecto"
|
146 |
|
147 |
# @ gallery
|
148 |
-
#: gallery-plugin.php:
|
149 |
#, fuzzy
|
150 |
msgid "Add New Gallery Category"
|
151 |
msgstr "Agregar una Galeria nueva"
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Install plugin"
|
155 |
msgstr ""
|
156 |
|
157 |
# @ gallery
|
158 |
-
#: gallery-plugin.php:
|
159 |
#, fuzzy
|
160 |
msgid "Gallery Category"
|
161 |
msgstr "Tamanño de da imagen de la galeria"
|
162 |
|
163 |
# @ gallery
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
msgid "Download high resolution image"
|
166 |
-
msgstr "Descarga la image de alta resolucion"
|
167 |
-
|
168 |
-
# @ gallery
|
169 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
170 |
-
msgid "Image"
|
171 |
-
msgstr "Imagen"
|
172 |
-
|
173 |
-
# @ gallery
|
174 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
175 |
msgid "Sorry, nothing found."
|
176 |
msgstr "Disculpe, nada fue encontrado."
|
177 |
|
178 |
# @ gallery
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Title"
|
182 |
msgstr "Título"
|
183 |
|
184 |
# @ gallery
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Author"
|
187 |
msgstr "Autor"
|
188 |
|
189 |
# @ gallery
|
190 |
-
#: gallery-plugin.php:
|
191 |
#, fuzzy
|
192 |
msgid "Shortcode"
|
193 |
msgstr "Codigo corto de Galeria"
|
194 |
|
195 |
# @ gallery
|
196 |
-
#: gallery-plugin.php:
|
197 |
#, fuzzy
|
198 |
msgid "Photos"
|
199 |
msgstr "Foto"
|
200 |
|
201 |
# @ gallery
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "Date"
|
204 |
msgstr "Fecha"
|
205 |
|
206 |
# @ gallery
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Settings are saved"
|
209 |
msgstr "Cambios guardados"
|
210 |
|
211 |
# @ gallery
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, fuzzy
|
214 |
msgid "All plugin settings were restored."
|
215 |
msgstr "En la pagina de opciones de este plugin ("
|
216 |
|
217 |
# @ gallery
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Gallery Settings"
|
220 |
msgstr "Configuracion de la Galeria"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "Custom code"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Go PRO"
|
228 |
msgstr "Ir a PRO"
|
229 |
|
230 |
# @ gallery
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "Please enable JavaScript to use the option to renew images."
|
233 |
msgstr ""
|
234 |
"Por favor habilite el Javascript para usar la opcion de renovar imagenes."
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -242,12 +219,18 @@ msgid ""
|
|
242 |
msgstr ""
|
243 |
|
244 |
# @ gallery
|
245 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "Number of images in the row"
|
247 |
msgstr "Número de imagenes por fila"
|
248 |
|
249 |
# @ gallery
|
250 |
-
#: gallery-plugin.php:
|
251 |
#, fuzzy
|
252 |
msgid ""
|
253 |
"The number of images per row can be less depending on the width of the "
|
@@ -255,165 +238,165 @@ msgid ""
|
|
255 |
msgstr "Número de imagenes por fila"
|
256 |
|
257 |
# @ gallery
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Image size"
|
260 |
msgstr "Tamaño de la imagen"
|
261 |
|
262 |
# @ gallery
|
263 |
-
#: gallery-plugin.php:
|
264 |
msgid ""
|
265 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
266 |
"upload a new photo."
|
267 |
msgstr "WordPress creara una miniatura nueva cuando suba una nueva imagen."
|
268 |
|
269 |
# @ gallery
|
270 |
-
#: gallery-plugin.php:
|
271 |
#, fuzzy
|
272 |
msgid "For the album cover"
|
273 |
msgstr "Tamanño de la imagen para la portada del álbum"
|
274 |
|
275 |
-
#: gallery-plugin.php:
|
276 |
msgid "width x height"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "in px"
|
281 |
msgstr ""
|
282 |
|
283 |
# @ gallery
|
284 |
-
#: gallery-plugin.php:
|
285 |
#, fuzzy
|
286 |
msgid "For thumbnails"
|
287 |
msgstr "Tamanño de la imagen para la portada del álbum"
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Update images for gallery"
|
291 |
msgstr "Actualizar imagene de la galeria"
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "Close"
|
295 |
msgstr ""
|
296 |
|
297 |
# @ gallery
|
298 |
-
#: gallery-plugin.php:
|
299 |
#, fuzzy
|
300 |
msgid "For images in the lightbox"
|
301 |
msgstr "Tamanño de la imagen en la galeria del Lightbox"
|
302 |
|
303 |
# @ gallery
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Display a full size image in the lightbox"
|
306 |
msgstr "Exibir la imagen en su tamaño completo en el Lightbox"
|
307 |
|
308 |
# @ gallery
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Crop position"
|
311 |
msgstr "Recortar posicion"
|
312 |
|
313 |
# @ gallery
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "center"
|
316 |
msgstr "centro"
|
317 |
|
318 |
# @ gallery
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Horizontal"
|
321 |
msgstr "Horizontal"
|
322 |
|
323 |
# @ gallery
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "Vertical"
|
326 |
msgstr "Vertical"
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid ""
|
330 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
331 |
msgstr "Si actualiza a PRO sus configuraciones se guardaran"
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "Unlock premium options by upgrading to Pro version"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "Start Your Trial"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid "or"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Learn More"
|
347 |
msgstr "Saber mas."
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Display image title"
|
351 |
msgstr ""
|
352 |
|
353 |
# @ gallery
|
354 |
-
#: gallery-plugin.php:
|
355 |
#, fuzzy
|
356 |
msgid ""
|
357 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
358 |
msgstr "Desmarque la casilla, si solo quiere mostrar texto en el lightbox"
|
359 |
|
360 |
# @ gallery
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "Images with border"
|
363 |
msgstr "Imagens con borde"
|
364 |
|
365 |
# @ gallery
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "Border width in px, just numbers"
|
368 |
msgstr "Ancho del borde en px, solo números"
|
369 |
|
370 |
# @ gallery
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Sort images"
|
373 |
msgstr "Ordenar imagenes:"
|
374 |
|
375 |
# @ gallery
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "by Attachment ID"
|
379 |
msgstr "ID del anexo"
|
380 |
|
381 |
# @ gallery
|
382 |
-
#: gallery-plugin.php:
|
383 |
#, fuzzy
|
384 |
msgid "by Image Name"
|
385 |
msgstr "Nome da Imagen"
|
386 |
|
387 |
# @ gallery
|
388 |
-
#: gallery-plugin.php:
|
389 |
#, fuzzy
|
390 |
msgid "by Date"
|
391 |
msgstr "Fecha"
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
msgid "by Sorting order in the Gallery"
|
395 |
msgstr ""
|
396 |
|
397 |
# @ gallery
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Random"
|
400 |
msgstr "Aleatório"
|
401 |
|
402 |
# @ gallery
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, fuzzy
|
405 |
msgid "The images sort order"
|
406 |
msgstr "Imagens con borde"
|
407 |
|
408 |
# @ gallery
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
411 |
msgstr ""
|
412 |
"ASC (orden ascente de los valores mas baijos a los mas altos - 1, 2, 3; a, "
|
413 |
"b, c)"
|
414 |
|
415 |
# @ gallery
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid ""
|
418 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
419 |
msgstr ""
|
@@ -421,354 +404,353 @@ msgstr ""
|
|
421 |
"3; a, b, c)"
|
422 |
|
423 |
# @ gallery
|
424 |
-
#: gallery-plugin.php:
|
425 |
#, fuzzy
|
426 |
msgid "Sort galleries"
|
427 |
msgstr "Galerias"
|
428 |
|
429 |
# @ gallery
|
430 |
-
#: gallery-plugin.php:
|
431 |
#, fuzzy
|
432 |
msgid "by Gallery ID"
|
433 |
msgstr "Galeria"
|
434 |
|
435 |
# @ gallery
|
436 |
-
#: gallery-plugin.php:
|
437 |
#, fuzzy
|
438 |
msgid "by Title"
|
439 |
msgstr "Título"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
msgid "by Last modified date"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "by Comment count"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "by Sorting order (the input field for sorting order)"
|
451 |
msgstr ""
|
452 |
|
453 |
# @ gallery
|
454 |
-
#: gallery-plugin.php:
|
455 |
#, fuzzy
|
456 |
msgid "by Author"
|
457 |
msgstr "Autor"
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "The galleries sort order"
|
461 |
msgstr ""
|
462 |
|
463 |
# @ gallery
|
464 |
-
#: gallery-plugin.php:
|
465 |
msgid "Start slideshow"
|
466 |
msgstr "Iniciar Apresentacion de diapositivas"
|
467 |
|
468 |
# @ gallery
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "Slideshow interval"
|
471 |
msgstr "Intervalo entre las diapositivas"
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "(ms)"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid "Use single lightbox for multiple galleries on one page"
|
479 |
msgstr "Usar un LightBox unici para multiples galerias en una pagina."
|
480 |
|
481 |
# @ gallery
|
482 |
-
#: gallery-plugin.php:
|
483 |
msgid "Display the Back link"
|
484 |
msgstr "Mostrar enlace Volver"
|
485 |
|
486 |
# @ gallery
|
487 |
-
#: gallery-plugin.php:
|
488 |
msgid "Display the Back link in the shortcode"
|
489 |
msgstr "Mostrar enlace Volver codigo corto"
|
490 |
|
491 |
# @ gallery
|
492 |
-
#: gallery-plugin.php:
|
493 |
msgid "The Back link text"
|
494 |
msgstr "Texto del enlace volver"
|
495 |
|
496 |
# @ gallery
|
497 |
-
#: gallery-plugin.php:
|
498 |
msgid "The Back link URL"
|
499 |
msgstr "URL del enlacw Volver"
|
500 |
|
501 |
# @ gallery
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "Gallery page (Page with Gallery Template)"
|
504 |
msgstr ""
|
505 |
"Página de la Galeria (planilla otema usado para la pagina de la Galeria)"
|
506 |
|
507 |
# @ gallery
|
508 |
-
#: gallery-plugin.php:
|
509 |
msgid "(Full URL to custom page)"
|
510 |
msgstr "(URL completa para a página personalizada)"
|
511 |
|
512 |
# @ gallery
|
513 |
-
#: gallery-plugin.php:
|
514 |
msgid "The Read More link text"
|
515 |
msgstr "Texto del enlace leer mas"
|
516 |
|
517 |
-
#: gallery-plugin.php:
|
518 |
msgid "Add gallery to the search"
|
519 |
msgstr "Agregar la galeria a la busqueda"
|
520 |
|
521 |
-
#: gallery-plugin.php:
|
522 |
msgid "Using"
|
523 |
msgstr "Usando"
|
524 |
|
525 |
-
#: gallery-plugin.php:
|
526 |
msgid "powered by"
|
527 |
msgstr "propulsado por"
|
528 |
|
529 |
-
#: gallery-plugin.php:
|
530 |
msgid "Activate"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: gallery-plugin.php:
|
534 |
msgid "Download"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: gallery-plugin.php:
|
538 |
-
msgid "Rewrite templates after update"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: gallery-plugin.php:1929
|
542 |
-
#, php-format
|
543 |
-
msgid ""
|
544 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
545 |
-
"theme folder and You don't want to rewrite them"
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: gallery-plugin.php:1934
|
549 |
msgid "Rename gallery post type"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: gallery-plugin.php:
|
553 |
msgid ""
|
554 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
555 |
"it now"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: gallery-plugin.php:
|
559 |
msgid ""
|
560 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
561 |
"please check settings of your other plugins where 'gallery' post type is used"
|
562 |
msgstr ""
|
563 |
|
564 |
# @ gallery
|
565 |
-
#: gallery-plugin.php:
|
566 |
#, fuzzy
|
567 |
msgid "Single gallery view"
|
568 |
msgstr "Slug para la galeria"
|
569 |
|
570 |
-
#: gallery-plugin.php:
|
571 |
msgid "Grid"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: gallery-plugin.php:
|
575 |
msgid "Masonry"
|
576 |
msgstr ""
|
577 |
|
578 |
# @ gallery
|
579 |
-
#: gallery-plugin.php:
|
580 |
#, fuzzy
|
581 |
msgid "Under image"
|
582 |
msgstr "Actualizar imagenes"
|
583 |
|
584 |
-
#: gallery-plugin.php:
|
585 |
msgid "By mouse hover"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: gallery-plugin.php:
|
589 |
#, fuzzy
|
590 |
msgid "Use pagination for images"
|
591 |
msgstr "Actualizando imagenes"
|
592 |
|
593 |
-
#: gallery-plugin.php:
|
594 |
msgid "per page"
|
595 |
msgstr ""
|
596 |
|
597 |
# @ gallery
|
598 |
-
#: gallery-plugin.php:
|
599 |
msgid "Lightbox background"
|
600 |
msgstr "Fundo del Lightbox"
|
601 |
|
602 |
# @ gallery
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "Background transparency (from 0 to 1)"
|
605 |
msgstr "Transparencia del fondo (de 0 a 1)"
|
606 |
|
607 |
-
#: gallery-plugin.php:
|
608 |
msgid ""
|
609 |
"Display all images in the lightbox instead of going into a single gallery"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: gallery-plugin.php:
|
613 |
#, php-format
|
614 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: gallery-plugin.php:
|
618 |
msgid "The lightbox helper"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: gallery-plugin.php:
|
622 |
msgid "Do not use"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: gallery-plugin.php:
|
626 |
msgid "Button helper"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: gallery-plugin.php:
|
630 |
msgid "Thumbnail helper"
|
631 |
msgstr ""
|
632 |
|
633 |
# @ gallery
|
634 |
-
#: gallery-plugin.php:
|
635 |
msgid "Display Like buttons in the lightbox"
|
636 |
msgstr "Mostrar botones me gusta en el Lightbox"
|
637 |
|
638 |
# @ gallery
|
639 |
-
#: gallery-plugin.php:
|
640 |
msgid "FaceBook"
|
641 |
msgstr "Facebook"
|
642 |
|
643 |
# @ gallery
|
644 |
-
#: gallery-plugin.php:
|
645 |
msgid "Twitter"
|
646 |
msgstr "Twitter"
|
647 |
|
648 |
# @ gallery
|
649 |
-
#: gallery-plugin.php:
|
650 |
msgid "Pinterest"
|
651 |
msgstr "Pinterest"
|
652 |
|
653 |
# @ gallery
|
654 |
-
#: gallery-plugin.php:
|
655 |
msgid "Google +1"
|
656 |
msgstr "Google +1"
|
657 |
|
658 |
# @ gallery
|
659 |
-
#: gallery-plugin.php:
|
660 |
#, fuzzy
|
661 |
msgid "Show counter"
|
662 |
msgstr "Intervalo entre las diapositivas"
|
663 |
|
664 |
-
#: gallery-plugin.php:
|
665 |
msgid "Align"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: gallery-plugin.php:
|
669 |
msgid "left"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: gallery-plugin.php:
|
673 |
msgid "Title for lightbox button"
|
674 |
msgstr ""
|
675 |
|
676 |
# @ gallery
|
677 |
-
#: gallery-plugin.php:
|
678 |
msgid "Slug for gallery item"
|
679 |
msgstr "Slug para la galeria"
|
680 |
|
681 |
# @ gallery
|
682 |
-
#: gallery-plugin.php:
|
683 |
msgid "for any structure of permalinks except the default structure"
|
684 |
msgstr ""
|
685 |
"para qualquier estrutura de los enlaces permanentes, exceto la estrutura "
|
686 |
"predeterninada"
|
687 |
|
688 |
# @ default
|
689 |
-
#: gallery-plugin.php:
|
690 |
msgid "Save Changes"
|
691 |
msgstr "Guardar Cambios"
|
692 |
|
693 |
-
#: gallery-plugin.php:
|
694 |
msgid ""
|
695 |
"If you install the demo-data, will be created galleries with images, demo-"
|
696 |
"post with available shortcodes and page with a list of all the galleries."
|
697 |
msgstr ""
|
698 |
|
699 |
# @ gallery
|
700 |
-
#: gallery-plugin.php:
|
701 |
msgid "FAQ"
|
702 |
msgstr "FAQ"
|
703 |
|
704 |
# @ gallery
|
705 |
-
#: gallery-plugin.php:
|
706 |
msgid "Support"
|
707 |
msgstr "Soporte"
|
708 |
|
709 |
-
#: gallery-plugin.php:
|
710 |
msgid "Updating images..."
|
711 |
msgstr "Actualizando imagenes"
|
712 |
|
713 |
# @ gallery
|
714 |
-
#: gallery-plugin.php:
|
715 |
#, fuzzy
|
716 |
msgid "No image found."
|
717 |
msgstr "Imagen no encontrada"
|
718 |
|
719 |
-
#: gallery-plugin.php:
|
720 |
#, fuzzy
|
721 |
msgid "All images are updated."
|
722 |
msgstr "Todas las imgenes an sido actualizados"
|
723 |
|
724 |
-
#: gallery-plugin.php:
|
725 |
msgid "Error."
|
726 |
msgstr "Error"
|
727 |
|
728 |
-
#: gallery-plugin.php:
|
729 |
msgid ""
|
730 |
"You are about to delete these items from this gallery.\n"
|
731 |
" 'Cancel' to stop, 'OK' to delete."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
msgid ""
|
736 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
737 |
"switching?"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: gallery-plugin.php:
|
741 |
msgid "Insert Media"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: gallery-plugin.php:
|
745 |
msgid "Insert"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: gallery-plugin.php:
|
749 |
#, fuzzy
|
750 |
msgid "Learn more"
|
751 |
msgstr "Saber mas."
|
752 |
|
753 |
-
#: gallery-plugin.php:
|
754 |
msgid "Install now"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: gallery-plugin.php:
|
758 |
msgid "Add multiple gallery categories"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: gallery-plugin.php:
|
762 |
msgid ""
|
763 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
764 |
msgstr ""
|
765 |
|
766 |
# @ gallery
|
767 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
msgid "Image size not defined"
|
769 |
msgstr "Tanaño de imagen no definida"
|
770 |
|
771 |
-
#: gallery-plugin.php:
|
772 |
msgid ""
|
773 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
774 |
"manually reload image."
|
@@ -776,221 +758,221 @@ msgstr ""
|
|
776 |
"Solo podemos actualizar archivos PNG, JPEG, GIF, WPMP o XBM. Para otros "
|
777 |
"formatos necesita volver a subir elarchivo."
|
778 |
|
779 |
-
#: gallery-plugin.php:
|
780 |
msgid "Image size changes not defined"
|
781 |
msgstr "Tamaño de imagen no esta definida."
|
782 |
|
783 |
-
#: gallery-plugin.php:
|
784 |
msgid "Invalid path"
|
785 |
msgstr "Ruta incorrecta."
|
786 |
|
787 |
-
#: gallery-plugin.php:
|
788 |
msgid "Add images requires JavaScript."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: gallery-plugin.php:
|
792 |
msgid "Add Media"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: gallery-plugin.php:
|
796 |
msgid "The grid view for the Gallery images requires JavaScript."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: gallery-plugin.php:
|
800 |
msgid "Switch to the list view"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: gallery-plugin.php:
|
804 |
msgid "List View"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: gallery-plugin.php:
|
808 |
msgid "Grid View"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: gallery-plugin.php:
|
812 |
msgid "Filter"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: gallery-plugin.php:
|
816 |
msgid "Empty Trash"
|
817 |
msgstr ""
|
818 |
|
819 |
# @ gallery
|
820 |
-
#: gallery-plugin.php:
|
821 |
#, fuzzy
|
822 |
msgid "No images found"
|
823 |
msgstr "Imagen no encontrada"
|
824 |
|
825 |
-
#: gallery-plugin.php:
|
826 |
msgid "Select bulk action"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: gallery-plugin.php:
|
830 |
msgid "Bulk Actions"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: gallery-plugin.php:
|
834 |
msgid "Apply"
|
835 |
msgstr ""
|
836 |
|
837 |
# @ gallery
|
838 |
-
#: gallery-plugin.php:
|
839 |
#, fuzzy
|
840 |
msgid "Delete from Gallery"
|
841 |
msgstr "Galeria nueva"
|
842 |
|
843 |
# @ gallery
|
844 |
-
#: gallery-plugin.php:
|
845 |
#, fuzzy
|
846 |
msgid "Display link to the original file under each image in the lightbox"
|
847 |
msgstr "Exibir la imagen en su tamaño completo en el Lightbox"
|
848 |
|
849 |
-
#: gallery-plugin.php:
|
850 |
msgid "Bulk Select"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: gallery-plugin.php:
|
854 |
msgid "Cancel Selection"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: gallery-plugin.php:
|
858 |
msgid "Delete Selected"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
msgid "File"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: gallery-plugin.php:
|
866 |
msgid "Dimensions"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: gallery-plugin.php:
|
870 |
msgid "Alt tag"
|
871 |
msgstr "Etiqueta alternativa"
|
872 |
|
873 |
-
#: gallery-plugin.php:
|
874 |
msgid ""
|
875 |
"The alt attribute specifies an alternate text for an image, if the image "
|
876 |
"cannot be displayed."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: gallery-plugin.php:
|
880 |
msgid "Custom URL"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: gallery-plugin.php:
|
884 |
msgid ""
|
885 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
886 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: gallery-plugin.php:
|
890 |
msgid "Deselect"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: gallery-plugin.php:
|
894 |
msgid "File name"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: gallery-plugin.php:
|
898 |
msgid "File type"
|
899 |
msgstr ""
|
900 |
|
901 |
# @ gallery
|
902 |
-
#: gallery-plugin.php:
|
903 |
#, fuzzy
|
904 |
msgid "Edit Attachment Info"
|
905 |
msgstr "ID del anexo"
|
906 |
|
907 |
# @ gallery
|
908 |
-
#: gallery-plugin.php:
|
909 |
#, fuzzy
|
910 |
msgid "Edit Attachment"
|
911 |
msgstr "ID del anexo"
|
912 |
|
913 |
-
#: gallery-plugin.php:
|
914 |
#, fuzzy
|
915 |
msgid "Go Pro"
|
916 |
msgstr "Ir a PRO"
|
917 |
|
918 |
-
#: gallery-plugin.php:
|
919 |
msgid "Pro version"
|
920 |
msgstr ""
|
921 |
|
922 |
# @ gallery
|
923 |
-
#: gallery-plugin.php:
|
924 |
msgid "This setting is available in Pro version"
|
925 |
msgstr "Esta opcion solo esta disponible en la version Pro"
|
926 |
|
927 |
-
#: gallery-plugin.php:
|
928 |
msgid "Edit more details"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: gallery-plugin.php:
|
932 |
#, php-format
|
933 |
msgid "Select %s"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: gallery-plugin.php:
|
937 |
#, php-format
|
938 |
msgid "Edit “%s”"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: gallery-plugin.php:
|
942 |
msgid "Edit"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: gallery-plugin.php:
|
946 |
msgid "Trash"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: gallery-plugin.php:
|
950 |
msgid "Delete Permanently"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: gallery-plugin.php:
|
954 |
#, php-format
|
955 |
msgid "View “%s”"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: gallery-plugin.php:
|
959 |
msgid "View"
|
960 |
msgstr ""
|
961 |
|
962 |
# @ gallery
|
963 |
-
#: gallery-plugin.php:
|
964 |
#, fuzzy
|
965 |
msgid "Attach"
|
966 |
msgstr "ID del anexo"
|
967 |
|
968 |
-
#: gallery-plugin.php:
|
969 |
msgid "Restore"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: gallery-plugin.php:
|
973 |
msgid "Warning"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: gallery-plugin.php:
|
977 |
msgid "You can add only images to the gallery"
|
978 |
msgstr ""
|
979 |
|
980 |
# @ gallery
|
981 |
-
#: gallery-plugin.php:
|
982 |
#, fuzzy
|
983 |
msgid "no title"
|
984 |
msgstr "Título"
|
985 |
|
986 |
# @ gallery
|
987 |
-
#: gallery-plugin.php:
|
988 |
#, fuzzy
|
989 |
msgid "Sorry, no gallery found."
|
990 |
msgstr "Disculpe, nada fue encontrado."
|
991 |
|
992 |
# @ gallery
|
993 |
-
#: gallery-plugin.php:
|
994 |
#, fuzzy
|
995 |
msgid ""
|
996 |
"Display an album image with the description and the link to a single gallery "
|
@@ -999,92 +981,105 @@ msgstr ""
|
|
999 |
"Si quiere mostrar una descripcion corta con una miniatura de una Galeria en "
|
1000 |
"una pagina."
|
1001 |
|
1002 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1003 |
msgid "Install Demo Data"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1007 |
msgid "Remove Demo Data"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1011 |
msgid "Delete demo-data and restore old plugin settings."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1015 |
msgid "Yes, install demo data"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1019 |
msgid "Are you sure you want to install demo data?"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1023 |
msgid "Yes, remove demo data"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1027 |
msgid "Are you sure you want to remove demo data?"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
# @ gallery
|
1031 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1032 |
#, fuzzy
|
1033 |
msgid "No, go back to the settings page"
|
1034 |
msgstr "En la pagina de opciones de este plugin ("
|
1035 |
|
1036 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1037 |
msgid "Can not get demo data."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1041 |
msgid "Demo options already installed."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1045 |
msgid "Demo data successfully installed."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1049 |
msgid "View post with shortcodes"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1053 |
msgid "View page with examples"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1057 |
msgid "Installation of demo data with some errors occurred."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1061 |
msgid "Posts data is missing."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1065 |
msgid "Demo data have already been removed."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1069 |
msgid "Demo data successfully removed."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1073 |
msgid "Removing demo data with some errors occurred."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1077 |
msgid "Close notice"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1081 |
msgid "Install demo data"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1085 |
msgid "for an acquaintance with the possibilities of the"
|
1086 |
msgstr ""
|
1087 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1088 |
# @ gallery
|
1089 |
#~ msgid "Select a border color"
|
1090 |
#~ msgstr "Escoja el color del borde"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:19+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Carlos Limia <climia@climia.es>\n"
|
9 |
"Language: pt_BR\n"
|
20 |
|
21 |
# @ bestwebsoft
|
22 |
# @ gallery
|
23 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
24 |
+
#: gallery-plugin.php:2010
|
25 |
msgid "Settings"
|
26 |
msgstr "Configuraciones"
|
27 |
|
28 |
# @ gallery
|
29 |
+
#: gallery-plugin.php:139
|
30 |
msgid "See images »"
|
31 |
msgstr "Ver imagens »"
|
32 |
|
33 |
+
#: gallery-plugin.php:142
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ gallery
|
38 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Galleries"
|
40 |
msgstr "Galerias"
|
41 |
|
42 |
# @ gallery
|
43 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
44 |
msgid "Gallery"
|
45 |
msgstr "Galeria"
|
46 |
|
47 |
# @ gallery
|
48 |
+
#: gallery-plugin.php:322
|
49 |
msgid "Add New Gallery"
|
50 |
msgstr "Agregar una Galeria nueva"
|
51 |
|
52 |
# @ gallery
|
53 |
+
#: gallery-plugin.php:323
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Editar Galeria"
|
56 |
|
57 |
# @ gallery
|
58 |
+
#: gallery-plugin.php:324
|
59 |
msgid "New Gallery"
|
60 |
msgstr "Galeria nueva"
|
61 |
|
62 |
# @ gallery
|
63 |
+
#: gallery-plugin.php:325
|
64 |
msgid "View Gallery"
|
65 |
msgstr "Ver Galeria"
|
66 |
|
67 |
# @ gallery
|
68 |
+
#: gallery-plugin.php:326
|
69 |
#, fuzzy
|
70 |
msgid "Search Galleries"
|
71 |
msgstr "Galerias"
|
72 |
|
73 |
# @ gallery
|
74 |
+
#: gallery-plugin.php:327
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Ninguna galeria encontrada"
|
77 |
|
78 |
# @ gallery
|
79 |
+
#: gallery-plugin.php:388
|
80 |
msgid "Gallery Shortcode"
|
81 |
msgstr "Codigo corto de Galeria"
|
82 |
|
83 |
# @ gallery
|
84 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
85 |
#, fuzzy
|
86 |
msgid "Gallery Categories"
|
87 |
msgstr "Tamanño de da imagen de la galeria"
|
88 |
|
89 |
# @ gallery
|
90 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
91 |
#, fuzzy, php-format
|
92 |
msgid ""
|
93 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
95 |
"Si quiere agregar una Galeria a su pagina o entrada, simplemente copie y "
|
96 |
"pege el codigo corto en la pagina o entrada."
|
97 |
|
98 |
+
#: gallery-plugin.php:405
|
99 |
#, php-format
|
100 |
msgid ""
|
101 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
103 |
"please use the shortcode below"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:411
|
107 |
msgid ""
|
108 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
109 |
msgstr ""
|
110 |
|
111 |
# @ gallery
|
112 |
+
#: gallery-plugin.php:414
|
113 |
#, fuzzy
|
114 |
msgid ""
|
115 |
"Use this shortcode to display an album image with the description and the "
|
118 |
"Si quiere mostrar una descripcion corta con una miniatura de una Galeria en "
|
119 |
"una pagina."
|
120 |
|
121 |
+
#: gallery-plugin.php:416
|
122 |
msgid "Short display"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: gallery-plugin.php:433
|
126 |
msgid "Most Used"
|
127 |
msgstr ""
|
128 |
|
129 |
# @ gallery
|
130 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
131 |
msgid "Default"
|
132 |
msgstr "Por Defecto"
|
133 |
|
134 |
# @ gallery
|
135 |
+
#: gallery-plugin.php:443
|
136 |
#, fuzzy
|
137 |
msgid "Add New Gallery Category"
|
138 |
msgstr "Agregar una Galeria nueva"
|
139 |
|
140 |
+
#: gallery-plugin.php:448
|
141 |
msgid "Install plugin"
|
142 |
msgstr ""
|
143 |
|
144 |
# @ gallery
|
145 |
+
#: gallery-plugin.php:610
|
146 |
#, fuzzy
|
147 |
msgid "Gallery Category"
|
148 |
msgstr "Tamanño de da imagen de la galeria"
|
149 |
|
150 |
# @ gallery
|
151 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
msgid "Sorry, nothing found."
|
153 |
msgstr "Disculpe, nada fue encontrado."
|
154 |
|
155 |
# @ gallery
|
156 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
157 |
+
#: gallery-plugin.php:3128
|
158 |
msgid "Title"
|
159 |
msgstr "Título"
|
160 |
|
161 |
# @ gallery
|
162 |
+
#: gallery-plugin.php:1356
|
163 |
msgid "Author"
|
164 |
msgstr "Autor"
|
165 |
|
166 |
# @ gallery
|
167 |
+
#: gallery-plugin.php:1357
|
168 |
#, fuzzy
|
169 |
msgid "Shortcode"
|
170 |
msgstr "Codigo corto de Galeria"
|
171 |
|
172 |
# @ gallery
|
173 |
+
#: gallery-plugin.php:1358
|
174 |
#, fuzzy
|
175 |
msgid "Photos"
|
176 |
msgstr "Foto"
|
177 |
|
178 |
# @ gallery
|
179 |
+
#: gallery-plugin.php:1359
|
180 |
msgid "Date"
|
181 |
msgstr "Fecha"
|
182 |
|
183 |
# @ gallery
|
184 |
+
#: gallery-plugin.php:1547
|
185 |
msgid "Settings are saved"
|
186 |
msgstr "Cambios guardados"
|
187 |
|
188 |
# @ gallery
|
189 |
+
#: gallery-plugin.php:1564
|
190 |
#, fuzzy
|
191 |
msgid "All plugin settings were restored."
|
192 |
msgstr "En la pagina de opciones de este plugin ("
|
193 |
|
194 |
# @ gallery
|
195 |
+
#: gallery-plugin.php:1576
|
196 |
msgid "Gallery Settings"
|
197 |
msgstr "Configuracion de la Galeria"
|
198 |
|
199 |
+
#: gallery-plugin.php:1579
|
200 |
msgid "Custom code"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:1580
|
204 |
msgid "Go PRO"
|
205 |
msgstr "Ir a PRO"
|
206 |
|
207 |
# @ gallery
|
208 |
+
#: gallery-plugin.php:1590
|
209 |
msgid "Please enable JavaScript to use the option to renew images."
|
210 |
msgstr ""
|
211 |
"Por favor habilite el Javascript para usar la opcion de renovar imagenes."
|
212 |
|
213 |
+
#: gallery-plugin.php:1602
|
214 |
#, php-format
|
215 |
msgid ""
|
216 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
219 |
msgstr ""
|
220 |
|
221 |
# @ gallery
|
222 |
+
#: gallery-plugin.php:1612
|
223 |
+
#, fuzzy
|
224 |
+
msgid "Galleries page"
|
225 |
+
msgstr "Galerias"
|
226 |
+
|
227 |
+
# @ gallery
|
228 |
+
#: gallery-plugin.php:1622
|
229 |
msgid "Number of images in the row"
|
230 |
msgstr "Número de imagenes por fila"
|
231 |
|
232 |
# @ gallery
|
233 |
+
#: gallery-plugin.php:1624
|
234 |
#, fuzzy
|
235 |
msgid ""
|
236 |
"The number of images per row can be less depending on the width of the "
|
238 |
msgstr "Número de imagenes por fila"
|
239 |
|
240 |
# @ gallery
|
241 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
242 |
msgid "Image size"
|
243 |
msgstr "Tamaño de la imagen"
|
244 |
|
245 |
# @ gallery
|
246 |
+
#: gallery-plugin.php:1631
|
247 |
msgid ""
|
248 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
249 |
"upload a new photo."
|
250 |
msgstr "WordPress creara una miniatura nueva cuando suba una nueva imagen."
|
251 |
|
252 |
# @ gallery
|
253 |
+
#: gallery-plugin.php:1633
|
254 |
#, fuzzy
|
255 |
msgid "For the album cover"
|
256 |
msgstr "Tamanño de la imagen para la portada del álbum"
|
257 |
|
258 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
259 |
msgid "width x height"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
263 |
msgid "in px"
|
264 |
msgstr ""
|
265 |
|
266 |
# @ gallery
|
267 |
+
#: gallery-plugin.php:1637
|
268 |
#, fuzzy
|
269 |
msgid "For thumbnails"
|
270 |
msgstr "Tamanño de la imagen para la portada del álbum"
|
271 |
|
272 |
+
#: gallery-plugin.php:1641
|
273 |
msgid "Update images for gallery"
|
274 |
msgstr "Actualizar imagene de la galeria"
|
275 |
|
276 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
277 |
msgid "Close"
|
278 |
msgstr ""
|
279 |
|
280 |
# @ gallery
|
281 |
+
#: gallery-plugin.php:1657
|
282 |
#, fuzzy
|
283 |
msgid "For images in the lightbox"
|
284 |
msgstr "Tamanño de la imagen en la galeria del Lightbox"
|
285 |
|
286 |
# @ gallery
|
287 |
+
#: gallery-plugin.php:1661
|
288 |
msgid "Display a full size image in the lightbox"
|
289 |
msgstr "Exibir la imagen en su tamaño completo en el Lightbox"
|
290 |
|
291 |
# @ gallery
|
292 |
+
#: gallery-plugin.php:1666
|
293 |
msgid "Crop position"
|
294 |
msgstr "Recortar posicion"
|
295 |
|
296 |
# @ gallery
|
297 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
298 |
msgid "center"
|
299 |
msgstr "centro"
|
300 |
|
301 |
# @ gallery
|
302 |
+
#: gallery-plugin.php:1672
|
303 |
msgid "Horizontal"
|
304 |
msgstr "Horizontal"
|
305 |
|
306 |
# @ gallery
|
307 |
+
#: gallery-plugin.php:1678
|
308 |
msgid "Vertical"
|
309 |
msgstr "Vertical"
|
310 |
|
311 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
312 |
msgid ""
|
313 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
314 |
msgstr "Si actualiza a PRO sus configuraciones se guardaran"
|
315 |
|
316 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
317 |
msgid "Unlock premium options by upgrading to Pro version"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
321 |
msgid "Start Your Trial"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
325 |
msgid "or"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
329 |
msgid "Learn More"
|
330 |
msgstr "Saber mas."
|
331 |
|
332 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
333 |
msgid "Display image title"
|
334 |
msgstr ""
|
335 |
|
336 |
# @ gallery
|
337 |
+
#: gallery-plugin.php:1708
|
338 |
#, fuzzy
|
339 |
msgid ""
|
340 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
341 |
msgstr "Desmarque la casilla, si solo quiere mostrar texto en el lightbox"
|
342 |
|
343 |
# @ gallery
|
344 |
+
#: gallery-plugin.php:1712
|
345 |
msgid "Images with border"
|
346 |
msgstr "Imagens con borde"
|
347 |
|
348 |
# @ gallery
|
349 |
+
#: gallery-plugin.php:1716
|
350 |
msgid "Border width in px, just numbers"
|
351 |
msgstr "Ancho del borde en px, solo números"
|
352 |
|
353 |
# @ gallery
|
354 |
+
#: gallery-plugin.php:1722
|
355 |
msgid "Sort images"
|
356 |
msgstr "Ordenar imagenes:"
|
357 |
|
358 |
# @ gallery
|
359 |
+
#: gallery-plugin.php:1725
|
360 |
#, fuzzy
|
361 |
msgid "by Attachment ID"
|
362 |
msgstr "ID del anexo"
|
363 |
|
364 |
# @ gallery
|
365 |
+
#: gallery-plugin.php:1726
|
366 |
#, fuzzy
|
367 |
msgid "by Image Name"
|
368 |
msgstr "Nome da Imagen"
|
369 |
|
370 |
# @ gallery
|
371 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
372 |
#, fuzzy
|
373 |
msgid "by Date"
|
374 |
msgstr "Fecha"
|
375 |
|
376 |
+
#: gallery-plugin.php:1728
|
377 |
msgid "by Sorting order in the Gallery"
|
378 |
msgstr ""
|
379 |
|
380 |
# @ gallery
|
381 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
382 |
msgid "Random"
|
383 |
msgstr "Aleatório"
|
384 |
|
385 |
# @ gallery
|
386 |
+
#: gallery-plugin.php:1734
|
387 |
#, fuzzy
|
388 |
msgid "The images sort order"
|
389 |
msgstr "Imagens con borde"
|
390 |
|
391 |
# @ gallery
|
392 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
393 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
394 |
msgstr ""
|
395 |
"ASC (orden ascente de los valores mas baijos a los mas altos - 1, 2, 3; a, "
|
396 |
"b, c)"
|
397 |
|
398 |
# @ gallery
|
399 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
400 |
msgid ""
|
401 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
402 |
msgstr ""
|
404 |
"3; a, b, c)"
|
405 |
|
406 |
# @ gallery
|
407 |
+
#: gallery-plugin.php:1743
|
408 |
#, fuzzy
|
409 |
msgid "Sort galleries"
|
410 |
msgstr "Galerias"
|
411 |
|
412 |
# @ gallery
|
413 |
+
#: gallery-plugin.php:1746
|
414 |
#, fuzzy
|
415 |
msgid "by Gallery ID"
|
416 |
msgstr "Galeria"
|
417 |
|
418 |
# @ gallery
|
419 |
+
#: gallery-plugin.php:1747
|
420 |
#, fuzzy
|
421 |
msgid "by Title"
|
422 |
msgstr "Título"
|
423 |
|
424 |
+
#: gallery-plugin.php:1749
|
425 |
msgid "by Last modified date"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: gallery-plugin.php:1750
|
429 |
msgid "by Comment count"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: gallery-plugin.php:1751
|
433 |
msgid "by Sorting order (the input field for sorting order)"
|
434 |
msgstr ""
|
435 |
|
436 |
# @ gallery
|
437 |
+
#: gallery-plugin.php:1752
|
438 |
#, fuzzy
|
439 |
msgid "by Author"
|
440 |
msgstr "Autor"
|
441 |
|
442 |
+
#: gallery-plugin.php:1758
|
443 |
msgid "The galleries sort order"
|
444 |
msgstr ""
|
445 |
|
446 |
# @ gallery
|
447 |
+
#: gallery-plugin.php:1767
|
448 |
msgid "Start slideshow"
|
449 |
msgstr "Iniciar Apresentacion de diapositivas"
|
450 |
|
451 |
# @ gallery
|
452 |
+
#: gallery-plugin.php:1770
|
453 |
msgid "Slideshow interval"
|
454 |
msgstr "Intervalo entre las diapositivas"
|
455 |
|
456 |
+
#: gallery-plugin.php:1770
|
457 |
msgid "(ms)"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:1774
|
461 |
msgid "Use single lightbox for multiple galleries on one page"
|
462 |
msgstr "Usar un LightBox unici para multiples galerias en una pagina."
|
463 |
|
464 |
# @ gallery
|
465 |
+
#: gallery-plugin.php:1780
|
466 |
msgid "Display the Back link"
|
467 |
msgstr "Mostrar enlace Volver"
|
468 |
|
469 |
# @ gallery
|
470 |
+
#: gallery-plugin.php:1786
|
471 |
msgid "Display the Back link in the shortcode"
|
472 |
msgstr "Mostrar enlace Volver codigo corto"
|
473 |
|
474 |
# @ gallery
|
475 |
+
#: gallery-plugin.php:1792
|
476 |
msgid "The Back link text"
|
477 |
msgstr "Texto del enlace volver"
|
478 |
|
479 |
# @ gallery
|
480 |
+
#: gallery-plugin.php:1798
|
481 |
msgid "The Back link URL"
|
482 |
msgstr "URL del enlacw Volver"
|
483 |
|
484 |
# @ gallery
|
485 |
+
#: gallery-plugin.php:1801
|
486 |
msgid "Gallery page (Page with Gallery Template)"
|
487 |
msgstr ""
|
488 |
"Página de la Galeria (planilla otema usado para la pagina de la Galeria)"
|
489 |
|
490 |
# @ gallery
|
491 |
+
#: gallery-plugin.php:1803
|
492 |
msgid "(Full URL to custom page)"
|
493 |
msgstr "(URL completa para a página personalizada)"
|
494 |
|
495 |
# @ gallery
|
496 |
+
#: gallery-plugin.php:1808
|
497 |
msgid "The Read More link text"
|
498 |
msgstr "Texto del enlace leer mas"
|
499 |
|
500 |
+
#: gallery-plugin.php:1814
|
501 |
msgid "Add gallery to the search"
|
502 |
msgstr "Agregar la galeria a la busqueda"
|
503 |
|
504 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
505 |
msgid "Using"
|
506 |
msgstr "Usando"
|
507 |
|
508 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
509 |
msgid "powered by"
|
510 |
msgstr "propulsado por"
|
511 |
|
512 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
513 |
msgid "Activate"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: gallery-plugin.php:1826
|
517 |
msgid "Download"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
msgid "Rename gallery post type"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:1837
|
525 |
msgid ""
|
526 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
527 |
"it now"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: gallery-plugin.php:1838
|
531 |
msgid ""
|
532 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
533 |
"please check settings of your other plugins where 'gallery' post type is used"
|
534 |
msgstr ""
|
535 |
|
536 |
# @ gallery
|
537 |
+
#: gallery-plugin.php:1851
|
538 |
#, fuzzy
|
539 |
msgid "Single gallery view"
|
540 |
msgstr "Slug para la galeria"
|
541 |
|
542 |
+
#: gallery-plugin.php:1854
|
543 |
msgid "Grid"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: gallery-plugin.php:1855
|
547 |
msgid "Masonry"
|
548 |
msgstr ""
|
549 |
|
550 |
# @ gallery
|
551 |
+
#: gallery-plugin.php:1863
|
552 |
#, fuzzy
|
553 |
msgid "Under image"
|
554 |
msgstr "Actualizar imagenes"
|
555 |
|
556 |
+
#: gallery-plugin.php:1864
|
557 |
msgid "By mouse hover"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: gallery-plugin.php:1869
|
561 |
#, fuzzy
|
562 |
msgid "Use pagination for images"
|
563 |
msgstr "Actualizando imagenes"
|
564 |
|
565 |
+
#: gallery-plugin.php:1872
|
566 |
msgid "per page"
|
567 |
msgstr ""
|
568 |
|
569 |
# @ gallery
|
570 |
+
#: gallery-plugin.php:1876
|
571 |
msgid "Lightbox background"
|
572 |
msgstr "Fundo del Lightbox"
|
573 |
|
574 |
# @ gallery
|
575 |
+
#: gallery-plugin.php:1879
|
576 |
msgid "Background transparency (from 0 to 1)"
|
577 |
msgstr "Transparencia del fondo (de 0 a 1)"
|
578 |
|
579 |
+
#: gallery-plugin.php:1885
|
580 |
msgid ""
|
581 |
"Display all images in the lightbox instead of going into a single gallery"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: gallery-plugin.php:1888
|
585 |
#, php-format
|
586 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: gallery-plugin.php:1892
|
590 |
msgid "The lightbox helper"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: gallery-plugin.php:1894
|
594 |
msgid "Do not use"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: gallery-plugin.php:1895
|
598 |
msgid "Button helper"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: gallery-plugin.php:1896
|
602 |
msgid "Thumbnail helper"
|
603 |
msgstr ""
|
604 |
|
605 |
# @ gallery
|
606 |
+
#: gallery-plugin.php:1900
|
607 |
msgid "Display Like buttons in the lightbox"
|
608 |
msgstr "Mostrar botones me gusta en el Lightbox"
|
609 |
|
610 |
# @ gallery
|
611 |
+
#: gallery-plugin.php:1904
|
612 |
msgid "FaceBook"
|
613 |
msgstr "Facebook"
|
614 |
|
615 |
# @ gallery
|
616 |
+
#: gallery-plugin.php:1905
|
617 |
msgid "Twitter"
|
618 |
msgstr "Twitter"
|
619 |
|
620 |
# @ gallery
|
621 |
+
#: gallery-plugin.php:1906
|
622 |
msgid "Pinterest"
|
623 |
msgstr "Pinterest"
|
624 |
|
625 |
# @ gallery
|
626 |
+
#: gallery-plugin.php:1907
|
627 |
msgid "Google +1"
|
628 |
msgstr "Google +1"
|
629 |
|
630 |
# @ gallery
|
631 |
+
#: gallery-plugin.php:1910
|
632 |
#, fuzzy
|
633 |
msgid "Show counter"
|
634 |
msgstr "Intervalo entre las diapositivas"
|
635 |
|
636 |
+
#: gallery-plugin.php:1912
|
637 |
msgid "Align"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: gallery-plugin.php:1914
|
641 |
msgid "left"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: gallery-plugin.php:1921
|
645 |
msgid "Title for lightbox button"
|
646 |
msgstr ""
|
647 |
|
648 |
# @ gallery
|
649 |
+
#: gallery-plugin.php:1927
|
650 |
msgid "Slug for gallery item"
|
651 |
msgstr "Slug para la galeria"
|
652 |
|
653 |
# @ gallery
|
654 |
+
#: gallery-plugin.php:1929
|
655 |
msgid "for any structure of permalinks except the default structure"
|
656 |
msgstr ""
|
657 |
"para qualquier estrutura de los enlaces permanentes, exceto la estrutura "
|
658 |
"predeterninada"
|
659 |
|
660 |
# @ default
|
661 |
+
#: gallery-plugin.php:1955
|
662 |
msgid "Save Changes"
|
663 |
msgstr "Guardar Cambios"
|
664 |
|
665 |
+
#: gallery-plugin.php:1960
|
666 |
msgid ""
|
667 |
"If you install the demo-data, will be created galleries with images, demo-"
|
668 |
"post with available shortcodes and page with a list of all the galleries."
|
669 |
msgstr ""
|
670 |
|
671 |
# @ gallery
|
672 |
+
#: gallery-plugin.php:1994
|
673 |
msgid "FAQ"
|
674 |
msgstr "FAQ"
|
675 |
|
676 |
# @ gallery
|
677 |
+
#: gallery-plugin.php:1995
|
678 |
msgid "Support"
|
679 |
msgstr "Soporte"
|
680 |
|
681 |
+
#: gallery-plugin.php:2032
|
682 |
msgid "Updating images..."
|
683 |
msgstr "Actualizando imagenes"
|
684 |
|
685 |
# @ gallery
|
686 |
+
#: gallery-plugin.php:2033
|
687 |
#, fuzzy
|
688 |
msgid "No image found."
|
689 |
msgstr "Imagen no encontrada"
|
690 |
|
691 |
+
#: gallery-plugin.php:2034
|
692 |
#, fuzzy
|
693 |
msgid "All images are updated."
|
694 |
msgstr "Todas las imgenes an sido actualizados"
|
695 |
|
696 |
+
#: gallery-plugin.php:2035
|
697 |
msgid "Error."
|
698 |
msgstr "Error"
|
699 |
|
700 |
+
#: gallery-plugin.php:2049
|
701 |
msgid ""
|
702 |
"You are about to delete these items from this gallery.\n"
|
703 |
" 'Cancel' to stop, 'OK' to delete."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: gallery-plugin.php:2050
|
707 |
msgid ""
|
708 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
709 |
"switching?"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2051
|
713 |
msgid "Insert Media"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: gallery-plugin.php:2052
|
717 |
msgid "Insert"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: gallery-plugin.php:2064
|
721 |
#, fuzzy
|
722 |
msgid "Learn more"
|
723 |
msgstr "Saber mas."
|
724 |
|
725 |
+
#: gallery-plugin.php:2076
|
726 |
msgid "Install now"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: gallery-plugin.php:2085
|
730 |
msgid "Add multiple gallery categories"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: gallery-plugin.php:2085
|
734 |
msgid ""
|
735 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
736 |
msgstr ""
|
737 |
|
738 |
# @ gallery
|
739 |
+
#: gallery-plugin.php:2405
|
740 |
+
msgid "Download high resolution image"
|
741 |
+
msgstr "Descarga la image de alta resolucion"
|
742 |
+
|
743 |
+
# @ gallery
|
744 |
+
#: gallery-plugin.php:2417
|
745 |
+
msgid "Image"
|
746 |
+
msgstr "Imagen"
|
747 |
+
|
748 |
+
# @ gallery
|
749 |
+
#: gallery-plugin.php:2558
|
750 |
msgid "Image size not defined"
|
751 |
msgstr "Tanaño de imagen no definida"
|
752 |
|
753 |
+
#: gallery-plugin.php:2573
|
754 |
msgid ""
|
755 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
756 |
"manually reload image."
|
758 |
"Solo podemos actualizar archivos PNG, JPEG, GIF, WPMP o XBM. Para otros "
|
759 |
"formatos necesita volver a subir elarchivo."
|
760 |
|
761 |
+
#: gallery-plugin.php:2584
|
762 |
msgid "Image size changes not defined"
|
763 |
msgstr "Tamaño de imagen no esta definida."
|
764 |
|
765 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
766 |
msgid "Invalid path"
|
767 |
msgstr "Ruta incorrecta."
|
768 |
|
769 |
+
#: gallery-plugin.php:2694
|
770 |
msgid "Add images requires JavaScript."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: gallery-plugin.php:2697
|
774 |
msgid "Add Media"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: gallery-plugin.php:2707
|
778 |
msgid "The grid view for the Gallery images requires JavaScript."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: gallery-plugin.php:2707
|
782 |
msgid "Switch to the list view"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: gallery-plugin.php:2734
|
786 |
msgid "List View"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: gallery-plugin.php:2735
|
790 |
msgid "Grid View"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: gallery-plugin.php:2790
|
794 |
msgid "Filter"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: gallery-plugin.php:2794
|
798 |
msgid "Empty Trash"
|
799 |
msgstr ""
|
800 |
|
801 |
# @ gallery
|
802 |
+
#: gallery-plugin.php:2815
|
803 |
#, fuzzy
|
804 |
msgid "No images found"
|
805 |
msgstr "Imagen no encontrada"
|
806 |
|
807 |
+
#: gallery-plugin.php:2867
|
808 |
msgid "Select bulk action"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: gallery-plugin.php:2869
|
812 |
msgid "Bulk Actions"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: gallery-plugin.php:2879
|
816 |
msgid "Apply"
|
817 |
msgstr ""
|
818 |
|
819 |
# @ gallery
|
820 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
821 |
#, fuzzy
|
822 |
msgid "Delete from Gallery"
|
823 |
msgstr "Galeria nueva"
|
824 |
|
825 |
# @ gallery
|
826 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
827 |
#, fuzzy
|
828 |
msgid "Display link to the original file under each image in the lightbox"
|
829 |
msgstr "Exibir la imagen en su tamaño completo en el Lightbox"
|
830 |
|
831 |
+
#: gallery-plugin.php:2908
|
832 |
msgid "Bulk Select"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: gallery-plugin.php:2910
|
836 |
msgid "Cancel Selection"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: gallery-plugin.php:2911
|
840 |
msgid "Delete Selected"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: gallery-plugin.php:2924
|
844 |
msgid "File"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
848 |
msgid "Dimensions"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
852 |
msgid "Alt tag"
|
853 |
msgstr "Etiqueta alternativa"
|
854 |
|
855 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
856 |
msgid ""
|
857 |
"The alt attribute specifies an alternate text for an image, if the image "
|
858 |
"cannot be displayed."
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
862 |
msgid "Custom URL"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
866 |
msgid ""
|
867 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
868 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: gallery-plugin.php:3006
|
872 |
msgid "Deselect"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: gallery-plugin.php:3012
|
876 |
msgid "File name"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: gallery-plugin.php:3013
|
880 |
msgid "File type"
|
881 |
msgstr ""
|
882 |
|
883 |
# @ gallery
|
884 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
885 |
#, fuzzy
|
886 |
msgid "Edit Attachment Info"
|
887 |
msgstr "ID del anexo"
|
888 |
|
889 |
# @ gallery
|
890 |
+
#: gallery-plugin.php:3017
|
891 |
#, fuzzy
|
892 |
msgid "Edit Attachment"
|
893 |
msgstr "ID del anexo"
|
894 |
|
895 |
+
#: gallery-plugin.php:3027
|
896 |
#, fuzzy
|
897 |
msgid "Go Pro"
|
898 |
msgstr "Ir a PRO"
|
899 |
|
900 |
+
#: gallery-plugin.php:3027
|
901 |
msgid "Pro version"
|
902 |
msgstr ""
|
903 |
|
904 |
# @ gallery
|
905 |
+
#: gallery-plugin.php:3030
|
906 |
msgid "This setting is available in Pro version"
|
907 |
msgstr "Esta opcion solo esta disponible en la version Pro"
|
908 |
|
909 |
+
#: gallery-plugin.php:3063
|
910 |
msgid "Edit more details"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: gallery-plugin.php:3098
|
914 |
#, php-format
|
915 |
msgid "Select %s"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: gallery-plugin.php:3111
|
919 |
#, php-format
|
920 |
msgid "Edit “%s”"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
924 |
msgid "Edit"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
928 |
msgid "Trash"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
932 |
msgid "Delete Permanently"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
936 |
#, php-format
|
937 |
msgid "View “%s”"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
941 |
msgid "View"
|
942 |
msgstr ""
|
943 |
|
944 |
# @ gallery
|
945 |
+
#: gallery-plugin.php:3166
|
946 |
#, fuzzy
|
947 |
msgid "Attach"
|
948 |
msgstr "ID del anexo"
|
949 |
|
950 |
+
#: gallery-plugin.php:3172
|
951 |
msgid "Restore"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: gallery-plugin.php:3303
|
955 |
msgid "Warning"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: gallery-plugin.php:3303
|
959 |
msgid "You can add only images to the gallery"
|
960 |
msgstr ""
|
961 |
|
962 |
# @ gallery
|
963 |
+
#: gallery-plugin.php:3345
|
964 |
#, fuzzy
|
965 |
msgid "no title"
|
966 |
msgstr "Título"
|
967 |
|
968 |
# @ gallery
|
969 |
+
#: gallery-plugin.php:3353
|
970 |
#, fuzzy
|
971 |
msgid "Sorry, no gallery found."
|
972 |
msgstr "Disculpe, nada fue encontrado."
|
973 |
|
974 |
# @ gallery
|
975 |
+
#: gallery-plugin.php:3359
|
976 |
#, fuzzy
|
977 |
msgid ""
|
978 |
"Display an album image with the description and the link to a single gallery "
|
981 |
"Si quiere mostrar una descripcion corta con una miniatura de una Galeria en "
|
982 |
"una pagina."
|
983 |
|
984 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
985 |
msgid "Install Demo Data"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
989 |
msgid "Remove Demo Data"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
993 |
msgid "Delete demo-data and restore old plugin settings."
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
997 |
msgid "Yes, install demo data"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
1001 |
msgid "Are you sure you want to install demo data?"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
1005 |
msgid "Yes, remove demo data"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
1009 |
msgid "Are you sure you want to remove demo data?"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
# @ gallery
|
1013 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
1014 |
#, fuzzy
|
1015 |
msgid "No, go back to the settings page"
|
1016 |
msgstr "En la pagina de opciones de este plugin ("
|
1017 |
|
1018 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
1019 |
msgid "Can not get demo data."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
1023 |
msgid "Demo options already installed."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
1027 |
msgid "Demo data successfully installed."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
1031 |
msgid "View post with shortcodes"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
1035 |
msgid "View page with examples"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
1039 |
msgid "Installation of demo data with some errors occurred."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
1043 |
msgid "Posts data is missing."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
1047 |
msgid "Demo data have already been removed."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
1051 |
msgid "Demo data successfully removed."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
1055 |
msgid "Removing demo data with some errors occurred."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
1059 |
msgid "Close notice"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
1063 |
msgid "Install demo data"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
1067 |
msgid "for an acquaintance with the possibilities of the"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
# @ gallery
|
1071 |
+
#, fuzzy
|
1072 |
+
#~ msgid ""
|
1073 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
1074 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
1075 |
+
#~ "theme for the correct work of the Gallery plugin"
|
1076 |
+
#~ msgstr ""
|
1077 |
+
#~ "Os siguientes archivos \"gallery-template.php\" y \"gallery-single-"
|
1078 |
+
#~ "template.php\" no se encontraron en el directorio de tema utilizado. Por "
|
1079 |
+
#~ "favor, copie los del directorio `/wp-content/plugins/gallery-plugin/"
|
1080 |
+
#~ "template/` al directorio de su tema para que el plugin Galeria funcione "
|
1081 |
+
#~ "corretamente"
|
1082 |
+
|
1083 |
# @ gallery
|
1084 |
#~ msgid "Select a border color"
|
1085 |
#~ msgstr "Escoja el color del borde"
|
languages/gallery-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-plugin-fr_FR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: gallery
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -18,71 +18,60 @@ msgstr ""
|
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: gallery-plugin.php:
|
22 |
-
#: gallery-plugin.php:
|
23 |
msgid "Settings"
|
24 |
msgstr "Paramètres"
|
25 |
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "See images »"
|
28 |
msgstr "Voir les images »"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Return to all albums"
|
32 |
msgstr "Revenir à tous les albums"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
-
#, php-format
|
36 |
-
msgid ""
|
37 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
38 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
39 |
-
"theme for the correct work of the Gallery plugin"
|
40 |
-
msgstr ""
|
41 |
-
"Les fichiers suivants '%s' et '%s' n'ont pas été trouvés dans le répertoire "
|
42 |
-
"de votre thème. Merci de les copier depuis le répertoire '%s' dans le "
|
43 |
-
"répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
44 |
-
|
45 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galeries"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galerie"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Ajouter une nouvelle galerie"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Modifier la galerie"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Nouvelle galerie"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Voir la galerie"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "Search Galleries"
|
71 |
msgstr "Rechercher une galerie"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "No Gallery found"
|
75 |
msgstr "Pas de galeries trouvées"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Gallery Shortcode"
|
79 |
msgstr "Code court de la galerie"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Gallery Categories"
|
83 |
msgstr "Catégories de galeries"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
#, php-format
|
87 |
msgid ""
|
88 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -90,7 +79,7 @@ msgstr ""
|
|
90 |
"Si vous voulez ajouter la galerie dans une page ou un article, utiliser le "
|
91 |
"bouton %s"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
#, php-format
|
95 |
msgid ""
|
96 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -101,14 +90,14 @@ msgstr ""
|
|
101 |
"le bouton %s dans la zone d'édition du contenu en mode visuel. Si le bouton "
|
102 |
"n'est pas visible, vous pouvez utiliser le code court ci-dessous"
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid ""
|
106 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
107 |
msgstr ""
|
108 |
"Ajouter ce code court à une page, un article ou un widget pour afficher une "
|
109 |
"seule galerie"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid ""
|
113 |
"Use this shortcode to display an album image with the description and the "
|
114 |
"link to a single gallery page"
|
@@ -116,90 +105,82 @@ msgstr ""
|
|
116 |
"Utilisez ce code court pour afficher une image représentant l'album avec la "
|
117 |
"description et un lien vers une page contenant la galerie"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Short display"
|
121 |
msgstr "Affichage court"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Most Used"
|
125 |
msgstr "Les plus utiliser"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Default"
|
129 |
msgstr "Défaut"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Add New Gallery Category"
|
133 |
msgstr "Ajouter une nouvelle catégorie de galerie"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "Install plugin"
|
137 |
msgstr "Installer l'extension"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Gallery Category"
|
141 |
msgstr "Catégories de galeries"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
-
msgid "Download high resolution image"
|
145 |
-
msgstr "Télécharger l'image en haute résolution"
|
146 |
-
|
147 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
148 |
-
msgid "Image"
|
149 |
-
msgstr "Image "
|
150 |
-
|
151 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
152 |
msgid "Sorry, nothing found."
|
153 |
msgstr "Désolé, rien n'a été trouvé"
|
154 |
|
155 |
-
#: gallery-plugin.php:
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "Title"
|
158 |
msgstr "Titre"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Author"
|
162 |
msgstr "Auteur"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
msgid "Shortcode"
|
166 |
msgstr "Code court"
|
167 |
|
168 |
-
#: gallery-plugin.php:
|
169 |
msgid "Photos"
|
170 |
msgstr "Photos"
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Date"
|
174 |
msgstr "Date"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "Settings are saved"
|
178 |
msgstr "Paramètres enregistrés."
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "All plugin settings were restored."
|
182 |
msgstr ""
|
183 |
"Toutes les valeurs par défaut des paramètres de l'extension ont été remises."
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Gallery Settings"
|
187 |
msgstr "Paramètres de la galerie"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Custom code"
|
191 |
msgstr "Code personnalisé"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Go PRO"
|
195 |
msgstr "Choisir la version PRO"
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Please enable JavaScript to use the option to renew images."
|
199 |
msgstr ""
|
200 |
"Merci d'activer JavaScript pour utiliser l'option de mise à jour des images."
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
#, php-format
|
204 |
msgid ""
|
205 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -211,11 +192,16 @@ msgstr ""
|
|
211 |
"n'est pas visible, vous pouvez utiliser le code court %s où * représente "
|
212 |
"l'ID de la galerie"
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
215 |
msgid "Number of images in the row"
|
216 |
msgstr "Nombre d'images par ligne"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid ""
|
220 |
"The number of images per row can be less depending on the width of the "
|
221 |
"parent block"
|
@@ -223,11 +209,11 @@ msgstr ""
|
|
223 |
"Il peut y avoir moins d'images par ligne en fonction de la largeur du bloc "
|
224 |
"parent"
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Image size"
|
228 |
msgstr "Taille de l'image"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid ""
|
232 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
233 |
"upload a new photo."
|
@@ -235,376 +221,366 @@ msgstr ""
|
|
235 |
"WordPress créera une copie de la miniature avec les dimensions spécifiées "
|
236 |
"quand vous envoyez une nouvelle photo."
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "For the album cover"
|
240 |
msgstr "Pour la vignette de l'album"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "width x height"
|
244 |
msgstr "largeur x hauteur"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "in px"
|
248 |
msgstr "en px"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "For thumbnails"
|
252 |
msgstr "Pour les vignettes"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "Update images for gallery"
|
256 |
msgstr "Mettre à jour les images pour la galerie"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Close"
|
260 |
msgstr "Fermer"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
msgid "For images in the lightbox"
|
264 |
msgstr "Pour les images dans la boite"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Display a full size image in the lightbox"
|
268 |
msgstr "Afficher une image en taille normale dans la boite"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Crop position"
|
272 |
msgstr "Point de base"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "center"
|
276 |
msgstr "centré"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Horizontal"
|
280 |
msgstr "Horizontale"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Vertical"
|
284 |
msgstr "Verticale"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
289 |
msgstr ""
|
290 |
"Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "Unlock premium options by upgrading to Pro version"
|
294 |
msgstr "Débloquer les options premium en migrant vers la version PRO."
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
msgid "Start Your Trial"
|
298 |
msgstr "Débuter votre essai"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "or"
|
302 |
msgstr "ou"
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Learn More"
|
306 |
msgstr "En savoir plus"
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
-
#, fuzzy
|
310 |
msgid "Display image title"
|
311 |
-
msgstr "Afficher le
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
-
#, fuzzy
|
315 |
msgid ""
|
316 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
317 |
msgstr ""
|
318 |
-
"Si vous voulez juste afficher
|
|
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Images with border"
|
322 |
msgstr "Image avec bordure"
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "Border width in px, just numbers"
|
326 |
msgstr "Taille de la bordure en pixel, juste le nombre"
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "Sort images"
|
330 |
msgstr "Trier les images"
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "by Attachment ID"
|
334 |
msgstr "par ID du fichier"
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "by Image Name"
|
338 |
msgstr "par nom de l'image "
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "by Date"
|
342 |
msgstr "par date"
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid "by Sorting order in the Gallery"
|
346 |
msgstr "par ordre de tri dans la galerie"
|
347 |
|
348 |
-
#: gallery-plugin.php:
|
349 |
msgid "Random"
|
350 |
msgstr "Aléatoire"
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "The images sort order"
|
354 |
msgstr "L'ordre des images"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
358 |
msgstr ""
|
359 |
"ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, "
|
360 |
"b, c)"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid ""
|
364 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
365 |
msgstr ""
|
366 |
"DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "Sort galleries"
|
370 |
msgstr "Trier les galeries"
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "by Gallery ID"
|
374 |
msgstr "par galerie ID"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "by Title"
|
378 |
msgstr "par titre"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "by Last modified date"
|
382 |
msgstr "par date de dernière modification"
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "by Comment count"
|
386 |
msgstr "par nombre de commentaires"
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "by Sorting order (the input field for sorting order)"
|
390 |
msgstr "par ordre de tri (le champ pour définir le critère de tri)"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "by Author"
|
394 |
msgstr "par auteur"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "The galleries sort order"
|
398 |
msgstr "L'ordre de tri des galleries"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "Start slideshow"
|
402 |
msgstr "Démarrer le diaporama"
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
msgid "Slideshow interval"
|
406 |
msgstr "Intervalle de transition pour le diaporama"
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
msgid "(ms)"
|
410 |
msgstr "(ms)"
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
msgid "Use single lightbox for multiple galleries on one page"
|
414 |
msgstr "Utiliser un seul diaporama pour plusieurs galeries sur une seule page"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "Display the Back link"
|
418 |
msgstr "Afficher le lien de retour"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "Display the Back link in the shortcode"
|
422 |
msgstr "Afficher le lien de retour dans le code court"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "The Back link text"
|
426 |
msgstr "Le texte pour le lien de retour"
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "The Back link URL"
|
430 |
msgstr "L'URL pour le lien de retour"
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
msgid "Gallery page (Page with Gallery Template)"
|
434 |
msgstr "Page de la galerie (Page avec le modèle de galerie)"
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
msgid "(Full URL to custom page)"
|
438 |
msgstr "(URL complète pour la page spécifique)"
|
439 |
|
440 |
-
#: gallery-plugin.php:
|
441 |
msgid "The Read More link text"
|
442 |
msgstr "Texte pour le lien \"Read More\""
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "Add gallery to the search"
|
446 |
msgstr "Ajouter les galeries à la recherche"
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "Using"
|
450 |
msgstr "Utilisant"
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "powered by"
|
454 |
msgstr "fournis par"
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
msgid "Activate"
|
458 |
msgstr "Activer"
|
459 |
|
460 |
-
#: gallery-plugin.php:
|
461 |
msgid "Download"
|
462 |
msgstr "Télécharger"
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
-
msgid "Rewrite templates after update"
|
466 |
-
msgstr "Modifier les modèles après la mise à jour"
|
467 |
-
|
468 |
-
#: gallery-plugin.php:1929
|
469 |
-
#, php-format
|
470 |
-
msgid ""
|
471 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
472 |
-
"theme folder and You don't want to rewrite them"
|
473 |
-
msgstr ""
|
474 |
-
"Décochez la case si vous avez modifié le fichier '%s' ou le fichier '%s' "
|
475 |
-
"dans le répertoire de votre thème et que vous souhaitez garder votre version"
|
476 |
-
|
477 |
-
#: gallery-plugin.php:1934
|
478 |
msgid "Rename gallery post type"
|
479 |
-
msgstr ""
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid ""
|
483 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
484 |
"it now"
|
485 |
msgstr ""
|
|
|
|
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
msgid ""
|
489 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
490 |
"please check settings of your other plugins where 'gallery' post type is used"
|
491 |
msgstr ""
|
|
|
|
|
|
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
msgid "Single gallery view"
|
495 |
msgstr "Vue pour une seule galerie"
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
msgid "Grid"
|
499 |
msgstr "Grille"
|
500 |
|
501 |
-
#: gallery-plugin.php:
|
502 |
msgid "Masonry"
|
503 |
msgstr "Mur"
|
504 |
|
505 |
-
#: gallery-plugin.php:
|
506 |
msgid "Under image"
|
507 |
msgstr "Sous l'image"
|
508 |
|
509 |
-
#: gallery-plugin.php:
|
510 |
msgid "By mouse hover"
|
511 |
msgstr "par survol de la souris"
|
512 |
|
513 |
-
#: gallery-plugin.php:
|
514 |
msgid "Use pagination for images"
|
515 |
msgstr "Utiliser la pagination pour les images"
|
516 |
|
517 |
-
#: gallery-plugin.php:
|
518 |
msgid "per page"
|
519 |
msgstr "par page"
|
520 |
|
521 |
-
#: gallery-plugin.php:
|
522 |
msgid "Lightbox background"
|
523 |
msgstr "Fond de la boite"
|
524 |
|
525 |
-
#: gallery-plugin.php:
|
526 |
msgid "Background transparency (from 0 to 1)"
|
527 |
msgstr "Transparence du fond (de 0 à 1)"
|
528 |
|
529 |
-
#: gallery-plugin.php:
|
530 |
msgid ""
|
531 |
"Display all images in the lightbox instead of going into a single gallery"
|
532 |
msgstr ""
|
533 |
"Afficher toutes les images dans une 'lightbox' au lieu de d'une seule galerie"
|
534 |
|
535 |
-
#: gallery-plugin.php:
|
536 |
#, php-format
|
537 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
538 |
msgstr ""
|
539 |
"Quand vous utilisez le modèle de galerie ou le code court avec le paramètre "
|
540 |
"'%s'"
|
541 |
|
542 |
-
#: gallery-plugin.php:
|
543 |
msgid "The lightbox helper"
|
544 |
msgstr "L'aide de lightbox"
|
545 |
|
546 |
-
#: gallery-plugin.php:
|
547 |
msgid "Do not use"
|
548 |
msgstr "Ne pas utiliser"
|
549 |
|
550 |
-
#: gallery-plugin.php:
|
551 |
msgid "Button helper"
|
552 |
msgstr "Bouton pour l'assistant"
|
553 |
|
554 |
-
#: gallery-plugin.php:
|
555 |
msgid "Thumbnail helper"
|
556 |
msgstr "Assistant de la galerie"
|
557 |
|
558 |
-
#: gallery-plugin.php:
|
559 |
msgid "Display Like buttons in the lightbox"
|
560 |
msgstr "Afficher les boutons des réseaux sociaux dans la boite"
|
561 |
|
562 |
-
#: gallery-plugin.php:
|
563 |
msgid "FaceBook"
|
564 |
msgstr "FaceBook"
|
565 |
|
566 |
-
#: gallery-plugin.php:
|
567 |
msgid "Twitter"
|
568 |
msgstr "Twitter"
|
569 |
|
570 |
-
#: gallery-plugin.php:
|
571 |
msgid "Pinterest"
|
572 |
msgstr "Pinterest"
|
573 |
|
574 |
-
#: gallery-plugin.php:
|
575 |
msgid "Google +1"
|
576 |
msgstr "Google +1"
|
577 |
|
578 |
-
#: gallery-plugin.php:
|
579 |
-
#, fuzzy
|
580 |
msgid "Show counter"
|
581 |
-
msgstr "
|
582 |
|
583 |
-
#: gallery-plugin.php:
|
584 |
msgid "Align"
|
585 |
-
msgstr ""
|
586 |
|
587 |
-
#: gallery-plugin.php:
|
588 |
msgid "left"
|
589 |
msgstr "gauche"
|
590 |
|
591 |
-
#: gallery-plugin.php:
|
592 |
msgid "Title for lightbox button"
|
593 |
msgstr "Titre pour le bouton lightbox"
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "Slug for gallery item"
|
597 |
msgstr "Racine pour les pages des galeries"
|
598 |
|
599 |
-
#: gallery-plugin.php:
|
600 |
msgid "for any structure of permalinks except the default structure"
|
601 |
msgstr "pour toute forme de permaliens à l'exception de la forme par défaut"
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "Save Changes"
|
605 |
msgstr "Enregistrer les modifications"
|
606 |
|
607 |
-
#: gallery-plugin.php:
|
608 |
msgid ""
|
609 |
"If you install the demo-data, will be created galleries with images, demo-"
|
610 |
"post with available shortcodes and page with a list of all the galleries."
|
@@ -613,31 +589,31 @@ msgstr ""
|
|
613 |
"images, des articles avec les différents codes courts, des pages avec des "
|
614 |
"listes de galeries seront créés."
|
615 |
|
616 |
-
#: gallery-plugin.php:
|
617 |
msgid "FAQ"
|
618 |
msgstr "FAQ"
|
619 |
|
620 |
-
#: gallery-plugin.php:
|
621 |
msgid "Support"
|
622 |
msgstr "Soutien"
|
623 |
|
624 |
-
#: gallery-plugin.php:
|
625 |
msgid "Updating images..."
|
626 |
msgstr "Mise à jour des images..."
|
627 |
|
628 |
-
#: gallery-plugin.php:
|
629 |
msgid "No image found."
|
630 |
msgstr "Pas d'image trouvée."
|
631 |
|
632 |
-
#: gallery-plugin.php:
|
633 |
msgid "All images are updated."
|
634 |
msgstr "Toutes les images ont été mises à jour."
|
635 |
|
636 |
-
#: gallery-plugin.php:
|
637 |
msgid "Error."
|
638 |
msgstr "Erreur."
|
639 |
|
640 |
-
#: gallery-plugin.php:
|
641 |
msgid ""
|
642 |
"You are about to delete these items from this gallery.\n"
|
643 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -645,7 +621,7 @@ msgstr ""
|
|
645 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
646 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
647 |
|
648 |
-
#: gallery-plugin.php:
|
649 |
msgid ""
|
650 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
651 |
"switching?"
|
@@ -653,38 +629,46 @@ msgstr ""
|
|
653 |
"ou plus! Nous ne garantissons pas que notre extension fonctionne "
|
654 |
"correctement. Merci de mettre à jour votre version de WordPress."
|
655 |
|
656 |
-
#: gallery-plugin.php:
|
657 |
msgid "Insert Media"
|
658 |
msgstr "Insérer un média"
|
659 |
|
660 |
-
#: gallery-plugin.php:
|
661 |
msgid "Insert"
|
662 |
msgstr "Insérer"
|
663 |
|
664 |
-
#: gallery-plugin.php:
|
665 |
msgid "Learn more"
|
666 |
msgstr "En savoir plus"
|
667 |
|
668 |
-
#: gallery-plugin.php:
|
669 |
msgid "Install now"
|
670 |
msgstr "Installé maintenant"
|
671 |
|
672 |
-
#: gallery-plugin.php:
|
673 |
msgid "Add multiple gallery categories"
|
674 |
msgstr "Ajouter des catégories de galeries"
|
675 |
|
676 |
-
#: gallery-plugin.php:
|
677 |
msgid ""
|
678 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
679 |
msgstr ""
|
680 |
"Installer l'extension 'Gallery Categories' pour ajouter un nombre infini de "
|
681 |
"catégories."
|
682 |
|
683 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
684 |
msgid "Image size not defined"
|
685 |
msgstr "Taille de l'image non définie"
|
686 |
|
687 |
-
#: gallery-plugin.php:
|
688 |
msgid ""
|
689 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
690 |
"manually reload image."
|
@@ -692,97 +676,97 @@ msgstr ""
|
|
692 |
"Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
|
693 |
"WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
694 |
|
695 |
-
#: gallery-plugin.php:
|
696 |
msgid "Image size changes not defined"
|
697 |
msgstr "La modification de la taille n'est pas définie"
|
698 |
|
699 |
-
#: gallery-plugin.php:
|
700 |
msgid "Invalid path"
|
701 |
msgstr "Chemin invalide"
|
702 |
|
703 |
-
#: gallery-plugin.php:
|
704 |
msgid "Add images requires JavaScript."
|
705 |
msgstr "Ajouter des images nécessite Java-script."
|
706 |
|
707 |
-
#: gallery-plugin.php:
|
708 |
msgid "Add Media"
|
709 |
msgstr "Ajouter un média"
|
710 |
|
711 |
-
#: gallery-plugin.php:
|
712 |
msgid "The grid view for the Gallery images requires JavaScript."
|
713 |
msgstr ""
|
714 |
"La vue en mode grille pour les images des galeries nécessite Java-script."
|
715 |
|
716 |
-
#: gallery-plugin.php:
|
717 |
msgid "Switch to the list view"
|
718 |
msgstr "Basculer vers une vue en mode liste"
|
719 |
|
720 |
-
#: gallery-plugin.php:
|
721 |
msgid "List View"
|
722 |
msgstr "Vue en mode liste"
|
723 |
|
724 |
-
#: gallery-plugin.php:
|
725 |
msgid "Grid View"
|
726 |
msgstr "Vue en mode grille"
|
727 |
|
728 |
-
#: gallery-plugin.php:
|
729 |
msgid "Filter"
|
730 |
msgstr "Filtrer"
|
731 |
|
732 |
-
#: gallery-plugin.php:
|
733 |
msgid "Empty Trash"
|
734 |
msgstr "Vider la corbeille"
|
735 |
|
736 |
-
#: gallery-plugin.php:
|
737 |
msgid "No images found"
|
738 |
msgstr "Pas d'image trouvée"
|
739 |
|
740 |
-
#: gallery-plugin.php:
|
741 |
msgid "Select bulk action"
|
742 |
msgstr "Sélectionne l'action en masse"
|
743 |
|
744 |
-
#: gallery-plugin.php:
|
745 |
msgid "Bulk Actions"
|
746 |
msgstr "Actions en masse"
|
747 |
|
748 |
-
#: gallery-plugin.php:
|
749 |
msgid "Apply"
|
750 |
msgstr "Appliquer"
|
751 |
|
752 |
-
#: gallery-plugin.php:
|
753 |
msgid "Delete from Gallery"
|
754 |
msgstr "Supprimer de la galerie"
|
755 |
|
756 |
-
#: gallery-plugin.php:
|
757 |
msgid "Display link to the original file under each image in the lightbox"
|
758 |
msgstr ""
|
759 |
"Afficher un lien vers l'image d'origine sous chaque image dans la lightbox"
|
760 |
|
761 |
-
#: gallery-plugin.php:
|
762 |
msgid "Bulk Select"
|
763 |
msgstr "Sélection en masse"
|
764 |
|
765 |
-
#: gallery-plugin.php:
|
766 |
msgid "Cancel Selection"
|
767 |
msgstr "Annuler la sélection"
|
768 |
|
769 |
-
#: gallery-plugin.php:
|
770 |
msgid "Delete Selected"
|
771 |
msgstr "Supprimer la sélection"
|
772 |
|
773 |
-
#: gallery-plugin.php:
|
774 |
msgid "File"
|
775 |
msgstr "Fichier"
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid "Dimensions"
|
779 |
msgstr "Dimensions"
|
780 |
|
781 |
-
#: gallery-plugin.php:
|
782 |
msgid "Alt tag"
|
783 |
msgstr "Tag Alt"
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid ""
|
787 |
"The alt attribute specifies an alternate text for an image, if the image "
|
788 |
"cannot be displayed."
|
@@ -790,11 +774,11 @@ msgstr ""
|
|
790 |
"L'attribut 'alt' permet de définir un texte alternatif pour une image, quand "
|
791 |
"celle-ci ne peux pas être affichée."
|
792 |
|
793 |
-
#: gallery-plugin.php:
|
794 |
msgid "Custom URL"
|
795 |
msgstr "URL personnalisée"
|
796 |
|
797 |
-
#: gallery-plugin.php:
|
798 |
msgid ""
|
799 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
800 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
@@ -803,98 +787,98 @@ msgstr ""
|
|
803 |
"rempli) ou bien l'image sera ouverte dans une 'lightbox' (si le champ est "
|
804 |
"vide)"
|
805 |
|
806 |
-
#: gallery-plugin.php:
|
807 |
msgid "Deselect"
|
808 |
msgstr "Désélectionner"
|
809 |
|
810 |
-
#: gallery-plugin.php:
|
811 |
msgid "File name"
|
812 |
msgstr "Nom du fichier"
|
813 |
|
814 |
-
#: gallery-plugin.php:
|
815 |
msgid "File type"
|
816 |
msgstr "Type de fichier"
|
817 |
|
818 |
-
#: gallery-plugin.php:
|
819 |
msgid "Edit Attachment Info"
|
820 |
msgstr "Modifier les informations du document"
|
821 |
|
822 |
-
#: gallery-plugin.php:
|
823 |
msgid "Edit Attachment"
|
824 |
msgstr "Modifier le document"
|
825 |
|
826 |
-
#: gallery-plugin.php:
|
827 |
msgid "Go Pro"
|
828 |
msgstr "Passer à la version PRO"
|
829 |
|
830 |
-
#: gallery-plugin.php:
|
831 |
msgid "Pro version"
|
832 |
msgstr "version PRO"
|
833 |
|
834 |
-
#: gallery-plugin.php:
|
835 |
msgid "This setting is available in Pro version"
|
836 |
msgstr "Ce paramètre est disponible dans la version Pro"
|
837 |
|
838 |
-
#: gallery-plugin.php:
|
839 |
msgid "Edit more details"
|
840 |
msgstr "Modifier plus de détails"
|
841 |
|
842 |
-
#: gallery-plugin.php:
|
843 |
#, php-format
|
844 |
msgid "Select %s"
|
845 |
msgstr "Sélectionner %s"
|
846 |
|
847 |
-
#: gallery-plugin.php:
|
848 |
#, php-format
|
849 |
msgid "Edit “%s”"
|
850 |
msgstr "Pré-visualiser “%s”"
|
851 |
|
852 |
-
#: gallery-plugin.php:
|
853 |
msgid "Edit"
|
854 |
msgstr "Modifier"
|
855 |
|
856 |
-
#: gallery-plugin.php:
|
857 |
msgid "Trash"
|
858 |
msgstr "Poubelle"
|
859 |
|
860 |
-
#: gallery-plugin.php:
|
861 |
msgid "Delete Permanently"
|
862 |
msgstr "Supprimer de manière définitive"
|
863 |
|
864 |
-
#: gallery-plugin.php:
|
865 |
#, php-format
|
866 |
msgid "View “%s”"
|
867 |
msgstr "Pré-visualiser “%s”"
|
868 |
|
869 |
-
#: gallery-plugin.php:
|
870 |
msgid "View"
|
871 |
msgstr "Voir"
|
872 |
|
873 |
-
#: gallery-plugin.php:
|
874 |
msgid "Attach"
|
875 |
msgstr "Attacher"
|
876 |
|
877 |
-
#: gallery-plugin.php:
|
878 |
msgid "Restore"
|
879 |
msgstr "Remettre"
|
880 |
|
881 |
-
#: gallery-plugin.php:
|
882 |
msgid "Warning"
|
883 |
msgstr "Avertissement"
|
884 |
|
885 |
-
#: gallery-plugin.php:
|
886 |
msgid "You can add only images to the gallery"
|
887 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
888 |
|
889 |
-
#: gallery-plugin.php:
|
890 |
msgid "no title"
|
891 |
msgstr "Pas de titre"
|
892 |
|
893 |
-
#: gallery-plugin.php:
|
894 |
msgid "Sorry, no gallery found."
|
895 |
msgstr "Désolé, rien n'a été trouvé."
|
896 |
|
897 |
-
#: gallery-plugin.php:
|
898 |
msgid ""
|
899 |
"Display an album image with the description and the link to a single gallery "
|
900 |
"page"
|
@@ -902,96 +886,117 @@ msgstr ""
|
|
902 |
"Afficher une image pour l'album avec la description et un lien vers une page "
|
903 |
"contenant la galerie"
|
904 |
|
905 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
906 |
msgid "Install Demo Data"
|
907 |
msgstr "Installé les données de démonstration"
|
908 |
|
909 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
910 |
msgid "Remove Demo Data"
|
911 |
msgstr "Supprimer les données de démonstration"
|
912 |
|
913 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
914 |
msgid "Delete demo-data and restore old plugin settings."
|
915 |
msgstr ""
|
916 |
"Supprimer les données de démonstration et remettre le paramétrage antérieur "
|
917 |
"de l'extension."
|
918 |
|
919 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
920 |
msgid "Yes, install demo data"
|
921 |
msgstr "Oui, installer les données de démonstration"
|
922 |
|
923 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
924 |
msgid "Are you sure you want to install demo data?"
|
925 |
msgstr "Êtes vous sûr de vouloir installer les données de démonstration ?"
|
926 |
|
927 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
928 |
msgid "Yes, remove demo data"
|
929 |
msgstr "Oui, supprimer les données de démonstration"
|
930 |
|
931 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
932 |
msgid "Are you sure you want to remove demo data?"
|
933 |
msgstr "Êtes vous sûr de vouloir supprimer les données de démonstration ?"
|
934 |
|
935 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
936 |
msgid "No, go back to the settings page"
|
937 |
msgstr "Non, retourner à la page des paramètres"
|
938 |
|
939 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
940 |
msgid "Can not get demo data."
|
941 |
msgstr "Impossible d'obtenir les données de démonstration."
|
942 |
|
943 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
944 |
msgid "Demo options already installed."
|
945 |
msgstr "Les données de démonstration sont déjà installées."
|
946 |
|
947 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
948 |
msgid "Demo data successfully installed."
|
949 |
msgstr "Les données de démonstration ont été installées avec succès."
|
950 |
|
951 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
952 |
msgid "View post with shortcodes"
|
953 |
msgstr "Voir les articles avec les codes courts"
|
954 |
|
955 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
956 |
msgid "View page with examples"
|
957 |
msgstr "Voir les pages avec les exemples"
|
958 |
|
959 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
960 |
msgid "Installation of demo data with some errors occurred."
|
961 |
msgstr ""
|
962 |
"Des erreurs sont survenues lors de l'installation des données de "
|
963 |
"démonstration."
|
964 |
|
965 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
966 |
msgid "Posts data is missing."
|
967 |
msgstr "Les données de l'article sont absentes."
|
968 |
|
969 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
970 |
msgid "Demo data have already been removed."
|
971 |
msgstr "Les données de démonstration ont déjà été supprimées."
|
972 |
|
973 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
974 |
msgid "Demo data successfully removed."
|
975 |
msgstr "Les données de démonstration ont été supprimées."
|
976 |
|
977 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
978 |
msgid "Removing demo data with some errors occurred."
|
979 |
msgstr ""
|
980 |
"Des erreurs sont survenues lors de la suppression des données de "
|
981 |
"démonstration."
|
982 |
|
983 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
984 |
msgid "Close notice"
|
985 |
msgstr "Fermer l'avertissement"
|
986 |
|
987 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
988 |
msgid "Install demo data"
|
989 |
msgstr "Installer les données de démonstration"
|
990 |
|
991 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
992 |
msgid "for an acquaintance with the possibilities of the"
|
993 |
msgstr "pour une vision des possibilités de "
|
994 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
#~ msgid "Advertisement"
|
996 |
#~ msgstr "Publicité"
|
997 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: gallery-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:19+0300\n"
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
22 |
+
#: gallery-plugin.php:2010
|
23 |
msgid "Settings"
|
24 |
msgstr "Paramètres"
|
25 |
|
26 |
+
#: gallery-plugin.php:139
|
27 |
msgid "See images »"
|
28 |
msgstr "Voir les images »"
|
29 |
|
30 |
+
#: gallery-plugin.php:142
|
31 |
msgid "Return to all albums"
|
32 |
msgstr "Revenir à tous les albums"
|
33 |
|
34 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Galleries"
|
36 |
msgstr "Galeries"
|
37 |
|
38 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
39 |
msgid "Gallery"
|
40 |
msgstr "Galerie"
|
41 |
|
42 |
+
#: gallery-plugin.php:322
|
43 |
msgid "Add New Gallery"
|
44 |
msgstr "Ajouter une nouvelle galerie"
|
45 |
|
46 |
+
#: gallery-plugin.php:323
|
47 |
msgid "Edit Gallery"
|
48 |
msgstr "Modifier la galerie"
|
49 |
|
50 |
+
#: gallery-plugin.php:324
|
51 |
msgid "New Gallery"
|
52 |
msgstr "Nouvelle galerie"
|
53 |
|
54 |
+
#: gallery-plugin.php:325
|
55 |
msgid "View Gallery"
|
56 |
msgstr "Voir la galerie"
|
57 |
|
58 |
+
#: gallery-plugin.php:326
|
59 |
msgid "Search Galleries"
|
60 |
msgstr "Rechercher une galerie"
|
61 |
|
62 |
+
#: gallery-plugin.php:327
|
63 |
msgid "No Gallery found"
|
64 |
msgstr "Pas de galeries trouvées"
|
65 |
|
66 |
+
#: gallery-plugin.php:388
|
67 |
msgid "Gallery Shortcode"
|
68 |
msgstr "Code court de la galerie"
|
69 |
|
70 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
71 |
msgid "Gallery Categories"
|
72 |
msgstr "Catégories de galeries"
|
73 |
|
74 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
75 |
#, php-format
|
76 |
msgid ""
|
77 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
79 |
"Si vous voulez ajouter la galerie dans une page ou un article, utiliser le "
|
80 |
"bouton %s"
|
81 |
|
82 |
+
#: gallery-plugin.php:405
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
90 |
"le bouton %s dans la zone d'édition du contenu en mode visuel. Si le bouton "
|
91 |
"n'est pas visible, vous pouvez utiliser le code court ci-dessous"
|
92 |
|
93 |
+
#: gallery-plugin.php:411
|
94 |
msgid ""
|
95 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
96 |
msgstr ""
|
97 |
"Ajouter ce code court à une page, un article ou un widget pour afficher une "
|
98 |
"seule galerie"
|
99 |
|
100 |
+
#: gallery-plugin.php:414
|
101 |
msgid ""
|
102 |
"Use this shortcode to display an album image with the description and the "
|
103 |
"link to a single gallery page"
|
105 |
"Utilisez ce code court pour afficher une image représentant l'album avec la "
|
106 |
"description et un lien vers une page contenant la galerie"
|
107 |
|
108 |
+
#: gallery-plugin.php:416
|
109 |
msgid "Short display"
|
110 |
msgstr "Affichage court"
|
111 |
|
112 |
+
#: gallery-plugin.php:433
|
113 |
msgid "Most Used"
|
114 |
msgstr "Les plus utiliser"
|
115 |
|
116 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
117 |
msgid "Default"
|
118 |
msgstr "Défaut"
|
119 |
|
120 |
+
#: gallery-plugin.php:443
|
121 |
msgid "Add New Gallery Category"
|
122 |
msgstr "Ajouter une nouvelle catégorie de galerie"
|
123 |
|
124 |
+
#: gallery-plugin.php:448
|
125 |
msgid "Install plugin"
|
126 |
msgstr "Installer l'extension"
|
127 |
|
128 |
+
#: gallery-plugin.php:610
|
129 |
msgid "Gallery Category"
|
130 |
msgstr "Catégories de galeries"
|
131 |
|
132 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Sorry, nothing found."
|
134 |
msgstr "Désolé, rien n'a été trouvé"
|
135 |
|
136 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
137 |
+
#: gallery-plugin.php:3128
|
138 |
msgid "Title"
|
139 |
msgstr "Titre"
|
140 |
|
141 |
+
#: gallery-plugin.php:1356
|
142 |
msgid "Author"
|
143 |
msgstr "Auteur"
|
144 |
|
145 |
+
#: gallery-plugin.php:1357
|
146 |
msgid "Shortcode"
|
147 |
msgstr "Code court"
|
148 |
|
149 |
+
#: gallery-plugin.php:1358
|
150 |
msgid "Photos"
|
151 |
msgstr "Photos"
|
152 |
|
153 |
+
#: gallery-plugin.php:1359
|
154 |
msgid "Date"
|
155 |
msgstr "Date"
|
156 |
|
157 |
+
#: gallery-plugin.php:1547
|
158 |
msgid "Settings are saved"
|
159 |
msgstr "Paramètres enregistrés."
|
160 |
|
161 |
+
#: gallery-plugin.php:1564
|
162 |
msgid "All plugin settings were restored."
|
163 |
msgstr ""
|
164 |
"Toutes les valeurs par défaut des paramètres de l'extension ont été remises."
|
165 |
|
166 |
+
#: gallery-plugin.php:1576
|
167 |
msgid "Gallery Settings"
|
168 |
msgstr "Paramètres de la galerie"
|
169 |
|
170 |
+
#: gallery-plugin.php:1579
|
171 |
msgid "Custom code"
|
172 |
msgstr "Code personnalisé"
|
173 |
|
174 |
+
#: gallery-plugin.php:1580
|
175 |
msgid "Go PRO"
|
176 |
msgstr "Choisir la version PRO"
|
177 |
|
178 |
+
#: gallery-plugin.php:1590
|
179 |
msgid "Please enable JavaScript to use the option to renew images."
|
180 |
msgstr ""
|
181 |
"Merci d'activer JavaScript pour utiliser l'option de mise à jour des images."
|
182 |
|
183 |
+
#: gallery-plugin.php:1602
|
184 |
#, php-format
|
185 |
msgid ""
|
186 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
192 |
"n'est pas visible, vous pouvez utiliser le code court %s où * représente "
|
193 |
"l'ID de la galerie"
|
194 |
|
195 |
+
#: gallery-plugin.php:1612
|
196 |
+
#, fuzzy
|
197 |
+
msgid "Galleries page"
|
198 |
+
msgstr "Galeries"
|
199 |
+
|
200 |
+
#: gallery-plugin.php:1622
|
201 |
msgid "Number of images in the row"
|
202 |
msgstr "Nombre d'images par ligne"
|
203 |
|
204 |
+
#: gallery-plugin.php:1624
|
205 |
msgid ""
|
206 |
"The number of images per row can be less depending on the width of the "
|
207 |
"parent block"
|
209 |
"Il peut y avoir moins d'images par ligne en fonction de la largeur du bloc "
|
210 |
"parent"
|
211 |
|
212 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
213 |
msgid "Image size"
|
214 |
msgstr "Taille de l'image"
|
215 |
|
216 |
+
#: gallery-plugin.php:1631
|
217 |
msgid ""
|
218 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
219 |
"upload a new photo."
|
221 |
"WordPress créera une copie de la miniature avec les dimensions spécifiées "
|
222 |
"quand vous envoyez une nouvelle photo."
|
223 |
|
224 |
+
#: gallery-plugin.php:1633
|
225 |
msgid "For the album cover"
|
226 |
msgstr "Pour la vignette de l'album"
|
227 |
|
228 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
229 |
msgid "width x height"
|
230 |
msgstr "largeur x hauteur"
|
231 |
|
232 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
233 |
msgid "in px"
|
234 |
msgstr "en px"
|
235 |
|
236 |
+
#: gallery-plugin.php:1637
|
237 |
msgid "For thumbnails"
|
238 |
msgstr "Pour les vignettes"
|
239 |
|
240 |
+
#: gallery-plugin.php:1641
|
241 |
msgid "Update images for gallery"
|
242 |
msgstr "Mettre à jour les images pour la galerie"
|
243 |
|
244 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
245 |
msgid "Close"
|
246 |
msgstr "Fermer"
|
247 |
|
248 |
+
#: gallery-plugin.php:1657
|
249 |
msgid "For images in the lightbox"
|
250 |
msgstr "Pour les images dans la boite"
|
251 |
|
252 |
+
#: gallery-plugin.php:1661
|
253 |
msgid "Display a full size image in the lightbox"
|
254 |
msgstr "Afficher une image en taille normale dans la boite"
|
255 |
|
256 |
+
#: gallery-plugin.php:1666
|
257 |
msgid "Crop position"
|
258 |
msgstr "Point de base"
|
259 |
|
260 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
261 |
msgid "center"
|
262 |
msgstr "centré"
|
263 |
|
264 |
+
#: gallery-plugin.php:1672
|
265 |
msgid "Horizontal"
|
266 |
msgstr "Horizontale"
|
267 |
|
268 |
+
#: gallery-plugin.php:1678
|
269 |
msgid "Vertical"
|
270 |
msgstr "Verticale"
|
271 |
|
272 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
273 |
msgid ""
|
274 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
275 |
msgstr ""
|
276 |
"Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
|
277 |
|
278 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
279 |
msgid "Unlock premium options by upgrading to Pro version"
|
280 |
msgstr "Débloquer les options premium en migrant vers la version PRO."
|
281 |
|
282 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
283 |
msgid "Start Your Trial"
|
284 |
msgstr "Débuter votre essai"
|
285 |
|
286 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
287 |
msgid "or"
|
288 |
msgstr "ou"
|
289 |
|
290 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
291 |
msgid "Learn More"
|
292 |
msgstr "En savoir plus"
|
293 |
|
294 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
|
|
295 |
msgid "Display image title"
|
296 |
+
msgstr "Afficher le titre de l'image"
|
297 |
|
298 |
+
#: gallery-plugin.php:1708
|
|
|
299 |
msgid ""
|
300 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
301 |
msgstr ""
|
302 |
+
"Si vous voulez juste afficher le titre de l'image dans une boite, désactiver "
|
303 |
+
"l'option"
|
304 |
|
305 |
+
#: gallery-plugin.php:1712
|
306 |
msgid "Images with border"
|
307 |
msgstr "Image avec bordure"
|
308 |
|
309 |
+
#: gallery-plugin.php:1716
|
310 |
msgid "Border width in px, just numbers"
|
311 |
msgstr "Taille de la bordure en pixel, juste le nombre"
|
312 |
|
313 |
+
#: gallery-plugin.php:1722
|
314 |
msgid "Sort images"
|
315 |
msgstr "Trier les images"
|
316 |
|
317 |
+
#: gallery-plugin.php:1725
|
318 |
msgid "by Attachment ID"
|
319 |
msgstr "par ID du fichier"
|
320 |
|
321 |
+
#: gallery-plugin.php:1726
|
322 |
msgid "by Image Name"
|
323 |
msgstr "par nom de l'image "
|
324 |
|
325 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
326 |
msgid "by Date"
|
327 |
msgstr "par date"
|
328 |
|
329 |
+
#: gallery-plugin.php:1728
|
330 |
msgid "by Sorting order in the Gallery"
|
331 |
msgstr "par ordre de tri dans la galerie"
|
332 |
|
333 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
334 |
msgid "Random"
|
335 |
msgstr "Aléatoire"
|
336 |
|
337 |
+
#: gallery-plugin.php:1734
|
338 |
msgid "The images sort order"
|
339 |
msgstr "L'ordre des images"
|
340 |
|
341 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
342 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
343 |
msgstr ""
|
344 |
"ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, "
|
345 |
"b, c)"
|
346 |
|
347 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
348 |
msgid ""
|
349 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
350 |
msgstr ""
|
351 |
"DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
352 |
|
353 |
+
#: gallery-plugin.php:1743
|
354 |
msgid "Sort galleries"
|
355 |
msgstr "Trier les galeries"
|
356 |
|
357 |
+
#: gallery-plugin.php:1746
|
358 |
msgid "by Gallery ID"
|
359 |
msgstr "par galerie ID"
|
360 |
|
361 |
+
#: gallery-plugin.php:1747
|
362 |
msgid "by Title"
|
363 |
msgstr "par titre"
|
364 |
|
365 |
+
#: gallery-plugin.php:1749
|
366 |
msgid "by Last modified date"
|
367 |
msgstr "par date de dernière modification"
|
368 |
|
369 |
+
#: gallery-plugin.php:1750
|
370 |
msgid "by Comment count"
|
371 |
msgstr "par nombre de commentaires"
|
372 |
|
373 |
+
#: gallery-plugin.php:1751
|
374 |
msgid "by Sorting order (the input field for sorting order)"
|
375 |
msgstr "par ordre de tri (le champ pour définir le critère de tri)"
|
376 |
|
377 |
+
#: gallery-plugin.php:1752
|
378 |
msgid "by Author"
|
379 |
msgstr "par auteur"
|
380 |
|
381 |
+
#: gallery-plugin.php:1758
|
382 |
msgid "The galleries sort order"
|
383 |
msgstr "L'ordre de tri des galleries"
|
384 |
|
385 |
+
#: gallery-plugin.php:1767
|
386 |
msgid "Start slideshow"
|
387 |
msgstr "Démarrer le diaporama"
|
388 |
|
389 |
+
#: gallery-plugin.php:1770
|
390 |
msgid "Slideshow interval"
|
391 |
msgstr "Intervalle de transition pour le diaporama"
|
392 |
|
393 |
+
#: gallery-plugin.php:1770
|
394 |
msgid "(ms)"
|
395 |
msgstr "(ms)"
|
396 |
|
397 |
+
#: gallery-plugin.php:1774
|
398 |
msgid "Use single lightbox for multiple galleries on one page"
|
399 |
msgstr "Utiliser un seul diaporama pour plusieurs galeries sur une seule page"
|
400 |
|
401 |
+
#: gallery-plugin.php:1780
|
402 |
msgid "Display the Back link"
|
403 |
msgstr "Afficher le lien de retour"
|
404 |
|
405 |
+
#: gallery-plugin.php:1786
|
406 |
msgid "Display the Back link in the shortcode"
|
407 |
msgstr "Afficher le lien de retour dans le code court"
|
408 |
|
409 |
+
#: gallery-plugin.php:1792
|
410 |
msgid "The Back link text"
|
411 |
msgstr "Le texte pour le lien de retour"
|
412 |
|
413 |
+
#: gallery-plugin.php:1798
|
414 |
msgid "The Back link URL"
|
415 |
msgstr "L'URL pour le lien de retour"
|
416 |
|
417 |
+
#: gallery-plugin.php:1801
|
418 |
msgid "Gallery page (Page with Gallery Template)"
|
419 |
msgstr "Page de la galerie (Page avec le modèle de galerie)"
|
420 |
|
421 |
+
#: gallery-plugin.php:1803
|
422 |
msgid "(Full URL to custom page)"
|
423 |
msgstr "(URL complète pour la page spécifique)"
|
424 |
|
425 |
+
#: gallery-plugin.php:1808
|
426 |
msgid "The Read More link text"
|
427 |
msgstr "Texte pour le lien \"Read More\""
|
428 |
|
429 |
+
#: gallery-plugin.php:1814
|
430 |
msgid "Add gallery to the search"
|
431 |
msgstr "Ajouter les galeries à la recherche"
|
432 |
|
433 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
434 |
msgid "Using"
|
435 |
msgstr "Utilisant"
|
436 |
|
437 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
438 |
msgid "powered by"
|
439 |
msgstr "fournis par"
|
440 |
|
441 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
442 |
msgid "Activate"
|
443 |
msgstr "Activer"
|
444 |
|
445 |
+
#: gallery-plugin.php:1826
|
446 |
msgid "Download"
|
447 |
msgstr "Télécharger"
|
448 |
|
449 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
msgid "Rename gallery post type"
|
451 |
+
msgstr "Renomme le type d'article de la galerie"
|
452 |
|
453 |
+
#: gallery-plugin.php:1837
|
454 |
msgid ""
|
455 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
456 |
"it now"
|
457 |
msgstr ""
|
458 |
+
"Pour éviter les conflits avec d'autres extensions, merci de cocher cette "
|
459 |
+
"case pour effectuer la renommage maintenant."
|
460 |
|
461 |
+
#: gallery-plugin.php:1838
|
462 |
msgid ""
|
463 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
464 |
"please check settings of your other plugins where 'gallery' post type is used"
|
465 |
msgstr ""
|
466 |
+
"Toutes les galeries crées avant ne seront pas modifiées, cependant, après la "
|
467 |
+
"modification, merci de vérifier le paramétrage de vos autres extensions où "
|
468 |
+
"le type d'article 'galerie' est utilisé."
|
469 |
|
470 |
+
#: gallery-plugin.php:1851
|
471 |
msgid "Single gallery view"
|
472 |
msgstr "Vue pour une seule galerie"
|
473 |
|
474 |
+
#: gallery-plugin.php:1854
|
475 |
msgid "Grid"
|
476 |
msgstr "Grille"
|
477 |
|
478 |
+
#: gallery-plugin.php:1855
|
479 |
msgid "Masonry"
|
480 |
msgstr "Mur"
|
481 |
|
482 |
+
#: gallery-plugin.php:1863
|
483 |
msgid "Under image"
|
484 |
msgstr "Sous l'image"
|
485 |
|
486 |
+
#: gallery-plugin.php:1864
|
487 |
msgid "By mouse hover"
|
488 |
msgstr "par survol de la souris"
|
489 |
|
490 |
+
#: gallery-plugin.php:1869
|
491 |
msgid "Use pagination for images"
|
492 |
msgstr "Utiliser la pagination pour les images"
|
493 |
|
494 |
+
#: gallery-plugin.php:1872
|
495 |
msgid "per page"
|
496 |
msgstr "par page"
|
497 |
|
498 |
+
#: gallery-plugin.php:1876
|
499 |
msgid "Lightbox background"
|
500 |
msgstr "Fond de la boite"
|
501 |
|
502 |
+
#: gallery-plugin.php:1879
|
503 |
msgid "Background transparency (from 0 to 1)"
|
504 |
msgstr "Transparence du fond (de 0 à 1)"
|
505 |
|
506 |
+
#: gallery-plugin.php:1885
|
507 |
msgid ""
|
508 |
"Display all images in the lightbox instead of going into a single gallery"
|
509 |
msgstr ""
|
510 |
"Afficher toutes les images dans une 'lightbox' au lieu de d'une seule galerie"
|
511 |
|
512 |
+
#: gallery-plugin.php:1888
|
513 |
#, php-format
|
514 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
515 |
msgstr ""
|
516 |
"Quand vous utilisez le modèle de galerie ou le code court avec le paramètre "
|
517 |
"'%s'"
|
518 |
|
519 |
+
#: gallery-plugin.php:1892
|
520 |
msgid "The lightbox helper"
|
521 |
msgstr "L'aide de lightbox"
|
522 |
|
523 |
+
#: gallery-plugin.php:1894
|
524 |
msgid "Do not use"
|
525 |
msgstr "Ne pas utiliser"
|
526 |
|
527 |
+
#: gallery-plugin.php:1895
|
528 |
msgid "Button helper"
|
529 |
msgstr "Bouton pour l'assistant"
|
530 |
|
531 |
+
#: gallery-plugin.php:1896
|
532 |
msgid "Thumbnail helper"
|
533 |
msgstr "Assistant de la galerie"
|
534 |
|
535 |
+
#: gallery-plugin.php:1900
|
536 |
msgid "Display Like buttons in the lightbox"
|
537 |
msgstr "Afficher les boutons des réseaux sociaux dans la boite"
|
538 |
|
539 |
+
#: gallery-plugin.php:1904
|
540 |
msgid "FaceBook"
|
541 |
msgstr "FaceBook"
|
542 |
|
543 |
+
#: gallery-plugin.php:1905
|
544 |
msgid "Twitter"
|
545 |
msgstr "Twitter"
|
546 |
|
547 |
+
#: gallery-plugin.php:1906
|
548 |
msgid "Pinterest"
|
549 |
msgstr "Pinterest"
|
550 |
|
551 |
+
#: gallery-plugin.php:1907
|
552 |
msgid "Google +1"
|
553 |
msgstr "Google +1"
|
554 |
|
555 |
+
#: gallery-plugin.php:1910
|
|
|
556 |
msgid "Show counter"
|
557 |
+
msgstr "Afficher le compteur"
|
558 |
|
559 |
+
#: gallery-plugin.php:1912
|
560 |
msgid "Align"
|
561 |
+
msgstr "Aligner"
|
562 |
|
563 |
+
#: gallery-plugin.php:1914
|
564 |
msgid "left"
|
565 |
msgstr "gauche"
|
566 |
|
567 |
+
#: gallery-plugin.php:1921
|
568 |
msgid "Title for lightbox button"
|
569 |
msgstr "Titre pour le bouton lightbox"
|
570 |
|
571 |
+
#: gallery-plugin.php:1927
|
572 |
msgid "Slug for gallery item"
|
573 |
msgstr "Racine pour les pages des galeries"
|
574 |
|
575 |
+
#: gallery-plugin.php:1929
|
576 |
msgid "for any structure of permalinks except the default structure"
|
577 |
msgstr "pour toute forme de permaliens à l'exception de la forme par défaut"
|
578 |
|
579 |
+
#: gallery-plugin.php:1955
|
580 |
msgid "Save Changes"
|
581 |
msgstr "Enregistrer les modifications"
|
582 |
|
583 |
+
#: gallery-plugin.php:1960
|
584 |
msgid ""
|
585 |
"If you install the demo-data, will be created galleries with images, demo-"
|
586 |
"post with available shortcodes and page with a list of all the galleries."
|
589 |
"images, des articles avec les différents codes courts, des pages avec des "
|
590 |
"listes de galeries seront créés."
|
591 |
|
592 |
+
#: gallery-plugin.php:1994
|
593 |
msgid "FAQ"
|
594 |
msgstr "FAQ"
|
595 |
|
596 |
+
#: gallery-plugin.php:1995
|
597 |
msgid "Support"
|
598 |
msgstr "Soutien"
|
599 |
|
600 |
+
#: gallery-plugin.php:2032
|
601 |
msgid "Updating images..."
|
602 |
msgstr "Mise à jour des images..."
|
603 |
|
604 |
+
#: gallery-plugin.php:2033
|
605 |
msgid "No image found."
|
606 |
msgstr "Pas d'image trouvée."
|
607 |
|
608 |
+
#: gallery-plugin.php:2034
|
609 |
msgid "All images are updated."
|
610 |
msgstr "Toutes les images ont été mises à jour."
|
611 |
|
612 |
+
#: gallery-plugin.php:2035
|
613 |
msgid "Error."
|
614 |
msgstr "Erreur."
|
615 |
|
616 |
+
#: gallery-plugin.php:2049
|
617 |
msgid ""
|
618 |
"You are about to delete these items from this gallery.\n"
|
619 |
" 'Cancel' to stop, 'OK' to delete."
|
621 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
622 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
623 |
|
624 |
+
#: gallery-plugin.php:2050
|
625 |
msgid ""
|
626 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
627 |
"switching?"
|
629 |
"ou plus! Nous ne garantissons pas que notre extension fonctionne "
|
630 |
"correctement. Merci de mettre à jour votre version de WordPress."
|
631 |
|
632 |
+
#: gallery-plugin.php:2051
|
633 |
msgid "Insert Media"
|
634 |
msgstr "Insérer un média"
|
635 |
|
636 |
+
#: gallery-plugin.php:2052
|
637 |
msgid "Insert"
|
638 |
msgstr "Insérer"
|
639 |
|
640 |
+
#: gallery-plugin.php:2064
|
641 |
msgid "Learn more"
|
642 |
msgstr "En savoir plus"
|
643 |
|
644 |
+
#: gallery-plugin.php:2076
|
645 |
msgid "Install now"
|
646 |
msgstr "Installé maintenant"
|
647 |
|
648 |
+
#: gallery-plugin.php:2085
|
649 |
msgid "Add multiple gallery categories"
|
650 |
msgstr "Ajouter des catégories de galeries"
|
651 |
|
652 |
+
#: gallery-plugin.php:2085
|
653 |
msgid ""
|
654 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
655 |
msgstr ""
|
656 |
"Installer l'extension 'Gallery Categories' pour ajouter un nombre infini de "
|
657 |
"catégories."
|
658 |
|
659 |
+
#: gallery-plugin.php:2405
|
660 |
+
msgid "Download high resolution image"
|
661 |
+
msgstr "Télécharger l'image en haute résolution"
|
662 |
+
|
663 |
+
#: gallery-plugin.php:2417
|
664 |
+
msgid "Image"
|
665 |
+
msgstr "Image "
|
666 |
+
|
667 |
+
#: gallery-plugin.php:2558
|
668 |
msgid "Image size not defined"
|
669 |
msgstr "Taille de l'image non définie"
|
670 |
|
671 |
+
#: gallery-plugin.php:2573
|
672 |
msgid ""
|
673 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
674 |
"manually reload image."
|
676 |
"Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
|
677 |
"WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
678 |
|
679 |
+
#: gallery-plugin.php:2584
|
680 |
msgid "Image size changes not defined"
|
681 |
msgstr "La modification de la taille n'est pas définie"
|
682 |
|
683 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
684 |
msgid "Invalid path"
|
685 |
msgstr "Chemin invalide"
|
686 |
|
687 |
+
#: gallery-plugin.php:2694
|
688 |
msgid "Add images requires JavaScript."
|
689 |
msgstr "Ajouter des images nécessite Java-script."
|
690 |
|
691 |
+
#: gallery-plugin.php:2697
|
692 |
msgid "Add Media"
|
693 |
msgstr "Ajouter un média"
|
694 |
|
695 |
+
#: gallery-plugin.php:2707
|
696 |
msgid "The grid view for the Gallery images requires JavaScript."
|
697 |
msgstr ""
|
698 |
"La vue en mode grille pour les images des galeries nécessite Java-script."
|
699 |
|
700 |
+
#: gallery-plugin.php:2707
|
701 |
msgid "Switch to the list view"
|
702 |
msgstr "Basculer vers une vue en mode liste"
|
703 |
|
704 |
+
#: gallery-plugin.php:2734
|
705 |
msgid "List View"
|
706 |
msgstr "Vue en mode liste"
|
707 |
|
708 |
+
#: gallery-plugin.php:2735
|
709 |
msgid "Grid View"
|
710 |
msgstr "Vue en mode grille"
|
711 |
|
712 |
+
#: gallery-plugin.php:2790
|
713 |
msgid "Filter"
|
714 |
msgstr "Filtrer"
|
715 |
|
716 |
+
#: gallery-plugin.php:2794
|
717 |
msgid "Empty Trash"
|
718 |
msgstr "Vider la corbeille"
|
719 |
|
720 |
+
#: gallery-plugin.php:2815
|
721 |
msgid "No images found"
|
722 |
msgstr "Pas d'image trouvée"
|
723 |
|
724 |
+
#: gallery-plugin.php:2867
|
725 |
msgid "Select bulk action"
|
726 |
msgstr "Sélectionne l'action en masse"
|
727 |
|
728 |
+
#: gallery-plugin.php:2869
|
729 |
msgid "Bulk Actions"
|
730 |
msgstr "Actions en masse"
|
731 |
|
732 |
+
#: gallery-plugin.php:2879
|
733 |
msgid "Apply"
|
734 |
msgstr "Appliquer"
|
735 |
|
736 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
737 |
msgid "Delete from Gallery"
|
738 |
msgstr "Supprimer de la galerie"
|
739 |
|
740 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
741 |
msgid "Display link to the original file under each image in the lightbox"
|
742 |
msgstr ""
|
743 |
"Afficher un lien vers l'image d'origine sous chaque image dans la lightbox"
|
744 |
|
745 |
+
#: gallery-plugin.php:2908
|
746 |
msgid "Bulk Select"
|
747 |
msgstr "Sélection en masse"
|
748 |
|
749 |
+
#: gallery-plugin.php:2910
|
750 |
msgid "Cancel Selection"
|
751 |
msgstr "Annuler la sélection"
|
752 |
|
753 |
+
#: gallery-plugin.php:2911
|
754 |
msgid "Delete Selected"
|
755 |
msgstr "Supprimer la sélection"
|
756 |
|
757 |
+
#: gallery-plugin.php:2924
|
758 |
msgid "File"
|
759 |
msgstr "Fichier"
|
760 |
|
761 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
762 |
msgid "Dimensions"
|
763 |
msgstr "Dimensions"
|
764 |
|
765 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
766 |
msgid "Alt tag"
|
767 |
msgstr "Tag Alt"
|
768 |
|
769 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
770 |
msgid ""
|
771 |
"The alt attribute specifies an alternate text for an image, if the image "
|
772 |
"cannot be displayed."
|
774 |
"L'attribut 'alt' permet de définir un texte alternatif pour une image, quand "
|
775 |
"celle-ci ne peux pas être affichée."
|
776 |
|
777 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
778 |
msgid "Custom URL"
|
779 |
msgstr "URL personnalisée"
|
780 |
|
781 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
782 |
msgid ""
|
783 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
784 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
787 |
"rempli) ou bien l'image sera ouverte dans une 'lightbox' (si le champ est "
|
788 |
"vide)"
|
789 |
|
790 |
+
#: gallery-plugin.php:3006
|
791 |
msgid "Deselect"
|
792 |
msgstr "Désélectionner"
|
793 |
|
794 |
+
#: gallery-plugin.php:3012
|
795 |
msgid "File name"
|
796 |
msgstr "Nom du fichier"
|
797 |
|
798 |
+
#: gallery-plugin.php:3013
|
799 |
msgid "File type"
|
800 |
msgstr "Type de fichier"
|
801 |
|
802 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
803 |
msgid "Edit Attachment Info"
|
804 |
msgstr "Modifier les informations du document"
|
805 |
|
806 |
+
#: gallery-plugin.php:3017
|
807 |
msgid "Edit Attachment"
|
808 |
msgstr "Modifier le document"
|
809 |
|
810 |
+
#: gallery-plugin.php:3027
|
811 |
msgid "Go Pro"
|
812 |
msgstr "Passer à la version PRO"
|
813 |
|
814 |
+
#: gallery-plugin.php:3027
|
815 |
msgid "Pro version"
|
816 |
msgstr "version PRO"
|
817 |
|
818 |
+
#: gallery-plugin.php:3030
|
819 |
msgid "This setting is available in Pro version"
|
820 |
msgstr "Ce paramètre est disponible dans la version Pro"
|
821 |
|
822 |
+
#: gallery-plugin.php:3063
|
823 |
msgid "Edit more details"
|
824 |
msgstr "Modifier plus de détails"
|
825 |
|
826 |
+
#: gallery-plugin.php:3098
|
827 |
#, php-format
|
828 |
msgid "Select %s"
|
829 |
msgstr "Sélectionner %s"
|
830 |
|
831 |
+
#: gallery-plugin.php:3111
|
832 |
#, php-format
|
833 |
msgid "Edit “%s”"
|
834 |
msgstr "Pré-visualiser “%s”"
|
835 |
|
836 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
837 |
msgid "Edit"
|
838 |
msgstr "Modifier"
|
839 |
|
840 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
841 |
msgid "Trash"
|
842 |
msgstr "Poubelle"
|
843 |
|
844 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
845 |
msgid "Delete Permanently"
|
846 |
msgstr "Supprimer de manière définitive"
|
847 |
|
848 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
849 |
#, php-format
|
850 |
msgid "View “%s”"
|
851 |
msgstr "Pré-visualiser “%s”"
|
852 |
|
853 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
854 |
msgid "View"
|
855 |
msgstr "Voir"
|
856 |
|
857 |
+
#: gallery-plugin.php:3166
|
858 |
msgid "Attach"
|
859 |
msgstr "Attacher"
|
860 |
|
861 |
+
#: gallery-plugin.php:3172
|
862 |
msgid "Restore"
|
863 |
msgstr "Remettre"
|
864 |
|
865 |
+
#: gallery-plugin.php:3303
|
866 |
msgid "Warning"
|
867 |
msgstr "Avertissement"
|
868 |
|
869 |
+
#: gallery-plugin.php:3303
|
870 |
msgid "You can add only images to the gallery"
|
871 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
872 |
|
873 |
+
#: gallery-plugin.php:3345
|
874 |
msgid "no title"
|
875 |
msgstr "Pas de titre"
|
876 |
|
877 |
+
#: gallery-plugin.php:3353
|
878 |
msgid "Sorry, no gallery found."
|
879 |
msgstr "Désolé, rien n'a été trouvé."
|
880 |
|
881 |
+
#: gallery-plugin.php:3359
|
882 |
msgid ""
|
883 |
"Display an album image with the description and the link to a single gallery "
|
884 |
"page"
|
886 |
"Afficher une image pour l'album avec la description et un lien vers une page "
|
887 |
"contenant la galerie"
|
888 |
|
889 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
890 |
msgid "Install Demo Data"
|
891 |
msgstr "Installé les données de démonstration"
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
894 |
msgid "Remove Demo Data"
|
895 |
msgstr "Supprimer les données de démonstration"
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
898 |
msgid "Delete demo-data and restore old plugin settings."
|
899 |
msgstr ""
|
900 |
"Supprimer les données de démonstration et remettre le paramétrage antérieur "
|
901 |
"de l'extension."
|
902 |
|
903 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
904 |
msgid "Yes, install demo data"
|
905 |
msgstr "Oui, installer les données de démonstration"
|
906 |
|
907 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
908 |
msgid "Are you sure you want to install demo data?"
|
909 |
msgstr "Êtes vous sûr de vouloir installer les données de démonstration ?"
|
910 |
|
911 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
912 |
msgid "Yes, remove demo data"
|
913 |
msgstr "Oui, supprimer les données de démonstration"
|
914 |
|
915 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
916 |
msgid "Are you sure you want to remove demo data?"
|
917 |
msgstr "Êtes vous sûr de vouloir supprimer les données de démonstration ?"
|
918 |
|
919 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
920 |
msgid "No, go back to the settings page"
|
921 |
msgstr "Non, retourner à la page des paramètres"
|
922 |
|
923 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
924 |
msgid "Can not get demo data."
|
925 |
msgstr "Impossible d'obtenir les données de démonstration."
|
926 |
|
927 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
928 |
msgid "Demo options already installed."
|
929 |
msgstr "Les données de démonstration sont déjà installées."
|
930 |
|
931 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
932 |
msgid "Demo data successfully installed."
|
933 |
msgstr "Les données de démonstration ont été installées avec succès."
|
934 |
|
935 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
936 |
msgid "View post with shortcodes"
|
937 |
msgstr "Voir les articles avec les codes courts"
|
938 |
|
939 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
940 |
msgid "View page with examples"
|
941 |
msgstr "Voir les pages avec les exemples"
|
942 |
|
943 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
944 |
msgid "Installation of demo data with some errors occurred."
|
945 |
msgstr ""
|
946 |
"Des erreurs sont survenues lors de l'installation des données de "
|
947 |
"démonstration."
|
948 |
|
949 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
950 |
msgid "Posts data is missing."
|
951 |
msgstr "Les données de l'article sont absentes."
|
952 |
|
953 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
954 |
msgid "Demo data have already been removed."
|
955 |
msgstr "Les données de démonstration ont déjà été supprimées."
|
956 |
|
957 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
958 |
msgid "Demo data successfully removed."
|
959 |
msgstr "Les données de démonstration ont été supprimées."
|
960 |
|
961 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
962 |
msgid "Removing demo data with some errors occurred."
|
963 |
msgstr ""
|
964 |
"Des erreurs sont survenues lors de la suppression des données de "
|
965 |
"démonstration."
|
966 |
|
967 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
968 |
msgid "Close notice"
|
969 |
msgstr "Fermer l'avertissement"
|
970 |
|
971 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
972 |
msgid "Install demo data"
|
973 |
msgstr "Installer les données de démonstration"
|
974 |
|
975 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
976 |
msgid "for an acquaintance with the possibilities of the"
|
977 |
msgstr "pour une vision des possibilités de "
|
978 |
|
979 |
+
#~ msgid ""
|
980 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
981 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
982 |
+
#~ "theme for the correct work of the Gallery plugin"
|
983 |
+
#~ msgstr ""
|
984 |
+
#~ "Les fichiers suivants '%s' et '%s' n'ont pas été trouvés dans le "
|
985 |
+
#~ "répertoire de votre thème. Merci de les copier depuis le répertoire '%s' "
|
986 |
+
#~ "dans le répertoire de votre thème pour le bon fonctionnement de "
|
987 |
+
#~ "l'extension Gallery"
|
988 |
+
|
989 |
+
#~ msgid "Rewrite templates after update"
|
990 |
+
#~ msgstr "Modifier les modèles après la mise à jour"
|
991 |
+
|
992 |
+
#~ msgid ""
|
993 |
+
#~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
994 |
+
#~ "theme folder and You don't want to rewrite them"
|
995 |
+
#~ msgstr ""
|
996 |
+
#~ "Décochez la case si vous avez modifié le fichier '%s' ou le fichier '%s' "
|
997 |
+
#~ "dans le répertoire de votre thème et que vous souhaitez garder votre "
|
998 |
+
#~ "version"
|
999 |
+
|
1000 |
#~ msgid "Advertisement"
|
1001 |
#~ msgstr "Publicité"
|
1002 |
|
languages/gallery-plugin-nl_NL.mo
CHANGED
Binary file
|
languages/gallery-plugin-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: J Goessens <j.goessens@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -17,74 +17,62 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "Settings"
|
23 |
msgstr "Instellingen"
|
24 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "See images »"
|
27 |
msgstr "Foto's bekijken »"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
-
#, fuzzy, php-format
|
35 |
-
msgid ""
|
36 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
37 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
38 |
-
"theme for the correct work of the Gallery plugin"
|
39 |
-
msgstr ""
|
40 |
-
"De volgende bestanden \"gallery-template.php\" en \"gallery-single-template."
|
41 |
-
"php\" werden niet in de actieve 'theme' map gevonden. Voor de correcte "
|
42 |
-
"werking van deze plugin, dienen ze vanuit `/wp-content/plugins/gallery-"
|
43 |
-
"plugin/template/` naar de actieve 'theme' map te worden gekopieerd. "
|
44 |
-
|
45 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galerijen"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galerij"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Nieuwe Galerij toevoegen"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Galerij bewerken"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Nieuwe Galerij"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Galerij bekijken"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
#, fuzzy
|
71 |
msgid "Search Galleries"
|
72 |
msgstr "Galerijen"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Geen Galerij gevonden"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Gallery Shortcode"
|
80 |
msgstr "Galerij Shortcode"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Categories"
|
85 |
msgstr "Afmeting galerij foto"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
#, fuzzy, php-format
|
89 |
msgid ""
|
90 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -92,7 +80,7 @@ msgstr ""
|
|
92 |
"Als je een enkele galerij wilt toevoegen aan je pagina, of bericht, kopieer "
|
93 |
"& plak dan de volgende shortcode in je bericht, of pagina:"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -100,12 +88,12 @@ msgid ""
|
|
100 |
"please use the shortcode below"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid ""
|
105 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
#, fuzzy
|
110 |
msgid ""
|
111 |
"Use this shortcode to display an album image with the description and the "
|
@@ -114,96 +102,88 @@ msgstr ""
|
|
114 |
"Als je een korte omschrijving, met een voorbeeld & link naar de galerij "
|
115 |
"pagina, wilt weergeven "
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Short display"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Most Used"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Default"
|
127 |
msgstr "Standaard"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "Add New Gallery Category"
|
132 |
msgstr "Nieuwe Galerij toevoegen"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
#, fuzzy
|
136 |
msgid "Install plugin"
|
137 |
msgstr "Встановлених модулів"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
#, fuzzy
|
141 |
msgid "Gallery Category"
|
142 |
msgstr "Afmeting galerij foto"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
-
msgid "Download high resolution image"
|
146 |
-
msgstr "Download hoge-resolutie foto"
|
147 |
-
|
148 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
149 |
-
msgid "Image"
|
150 |
-
msgstr "Foto"
|
151 |
-
|
152 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
153 |
msgid "Sorry, nothing found."
|
154 |
msgstr "Sorry, niets gevonden."
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Title"
|
159 |
msgstr "Titel"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Author"
|
163 |
msgstr "Autheur"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
#, fuzzy
|
167 |
msgid "Shortcode"
|
168 |
msgstr "Galerij Shortcode"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
#, fuzzy
|
172 |
msgid "Photos"
|
173 |
msgstr "Foto"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Date"
|
177 |
msgstr "Datum"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Settings are saved"
|
181 |
msgstr "Instellingen opgeslagen"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
#, fuzzy
|
185 |
msgid "All plugin settings were restored."
|
186 |
msgstr "op de plugin instellingen pagina ("
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Gallery Settings"
|
190 |
msgstr "Galerij Instellingen"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Custom code"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Go PRO"
|
198 |
msgstr "Ga PRO"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Please enable JavaScript to use the option to renew images."
|
202 |
msgstr ""
|
203 |
" Javascript dient geactiveerd te zijn, om gebruik te maken van de optie om "
|
204 |
"foto's te vernieuwen."
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
#, php-format
|
208 |
msgid ""
|
209 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -211,22 +191,27 @@ msgid ""
|
|
211 |
"please use the shortcode %s, where * stands for gallery ID"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
215 |
msgid "Number of images in the row"
|
216 |
msgstr "Aantal foto's op een rij"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
#, fuzzy
|
220 |
msgid ""
|
221 |
"The number of images per row can be less depending on the width of the "
|
222 |
"parent block"
|
223 |
msgstr "Aantal foto's op een rij"
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "Image size"
|
227 |
msgstr "Foto afmeting"
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid ""
|
231 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
232 |
"upload a new photo."
|
@@ -234,460 +219,457 @@ msgstr ""
|
|
234 |
"WordPress zal een nieuw voorbeeld maken, met de opgegeven afmetingen, als er "
|
235 |
"een nieuwe foto wordt geupload."
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
#, fuzzy
|
239 |
msgid "For the album cover"
|
240 |
msgstr "Foto afmeting voor de omslag van het album"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "width x height"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "in px"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
#, fuzzy
|
252 |
msgid "For thumbnails"
|
253 |
msgstr "Foto afmeting voor de omslag van het album"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Update images for gallery"
|
257 |
msgstr "Foto's voor galerij bijwerken"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
msgid "Close"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: gallery-plugin.php:
|
264 |
#, fuzzy
|
265 |
msgid "For images in the lightbox"
|
266 |
msgstr "Foto afmeting voor lightbox"
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "Display a full size image in the lightbox"
|
270 |
msgstr "Geef volledige grootte weer, voor lightbox"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Crop position"
|
274 |
msgstr "Positie bijsnijden"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid "center"
|
278 |
msgstr "midden"
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "Horizontal"
|
282 |
msgstr "Horizontaal"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Vertical"
|
286 |
msgstr "Verticaal"
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid ""
|
290 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
291 |
msgstr ""
|
292 |
"Als je naar de Pro versie overstapt, zullen alle instellingen en galerijen "
|
293 |
"bewaard blijven."
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "Unlock premium options by upgrading to Pro version"
|
298 |
msgstr "Gebruik premium opties, door te upgraden naar een PRO versie."
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Start Your Trial"
|
302 |
msgstr "Start Uw proefversie"
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "or"
|
306 |
msgstr "of"
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Learn More"
|
310 |
msgstr "Kom meer te weten"
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Display image title"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
#, fuzzy
|
318 |
msgid ""
|
319 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
320 |
msgstr ""
|
321 |
"Schakel het vinkje uit, als je de tekst alleen wilt weergeven in de lightbox"
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Images with border"
|
325 |
msgstr "Foto's met rand"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "Border width in px, just numbers"
|
329 |
msgstr "Randbreedte in px, alleen nummers"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "Sort images"
|
333 |
msgstr "Sorteer foto's"
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
#, fuzzy
|
337 |
msgid "by Attachment ID"
|
338 |
msgstr "Bijlage ID"
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
#, fuzzy
|
342 |
msgid "by Image Name"
|
343 |
msgstr "Foto Naam"
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
#, fuzzy
|
347 |
msgid "by Date"
|
348 |
msgstr "Datum"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "by Sorting order in the Gallery"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Random"
|
356 |
msgstr "Willekeurig"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
#, fuzzy
|
360 |
msgid "The images sort order"
|
361 |
msgstr "Foto's met rand"
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
365 |
msgstr "ASC (oplopend van laagste naar hoogste waarde - 1, 2, 3; a, b, c)"
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid ""
|
369 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
370 |
msgstr "DESC (aflopend van hoogste naar laagste waarde - 3, 2, 1; c, b, a)"
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
#, fuzzy
|
374 |
msgid "Sort galleries"
|
375 |
msgstr "Galerijen"
|
376 |
|
377 |
-
#: gallery-plugin.php:
|
378 |
#, fuzzy
|
379 |
msgid "by Gallery ID"
|
380 |
msgstr "Galerij"
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
#, fuzzy
|
384 |
msgid "by Title"
|
385 |
msgstr "Titel"
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "by Last modified date"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "by Comment count"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
#, fuzzy
|
397 |
msgid "by Sorting order (the input field for sorting order)"
|
398 |
msgstr ""
|
399 |
"Sorteervolgorde (het invoerveld voor sorteervolgorde in het Invoeg / Upload "
|
400 |
"Media Galerij venster)"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
#, fuzzy
|
404 |
msgid "by Author"
|
405 |
msgstr "Autheur"
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "The galleries sort order"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "Start slideshow"
|
413 |
msgstr "Start diavoorstelling"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "Slideshow interval"
|
417 |
msgstr "Diavoorstelling interval"
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "(ms)"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "Use single lightbox for multiple galleries on one page"
|
425 |
msgstr "Gebruik 1 lightbox voor meerdere galerijen op 1 pagina"
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Display the Back link"
|
429 |
msgstr "Toon de Terug link"
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Display the Back link in the shortcode"
|
433 |
msgstr "Toon de Terug link in de shortcode"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "The Back link text"
|
437 |
msgstr "De Terug link tekst"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "The Back link URL"
|
441 |
msgstr "De Terug link URL"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Gallery page (Page with Gallery Template)"
|
445 |
msgstr "Galerij pagina (pagina met galerij template)"
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "(Full URL to custom page)"
|
449 |
msgstr "(Volledige URL naar aangepaste pagina)"
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "The Read More link text"
|
453 |
msgstr "De 'Lees Meer' link tekst"
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Add gallery to the search"
|
457 |
msgstr "Galerij, aan zoeken, toevoegen"
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "Using"
|
461 |
msgstr "Gebruik"
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
msgid "powered by"
|
465 |
msgstr "powered by"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Activate"
|
469 |
msgstr "Activeren"
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "Download"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
-
msgid "Rewrite templates after update"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: gallery-plugin.php:1929
|
480 |
-
#, php-format
|
481 |
-
msgid ""
|
482 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
483 |
-
"theme folder and You don't want to rewrite them"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: gallery-plugin.php:1934
|
487 |
msgid "Rename gallery post type"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
msgid ""
|
492 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
493 |
"it now"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: gallery-plugin.php:
|
497 |
msgid ""
|
498 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
499 |
"please check settings of your other plugins where 'gallery' post type is used"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
#, fuzzy
|
504 |
msgid "Single gallery view"
|
505 |
msgstr "Slug voor galerij-item"
|
506 |
|
507 |
-
#: gallery-plugin.php:
|
508 |
msgid "Grid"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: gallery-plugin.php:
|
512 |
msgid "Masonry"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: gallery-plugin.php:
|
516 |
#, fuzzy
|
517 |
msgid "Under image"
|
518 |
msgstr "Foto's bijwerken"
|
519 |
|
520 |
-
#: gallery-plugin.php:
|
521 |
msgid "By mouse hover"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: gallery-plugin.php:
|
525 |
msgid "Use pagination for images"
|
526 |
msgstr "Gebruik paginering voor foto's"
|
527 |
|
528 |
-
#: gallery-plugin.php:
|
529 |
msgid "per page"
|
530 |
msgstr "per pagina"
|
531 |
|
532 |
-
#: gallery-plugin.php:
|
533 |
msgid "Lightbox background"
|
534 |
msgstr "Lightbox achtergrond"
|
535 |
|
536 |
-
#: gallery-plugin.php:
|
537 |
msgid "Background transparency (from 0 to 1)"
|
538 |
msgstr "Achtergrond transparantie (van 0 tot 1)"
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
msgid ""
|
542 |
"Display all images in the lightbox instead of going into a single gallery"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
#, php-format
|
547 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: gallery-plugin.php:
|
551 |
msgid "The lightbox helper"
|
552 |
msgstr "De lightbox helper"
|
553 |
|
554 |
-
#: gallery-plugin.php:
|
555 |
msgid "Do not use"
|
556 |
msgstr "Niet gebruiken"
|
557 |
|
558 |
-
#: gallery-plugin.php:
|
559 |
msgid "Button helper"
|
560 |
msgstr "Knop helper"
|
561 |
|
562 |
-
#: gallery-plugin.php:
|
563 |
msgid "Thumbnail helper"
|
564 |
msgstr "Thumbnail helper"
|
565 |
|
566 |
-
#: gallery-plugin.php:
|
567 |
msgid "Display Like buttons in the lightbox"
|
568 |
msgstr "Geef 'Vind ik leuk' knoppen weer, in de lightbox"
|
569 |
|
570 |
-
#: gallery-plugin.php:
|
571 |
msgid "FaceBook"
|
572 |
msgstr "FaceBook"
|
573 |
|
574 |
-
#: gallery-plugin.php:
|
575 |
msgid "Twitter"
|
576 |
msgstr "Twitter"
|
577 |
|
578 |
-
#: gallery-plugin.php:
|
579 |
msgid "Pinterest"
|
580 |
msgstr "Pinterest"
|
581 |
|
582 |
-
#: gallery-plugin.php:
|
583 |
msgid "Google +1"
|
584 |
msgstr "Google +1"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
#, fuzzy
|
588 |
msgid "Show counter"
|
589 |
msgstr "Diavoorstelling interval"
|
590 |
|
591 |
-
#: gallery-plugin.php:
|
592 |
msgid "Align"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "left"
|
597 |
msgstr "links"
|
598 |
|
599 |
-
#: gallery-plugin.php:
|
600 |
msgid "Title for lightbox button"
|
601 |
msgstr "Titel voor lightbox knop"
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "Slug for gallery item"
|
605 |
msgstr "Slug voor galerij-item"
|
606 |
|
607 |
-
#: gallery-plugin.php:
|
608 |
msgid "for any structure of permalinks except the default structure"
|
609 |
msgstr "voor elke structuur van permalink, behalve de standaard structuur"
|
610 |
|
611 |
-
#: gallery-plugin.php:
|
612 |
msgid "Save Changes"
|
613 |
msgstr "Wijzigingen Opslaan"
|
614 |
|
615 |
-
#: gallery-plugin.php:
|
616 |
msgid ""
|
617 |
"If you install the demo-data, will be created galleries with images, demo-"
|
618 |
"post with available shortcodes and page with a list of all the galleries."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: gallery-plugin.php:
|
622 |
msgid "FAQ"
|
623 |
msgstr "FAQ "
|
624 |
|
625 |
-
#: gallery-plugin.php:
|
626 |
msgid "Support"
|
627 |
msgstr "Ondersteuning"
|
628 |
|
629 |
-
#: gallery-plugin.php:
|
630 |
msgid "Updating images..."
|
631 |
msgstr "Bijwerken foto's..."
|
632 |
|
633 |
-
#: gallery-plugin.php:
|
634 |
#, fuzzy
|
635 |
msgid "No image found."
|
636 |
msgstr "Geen foto gevonden"
|
637 |
|
638 |
-
#: gallery-plugin.php:
|
639 |
#, fuzzy
|
640 |
msgid "All images are updated."
|
641 |
msgstr "Alle foto's zijn bijgewerkt"
|
642 |
|
643 |
-
#: gallery-plugin.php:
|
644 |
msgid "Error."
|
645 |
msgstr "Fout."
|
646 |
|
647 |
-
#: gallery-plugin.php:
|
648 |
msgid ""
|
649 |
"You are about to delete these items from this gallery.\n"
|
650 |
" 'Cancel' to stop, 'OK' to delete."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: gallery-plugin.php:
|
654 |
msgid ""
|
655 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
656 |
"switching?"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: gallery-plugin.php:
|
660 |
msgid "Insert Media"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: gallery-plugin.php:
|
664 |
msgid "Insert"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: gallery-plugin.php:
|
668 |
#, fuzzy
|
669 |
msgid "Learn more"
|
670 |
msgstr "Kom meer te weten"
|
671 |
|
672 |
-
#: gallery-plugin.php:
|
673 |
#, fuzzy
|
674 |
msgid "Install now"
|
675 |
msgstr "Установка %"
|
676 |
|
677 |
-
#: gallery-plugin.php:
|
678 |
msgid "Add multiple gallery categories"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: gallery-plugin.php:
|
682 |
msgid ""
|
683 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
msgid "Image size not defined"
|
688 |
msgstr "Afmetingen van foto, niet gedefinieerd"
|
689 |
|
690 |
-
#: gallery-plugin.php:
|
691 |
msgid ""
|
692 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
693 |
"manually reload image."
|
@@ -695,211 +677,211 @@ msgstr ""
|
|
695 |
"We kunnen alleen de volgende bestandstypen bijwerken: PNG, JPG, GIF, WPMP of "
|
696 |
"XBM (Voor overige, aub handmatig herladen)."
|
697 |
|
698 |
-
#: gallery-plugin.php:
|
699 |
msgid "Image size changes not defined"
|
700 |
msgstr "Wijzigingen van foto afmetingen, niet gedefinieerd"
|
701 |
|
702 |
-
#: gallery-plugin.php:
|
703 |
msgid "Invalid path"
|
704 |
msgstr "Ongeldig pad"
|
705 |
|
706 |
-
#: gallery-plugin.php:
|
707 |
msgid "Add images requires JavaScript."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: gallery-plugin.php:
|
711 |
msgid "Add Media"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: gallery-plugin.php:
|
715 |
msgid "The grid view for the Gallery images requires JavaScript."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: gallery-plugin.php:
|
719 |
msgid "Switch to the list view"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: gallery-plugin.php:
|
723 |
msgid "List View"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: gallery-plugin.php:
|
727 |
msgid "Grid View"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: gallery-plugin.php:
|
731 |
msgid "Filter"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
msgid "Empty Trash"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: gallery-plugin.php:
|
739 |
#, fuzzy
|
740 |
msgid "No images found"
|
741 |
msgstr "Geen foto gevonden"
|
742 |
|
743 |
-
#: gallery-plugin.php:
|
744 |
msgid "Select bulk action"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: gallery-plugin.php:
|
748 |
msgid "Bulk Actions"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: gallery-plugin.php:
|
752 |
msgid "Apply"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: gallery-plugin.php:
|
756 |
#, fuzzy
|
757 |
msgid "Delete from Gallery"
|
758 |
msgstr "Nieuwe Galerij"
|
759 |
|
760 |
-
#: gallery-plugin.php:
|
761 |
#, fuzzy
|
762 |
msgid "Display link to the original file under each image in the lightbox"
|
763 |
msgstr "Geef volledige grootte weer, voor lightbox"
|
764 |
|
765 |
-
#: gallery-plugin.php:
|
766 |
msgid "Bulk Select"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: gallery-plugin.php:
|
770 |
msgid "Cancel Selection"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: gallery-plugin.php:
|
774 |
msgid "Delete Selected"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid "File"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: gallery-plugin.php:
|
782 |
msgid "Dimensions"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid "Alt tag"
|
787 |
msgstr "Alt tag"
|
788 |
|
789 |
-
#: gallery-plugin.php:
|
790 |
msgid ""
|
791 |
"The alt attribute specifies an alternate text for an image, if the image "
|
792 |
"cannot be displayed."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: gallery-plugin.php:
|
796 |
msgid "Custom URL"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: gallery-plugin.php:
|
800 |
msgid ""
|
801 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
802 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: gallery-plugin.php:
|
806 |
msgid "Deselect"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: gallery-plugin.php:
|
810 |
msgid "File name"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: gallery-plugin.php:
|
814 |
msgid "File type"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: gallery-plugin.php:
|
818 |
#, fuzzy
|
819 |
msgid "Edit Attachment Info"
|
820 |
msgstr "Bijlage ID"
|
821 |
|
822 |
-
#: gallery-plugin.php:
|
823 |
#, fuzzy
|
824 |
msgid "Edit Attachment"
|
825 |
msgstr "Bijlage ID"
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
#, fuzzy
|
829 |
msgid "Go Pro"
|
830 |
msgstr "Ga PRO"
|
831 |
|
832 |
-
#: gallery-plugin.php:
|
833 |
msgid "Pro version"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: gallery-plugin.php:
|
837 |
msgid "This setting is available in Pro version"
|
838 |
msgstr "Deze instelling is alleen beschikbaar in de Pro versie"
|
839 |
|
840 |
-
#: gallery-plugin.php:
|
841 |
msgid "Edit more details"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: gallery-plugin.php:
|
845 |
#, php-format
|
846 |
msgid "Select %s"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: gallery-plugin.php:
|
850 |
#, php-format
|
851 |
msgid "Edit “%s”"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: gallery-plugin.php:
|
855 |
msgid "Edit"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: gallery-plugin.php:
|
859 |
msgid "Trash"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: gallery-plugin.php:
|
863 |
msgid "Delete Permanently"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: gallery-plugin.php:
|
867 |
#, php-format
|
868 |
msgid "View “%s”"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: gallery-plugin.php:
|
872 |
msgid "View"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: gallery-plugin.php:
|
876 |
#, fuzzy
|
877 |
msgid "Attach"
|
878 |
msgstr "Bijlage ID"
|
879 |
|
880 |
-
#: gallery-plugin.php:
|
881 |
msgid "Restore"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: gallery-plugin.php:
|
885 |
msgid "Warning"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: gallery-plugin.php:
|
889 |
msgid "You can add only images to the gallery"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: gallery-plugin.php:
|
893 |
#, fuzzy
|
894 |
msgid "no title"
|
895 |
msgstr "Titel"
|
896 |
|
897 |
-
#: gallery-plugin.php:
|
898 |
#, fuzzy
|
899 |
msgid "Sorry, no gallery found."
|
900 |
msgstr "Sorry, niets gevonden."
|
901 |
|
902 |
-
#: gallery-plugin.php:
|
903 |
#, fuzzy
|
904 |
msgid ""
|
905 |
"Display an album image with the description and the link to a single gallery "
|
@@ -908,93 +890,105 @@ msgstr ""
|
|
908 |
"Als je een korte omschrijving, met een voorbeeld & link naar de galerij "
|
909 |
"pagina, wilt weergeven "
|
910 |
|
911 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
912 |
#, fuzzy
|
913 |
msgid "Install Demo Data"
|
914 |
msgstr "Установка %"
|
915 |
|
916 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
917 |
msgid "Remove Demo Data"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
921 |
msgid "Delete demo-data and restore old plugin settings."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
925 |
msgid "Yes, install demo data"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
929 |
msgid "Are you sure you want to install demo data?"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
933 |
msgid "Yes, remove demo data"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
937 |
msgid "Are you sure you want to remove demo data?"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
941 |
#, fuzzy
|
942 |
msgid "No, go back to the settings page"
|
943 |
msgstr "op de plugin instellingen pagina ("
|
944 |
|
945 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
946 |
msgid "Can not get demo data."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
950 |
msgid "Demo options already installed."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
954 |
msgid "Demo data successfully installed."
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
958 |
msgid "View post with shortcodes"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
962 |
msgid "View page with examples"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
966 |
msgid "Installation of demo data with some errors occurred."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
970 |
msgid "Posts data is missing."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
974 |
msgid "Demo data have already been removed."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
978 |
msgid "Demo data successfully removed."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
982 |
msgid "Removing demo data with some errors occurred."
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
986 |
msgid "Close notice"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
990 |
#, fuzzy
|
991 |
msgid "Install demo data"
|
992 |
msgstr "Установка %"
|
993 |
|
994 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
995 |
msgid "for an acquaintance with the possibilities of the"
|
996 |
msgstr ""
|
997 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
998 |
#~ msgid "Select a border color"
|
999 |
#~ msgstr "Selecteer een randkleur"
|
1000 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:19+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: J Goessens <j.goessens@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
21 |
+
#: gallery-plugin.php:2010
|
22 |
msgid "Settings"
|
23 |
msgstr "Instellingen"
|
24 |
|
25 |
+
#: gallery-plugin.php:139
|
26 |
msgid "See images »"
|
27 |
msgstr "Foto's bekijken »"
|
28 |
|
29 |
+
#: gallery-plugin.php:142
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Galleries"
|
35 |
msgstr "Galerijen"
|
36 |
|
37 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
38 |
msgid "Gallery"
|
39 |
msgstr "Galerij"
|
40 |
|
41 |
+
#: gallery-plugin.php:322
|
42 |
msgid "Add New Gallery"
|
43 |
msgstr "Nieuwe Galerij toevoegen"
|
44 |
|
45 |
+
#: gallery-plugin.php:323
|
46 |
msgid "Edit Gallery"
|
47 |
msgstr "Galerij bewerken"
|
48 |
|
49 |
+
#: gallery-plugin.php:324
|
50 |
msgid "New Gallery"
|
51 |
msgstr "Nieuwe Galerij"
|
52 |
|
53 |
+
#: gallery-plugin.php:325
|
54 |
msgid "View Gallery"
|
55 |
msgstr "Galerij bekijken"
|
56 |
|
57 |
+
#: gallery-plugin.php:326
|
58 |
#, fuzzy
|
59 |
msgid "Search Galleries"
|
60 |
msgstr "Galerijen"
|
61 |
|
62 |
+
#: gallery-plugin.php:327
|
63 |
msgid "No Gallery found"
|
64 |
msgstr "Geen Galerij gevonden"
|
65 |
|
66 |
+
#: gallery-plugin.php:388
|
67 |
msgid "Gallery Shortcode"
|
68 |
msgstr "Galerij Shortcode"
|
69 |
|
70 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
71 |
#, fuzzy
|
72 |
msgid "Gallery Categories"
|
73 |
msgstr "Afmeting galerij foto"
|
74 |
|
75 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
76 |
#, fuzzy, php-format
|
77 |
msgid ""
|
78 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
80 |
"Als je een enkele galerij wilt toevoegen aan je pagina, of bericht, kopieer "
|
81 |
"& plak dan de volgende shortcode in je bericht, of pagina:"
|
82 |
|
83 |
+
#: gallery-plugin.php:405
|
84 |
#, php-format
|
85 |
msgid ""
|
86 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
88 |
"please use the shortcode below"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: gallery-plugin.php:411
|
92 |
msgid ""
|
93 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: gallery-plugin.php:414
|
97 |
#, fuzzy
|
98 |
msgid ""
|
99 |
"Use this shortcode to display an album image with the description and the "
|
102 |
"Als je een korte omschrijving, met een voorbeeld & link naar de galerij "
|
103 |
"pagina, wilt weergeven "
|
104 |
|
105 |
+
#: gallery-plugin.php:416
|
106 |
msgid "Short display"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: gallery-plugin.php:433
|
110 |
msgid "Most Used"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
114 |
msgid "Default"
|
115 |
msgstr "Standaard"
|
116 |
|
117 |
+
#: gallery-plugin.php:443
|
118 |
#, fuzzy
|
119 |
msgid "Add New Gallery Category"
|
120 |
msgstr "Nieuwe Galerij toevoegen"
|
121 |
|
122 |
+
#: gallery-plugin.php:448
|
123 |
#, fuzzy
|
124 |
msgid "Install plugin"
|
125 |
msgstr "Встановлених модулів"
|
126 |
|
127 |
+
#: gallery-plugin.php:610
|
128 |
#, fuzzy
|
129 |
msgid "Gallery Category"
|
130 |
msgstr "Afmeting galerij foto"
|
131 |
|
132 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Sorry, nothing found."
|
134 |
msgstr "Sorry, niets gevonden."
|
135 |
|
136 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
137 |
+
#: gallery-plugin.php:3128
|
138 |
msgid "Title"
|
139 |
msgstr "Titel"
|
140 |
|
141 |
+
#: gallery-plugin.php:1356
|
142 |
msgid "Author"
|
143 |
msgstr "Autheur"
|
144 |
|
145 |
+
#: gallery-plugin.php:1357
|
146 |
#, fuzzy
|
147 |
msgid "Shortcode"
|
148 |
msgstr "Galerij Shortcode"
|
149 |
|
150 |
+
#: gallery-plugin.php:1358
|
151 |
#, fuzzy
|
152 |
msgid "Photos"
|
153 |
msgstr "Foto"
|
154 |
|
155 |
+
#: gallery-plugin.php:1359
|
156 |
msgid "Date"
|
157 |
msgstr "Datum"
|
158 |
|
159 |
+
#: gallery-plugin.php:1547
|
160 |
msgid "Settings are saved"
|
161 |
msgstr "Instellingen opgeslagen"
|
162 |
|
163 |
+
#: gallery-plugin.php:1564
|
164 |
#, fuzzy
|
165 |
msgid "All plugin settings were restored."
|
166 |
msgstr "op de plugin instellingen pagina ("
|
167 |
|
168 |
+
#: gallery-plugin.php:1576
|
169 |
msgid "Gallery Settings"
|
170 |
msgstr "Galerij Instellingen"
|
171 |
|
172 |
+
#: gallery-plugin.php:1579
|
173 |
msgid "Custom code"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: gallery-plugin.php:1580
|
177 |
msgid "Go PRO"
|
178 |
msgstr "Ga PRO"
|
179 |
|
180 |
+
#: gallery-plugin.php:1590
|
181 |
msgid "Please enable JavaScript to use the option to renew images."
|
182 |
msgstr ""
|
183 |
" Javascript dient geactiveerd te zijn, om gebruik te maken van de optie om "
|
184 |
"foto's te vernieuwen."
|
185 |
|
186 |
+
#: gallery-plugin.php:1602
|
187 |
#, php-format
|
188 |
msgid ""
|
189 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
191 |
"please use the shortcode %s, where * stands for gallery ID"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: gallery-plugin.php:1612
|
195 |
+
#, fuzzy
|
196 |
+
msgid "Galleries page"
|
197 |
+
msgstr "Galerijen"
|
198 |
+
|
199 |
+
#: gallery-plugin.php:1622
|
200 |
msgid "Number of images in the row"
|
201 |
msgstr "Aantal foto's op een rij"
|
202 |
|
203 |
+
#: gallery-plugin.php:1624
|
204 |
#, fuzzy
|
205 |
msgid ""
|
206 |
"The number of images per row can be less depending on the width of the "
|
207 |
"parent block"
|
208 |
msgstr "Aantal foto's op een rij"
|
209 |
|
210 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
211 |
msgid "Image size"
|
212 |
msgstr "Foto afmeting"
|
213 |
|
214 |
+
#: gallery-plugin.php:1631
|
215 |
msgid ""
|
216 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
217 |
"upload a new photo."
|
219 |
"WordPress zal een nieuw voorbeeld maken, met de opgegeven afmetingen, als er "
|
220 |
"een nieuwe foto wordt geupload."
|
221 |
|
222 |
+
#: gallery-plugin.php:1633
|
223 |
#, fuzzy
|
224 |
msgid "For the album cover"
|
225 |
msgstr "Foto afmeting voor de omslag van het album"
|
226 |
|
227 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
228 |
msgid "width x height"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
232 |
msgid "in px"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:1637
|
236 |
#, fuzzy
|
237 |
msgid "For thumbnails"
|
238 |
msgstr "Foto afmeting voor de omslag van het album"
|
239 |
|
240 |
+
#: gallery-plugin.php:1641
|
241 |
msgid "Update images for gallery"
|
242 |
msgstr "Foto's voor galerij bijwerken"
|
243 |
|
244 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
245 |
msgid "Close"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: gallery-plugin.php:1657
|
249 |
#, fuzzy
|
250 |
msgid "For images in the lightbox"
|
251 |
msgstr "Foto afmeting voor lightbox"
|
252 |
|
253 |
+
#: gallery-plugin.php:1661
|
254 |
msgid "Display a full size image in the lightbox"
|
255 |
msgstr "Geef volledige grootte weer, voor lightbox"
|
256 |
|
257 |
+
#: gallery-plugin.php:1666
|
258 |
msgid "Crop position"
|
259 |
msgstr "Positie bijsnijden"
|
260 |
|
261 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
262 |
msgid "center"
|
263 |
msgstr "midden"
|
264 |
|
265 |
+
#: gallery-plugin.php:1672
|
266 |
msgid "Horizontal"
|
267 |
msgstr "Horizontaal"
|
268 |
|
269 |
+
#: gallery-plugin.php:1678
|
270 |
msgid "Vertical"
|
271 |
msgstr "Verticaal"
|
272 |
|
273 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
274 |
msgid ""
|
275 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
276 |
msgstr ""
|
277 |
"Als je naar de Pro versie overstapt, zullen alle instellingen en galerijen "
|
278 |
"bewaard blijven."
|
279 |
|
280 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
281 |
#, fuzzy
|
282 |
msgid "Unlock premium options by upgrading to Pro version"
|
283 |
msgstr "Gebruik premium opties, door te upgraden naar een PRO versie."
|
284 |
|
285 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
286 |
msgid "Start Your Trial"
|
287 |
msgstr "Start Uw proefversie"
|
288 |
|
289 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
290 |
msgid "or"
|
291 |
msgstr "of"
|
292 |
|
293 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
294 |
msgid "Learn More"
|
295 |
msgstr "Kom meer te weten"
|
296 |
|
297 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
298 |
msgid "Display image title"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: gallery-plugin.php:1708
|
302 |
#, fuzzy
|
303 |
msgid ""
|
304 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
305 |
msgstr ""
|
306 |
"Schakel het vinkje uit, als je de tekst alleen wilt weergeven in de lightbox"
|
307 |
|
308 |
+
#: gallery-plugin.php:1712
|
309 |
msgid "Images with border"
|
310 |
msgstr "Foto's met rand"
|
311 |
|
312 |
+
#: gallery-plugin.php:1716
|
313 |
msgid "Border width in px, just numbers"
|
314 |
msgstr "Randbreedte in px, alleen nummers"
|
315 |
|
316 |
+
#: gallery-plugin.php:1722
|
317 |
msgid "Sort images"
|
318 |
msgstr "Sorteer foto's"
|
319 |
|
320 |
+
#: gallery-plugin.php:1725
|
321 |
#, fuzzy
|
322 |
msgid "by Attachment ID"
|
323 |
msgstr "Bijlage ID"
|
324 |
|
325 |
+
#: gallery-plugin.php:1726
|
326 |
#, fuzzy
|
327 |
msgid "by Image Name"
|
328 |
msgstr "Foto Naam"
|
329 |
|
330 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
331 |
#, fuzzy
|
332 |
msgid "by Date"
|
333 |
msgstr "Datum"
|
334 |
|
335 |
+
#: gallery-plugin.php:1728
|
336 |
msgid "by Sorting order in the Gallery"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
340 |
msgid "Random"
|
341 |
msgstr "Willekeurig"
|
342 |
|
343 |
+
#: gallery-plugin.php:1734
|
344 |
#, fuzzy
|
345 |
msgid "The images sort order"
|
346 |
msgstr "Foto's met rand"
|
347 |
|
348 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
349 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
350 |
msgstr "ASC (oplopend van laagste naar hoogste waarde - 1, 2, 3; a, b, c)"
|
351 |
|
352 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
353 |
msgid ""
|
354 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
355 |
msgstr "DESC (aflopend van hoogste naar laagste waarde - 3, 2, 1; c, b, a)"
|
356 |
|
357 |
+
#: gallery-plugin.php:1743
|
358 |
#, fuzzy
|
359 |
msgid "Sort galleries"
|
360 |
msgstr "Galerijen"
|
361 |
|
362 |
+
#: gallery-plugin.php:1746
|
363 |
#, fuzzy
|
364 |
msgid "by Gallery ID"
|
365 |
msgstr "Galerij"
|
366 |
|
367 |
+
#: gallery-plugin.php:1747
|
368 |
#, fuzzy
|
369 |
msgid "by Title"
|
370 |
msgstr "Titel"
|
371 |
|
372 |
+
#: gallery-plugin.php:1749
|
373 |
msgid "by Last modified date"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: gallery-plugin.php:1750
|
377 |
msgid "by Comment count"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: gallery-plugin.php:1751
|
381 |
#, fuzzy
|
382 |
msgid "by Sorting order (the input field for sorting order)"
|
383 |
msgstr ""
|
384 |
"Sorteervolgorde (het invoerveld voor sorteervolgorde in het Invoeg / Upload "
|
385 |
"Media Galerij venster)"
|
386 |
|
387 |
+
#: gallery-plugin.php:1752
|
388 |
#, fuzzy
|
389 |
msgid "by Author"
|
390 |
msgstr "Autheur"
|
391 |
|
392 |
+
#: gallery-plugin.php:1758
|
393 |
msgid "The galleries sort order"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: gallery-plugin.php:1767
|
397 |
msgid "Start slideshow"
|
398 |
msgstr "Start diavoorstelling"
|
399 |
|
400 |
+
#: gallery-plugin.php:1770
|
401 |
msgid "Slideshow interval"
|
402 |
msgstr "Diavoorstelling interval"
|
403 |
|
404 |
+
#: gallery-plugin.php:1770
|
405 |
msgid "(ms)"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: gallery-plugin.php:1774
|
409 |
msgid "Use single lightbox for multiple galleries on one page"
|
410 |
msgstr "Gebruik 1 lightbox voor meerdere galerijen op 1 pagina"
|
411 |
|
412 |
+
#: gallery-plugin.php:1780
|
413 |
msgid "Display the Back link"
|
414 |
msgstr "Toon de Terug link"
|
415 |
|
416 |
+
#: gallery-plugin.php:1786
|
417 |
msgid "Display the Back link in the shortcode"
|
418 |
msgstr "Toon de Terug link in de shortcode"
|
419 |
|
420 |
+
#: gallery-plugin.php:1792
|
421 |
msgid "The Back link text"
|
422 |
msgstr "De Terug link tekst"
|
423 |
|
424 |
+
#: gallery-plugin.php:1798
|
425 |
msgid "The Back link URL"
|
426 |
msgstr "De Terug link URL"
|
427 |
|
428 |
+
#: gallery-plugin.php:1801
|
429 |
msgid "Gallery page (Page with Gallery Template)"
|
430 |
msgstr "Galerij pagina (pagina met galerij template)"
|
431 |
|
432 |
+
#: gallery-plugin.php:1803
|
433 |
msgid "(Full URL to custom page)"
|
434 |
msgstr "(Volledige URL naar aangepaste pagina)"
|
435 |
|
436 |
+
#: gallery-plugin.php:1808
|
437 |
msgid "The Read More link text"
|
438 |
msgstr "De 'Lees Meer' link tekst"
|
439 |
|
440 |
+
#: gallery-plugin.php:1814
|
441 |
msgid "Add gallery to the search"
|
442 |
msgstr "Galerij, aan zoeken, toevoegen"
|
443 |
|
444 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
445 |
msgid "Using"
|
446 |
msgstr "Gebruik"
|
447 |
|
448 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
449 |
msgid "powered by"
|
450 |
msgstr "powered by"
|
451 |
|
452 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
453 |
msgid "Activate"
|
454 |
msgstr "Activeren"
|
455 |
|
456 |
+
#: gallery-plugin.php:1826
|
457 |
msgid "Download"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
msgid "Rename gallery post type"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: gallery-plugin.php:1837
|
465 |
msgid ""
|
466 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
467 |
"it now"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: gallery-plugin.php:1838
|
471 |
msgid ""
|
472 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
473 |
"please check settings of your other plugins where 'gallery' post type is used"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: gallery-plugin.php:1851
|
477 |
#, fuzzy
|
478 |
msgid "Single gallery view"
|
479 |
msgstr "Slug voor galerij-item"
|
480 |
|
481 |
+
#: gallery-plugin.php:1854
|
482 |
msgid "Grid"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1855
|
486 |
msgid "Masonry"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: gallery-plugin.php:1863
|
490 |
#, fuzzy
|
491 |
msgid "Under image"
|
492 |
msgstr "Foto's bijwerken"
|
493 |
|
494 |
+
#: gallery-plugin.php:1864
|
495 |
msgid "By mouse hover"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1869
|
499 |
msgid "Use pagination for images"
|
500 |
msgstr "Gebruik paginering voor foto's"
|
501 |
|
502 |
+
#: gallery-plugin.php:1872
|
503 |
msgid "per page"
|
504 |
msgstr "per pagina"
|
505 |
|
506 |
+
#: gallery-plugin.php:1876
|
507 |
msgid "Lightbox background"
|
508 |
msgstr "Lightbox achtergrond"
|
509 |
|
510 |
+
#: gallery-plugin.php:1879
|
511 |
msgid "Background transparency (from 0 to 1)"
|
512 |
msgstr "Achtergrond transparantie (van 0 tot 1)"
|
513 |
|
514 |
+
#: gallery-plugin.php:1885
|
515 |
msgid ""
|
516 |
"Display all images in the lightbox instead of going into a single gallery"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1888
|
520 |
#, php-format
|
521 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:1892
|
525 |
msgid "The lightbox helper"
|
526 |
msgstr "De lightbox helper"
|
527 |
|
528 |
+
#: gallery-plugin.php:1894
|
529 |
msgid "Do not use"
|
530 |
msgstr "Niet gebruiken"
|
531 |
|
532 |
+
#: gallery-plugin.php:1895
|
533 |
msgid "Button helper"
|
534 |
msgstr "Knop helper"
|
535 |
|
536 |
+
#: gallery-plugin.php:1896
|
537 |
msgid "Thumbnail helper"
|
538 |
msgstr "Thumbnail helper"
|
539 |
|
540 |
+
#: gallery-plugin.php:1900
|
541 |
msgid "Display Like buttons in the lightbox"
|
542 |
msgstr "Geef 'Vind ik leuk' knoppen weer, in de lightbox"
|
543 |
|
544 |
+
#: gallery-plugin.php:1904
|
545 |
msgid "FaceBook"
|
546 |
msgstr "FaceBook"
|
547 |
|
548 |
+
#: gallery-plugin.php:1905
|
549 |
msgid "Twitter"
|
550 |
msgstr "Twitter"
|
551 |
|
552 |
+
#: gallery-plugin.php:1906
|
553 |
msgid "Pinterest"
|
554 |
msgstr "Pinterest"
|
555 |
|
556 |
+
#: gallery-plugin.php:1907
|
557 |
msgid "Google +1"
|
558 |
msgstr "Google +1"
|
559 |
|
560 |
+
#: gallery-plugin.php:1910
|
561 |
#, fuzzy
|
562 |
msgid "Show counter"
|
563 |
msgstr "Diavoorstelling interval"
|
564 |
|
565 |
+
#: gallery-plugin.php:1912
|
566 |
msgid "Align"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: gallery-plugin.php:1914
|
570 |
msgid "left"
|
571 |
msgstr "links"
|
572 |
|
573 |
+
#: gallery-plugin.php:1921
|
574 |
msgid "Title for lightbox button"
|
575 |
msgstr "Titel voor lightbox knop"
|
576 |
|
577 |
+
#: gallery-plugin.php:1927
|
578 |
msgid "Slug for gallery item"
|
579 |
msgstr "Slug voor galerij-item"
|
580 |
|
581 |
+
#: gallery-plugin.php:1929
|
582 |
msgid "for any structure of permalinks except the default structure"
|
583 |
msgstr "voor elke structuur van permalink, behalve de standaard structuur"
|
584 |
|
585 |
+
#: gallery-plugin.php:1955
|
586 |
msgid "Save Changes"
|
587 |
msgstr "Wijzigingen Opslaan"
|
588 |
|
589 |
+
#: gallery-plugin.php:1960
|
590 |
msgid ""
|
591 |
"If you install the demo-data, will be created galleries with images, demo-"
|
592 |
"post with available shortcodes and page with a list of all the galleries."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1994
|
596 |
msgid "FAQ"
|
597 |
msgstr "FAQ "
|
598 |
|
599 |
+
#: gallery-plugin.php:1995
|
600 |
msgid "Support"
|
601 |
msgstr "Ondersteuning"
|
602 |
|
603 |
+
#: gallery-plugin.php:2032
|
604 |
msgid "Updating images..."
|
605 |
msgstr "Bijwerken foto's..."
|
606 |
|
607 |
+
#: gallery-plugin.php:2033
|
608 |
#, fuzzy
|
609 |
msgid "No image found."
|
610 |
msgstr "Geen foto gevonden"
|
611 |
|
612 |
+
#: gallery-plugin.php:2034
|
613 |
#, fuzzy
|
614 |
msgid "All images are updated."
|
615 |
msgstr "Alle foto's zijn bijgewerkt"
|
616 |
|
617 |
+
#: gallery-plugin.php:2035
|
618 |
msgid "Error."
|
619 |
msgstr "Fout."
|
620 |
|
621 |
+
#: gallery-plugin.php:2049
|
622 |
msgid ""
|
623 |
"You are about to delete these items from this gallery.\n"
|
624 |
" 'Cancel' to stop, 'OK' to delete."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:2050
|
628 |
msgid ""
|
629 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
630 |
"switching?"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: gallery-plugin.php:2051
|
634 |
msgid "Insert Media"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: gallery-plugin.php:2052
|
638 |
msgid "Insert"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:2064
|
642 |
#, fuzzy
|
643 |
msgid "Learn more"
|
644 |
msgstr "Kom meer te weten"
|
645 |
|
646 |
+
#: gallery-plugin.php:2076
|
647 |
#, fuzzy
|
648 |
msgid "Install now"
|
649 |
msgstr "Установка %"
|
650 |
|
651 |
+
#: gallery-plugin.php:2085
|
652 |
msgid "Add multiple gallery categories"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: gallery-plugin.php:2085
|
656 |
msgid ""
|
657 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: gallery-plugin.php:2405
|
661 |
+
msgid "Download high resolution image"
|
662 |
+
msgstr "Download hoge-resolutie foto"
|
663 |
+
|
664 |
+
#: gallery-plugin.php:2417
|
665 |
+
msgid "Image"
|
666 |
+
msgstr "Foto"
|
667 |
+
|
668 |
+
#: gallery-plugin.php:2558
|
669 |
msgid "Image size not defined"
|
670 |
msgstr "Afmetingen van foto, niet gedefinieerd"
|
671 |
|
672 |
+
#: gallery-plugin.php:2573
|
673 |
msgid ""
|
674 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
675 |
"manually reload image."
|
677 |
"We kunnen alleen de volgende bestandstypen bijwerken: PNG, JPG, GIF, WPMP of "
|
678 |
"XBM (Voor overige, aub handmatig herladen)."
|
679 |
|
680 |
+
#: gallery-plugin.php:2584
|
681 |
msgid "Image size changes not defined"
|
682 |
msgstr "Wijzigingen van foto afmetingen, niet gedefinieerd"
|
683 |
|
684 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
685 |
msgid "Invalid path"
|
686 |
msgstr "Ongeldig pad"
|
687 |
|
688 |
+
#: gallery-plugin.php:2694
|
689 |
msgid "Add images requires JavaScript."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: gallery-plugin.php:2697
|
693 |
msgid "Add Media"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2707
|
697 |
msgid "The grid view for the Gallery images requires JavaScript."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2707
|
701 |
msgid "Switch to the list view"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: gallery-plugin.php:2734
|
705 |
msgid "List View"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: gallery-plugin.php:2735
|
709 |
msgid "Grid View"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2790
|
713 |
msgid "Filter"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: gallery-plugin.php:2794
|
717 |
msgid "Empty Trash"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: gallery-plugin.php:2815
|
721 |
#, fuzzy
|
722 |
msgid "No images found"
|
723 |
msgstr "Geen foto gevonden"
|
724 |
|
725 |
+
#: gallery-plugin.php:2867
|
726 |
msgid "Select bulk action"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: gallery-plugin.php:2869
|
730 |
msgid "Bulk Actions"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: gallery-plugin.php:2879
|
734 |
msgid "Apply"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
738 |
#, fuzzy
|
739 |
msgid "Delete from Gallery"
|
740 |
msgstr "Nieuwe Galerij"
|
741 |
|
742 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
743 |
#, fuzzy
|
744 |
msgid "Display link to the original file under each image in the lightbox"
|
745 |
msgstr "Geef volledige grootte weer, voor lightbox"
|
746 |
|
747 |
+
#: gallery-plugin.php:2908
|
748 |
msgid "Bulk Select"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: gallery-plugin.php:2910
|
752 |
msgid "Cancel Selection"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: gallery-plugin.php:2911
|
756 |
msgid "Delete Selected"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: gallery-plugin.php:2924
|
760 |
msgid "File"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
764 |
msgid "Dimensions"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
768 |
msgid "Alt tag"
|
769 |
msgstr "Alt tag"
|
770 |
|
771 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
772 |
msgid ""
|
773 |
"The alt attribute specifies an alternate text for an image, if the image "
|
774 |
"cannot be displayed."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
778 |
msgid "Custom URL"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
782 |
msgid ""
|
783 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
784 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:3006
|
788 |
msgid "Deselect"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: gallery-plugin.php:3012
|
792 |
msgid "File name"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: gallery-plugin.php:3013
|
796 |
msgid "File type"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
800 |
#, fuzzy
|
801 |
msgid "Edit Attachment Info"
|
802 |
msgstr "Bijlage ID"
|
803 |
|
804 |
+
#: gallery-plugin.php:3017
|
805 |
#, fuzzy
|
806 |
msgid "Edit Attachment"
|
807 |
msgstr "Bijlage ID"
|
808 |
|
809 |
+
#: gallery-plugin.php:3027
|
810 |
#, fuzzy
|
811 |
msgid "Go Pro"
|
812 |
msgstr "Ga PRO"
|
813 |
|
814 |
+
#: gallery-plugin.php:3027
|
815 |
msgid "Pro version"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: gallery-plugin.php:3030
|
819 |
msgid "This setting is available in Pro version"
|
820 |
msgstr "Deze instelling is alleen beschikbaar in de Pro versie"
|
821 |
|
822 |
+
#: gallery-plugin.php:3063
|
823 |
msgid "Edit more details"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: gallery-plugin.php:3098
|
827 |
#, php-format
|
828 |
msgid "Select %s"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: gallery-plugin.php:3111
|
832 |
#, php-format
|
833 |
msgid "Edit “%s”"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
837 |
msgid "Edit"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
841 |
msgid "Trash"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
845 |
msgid "Delete Permanently"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
849 |
#, php-format
|
850 |
msgid "View “%s”"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
854 |
msgid "View"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: gallery-plugin.php:3166
|
858 |
#, fuzzy
|
859 |
msgid "Attach"
|
860 |
msgstr "Bijlage ID"
|
861 |
|
862 |
+
#: gallery-plugin.php:3172
|
863 |
msgid "Restore"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: gallery-plugin.php:3303
|
867 |
msgid "Warning"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: gallery-plugin.php:3303
|
871 |
msgid "You can add only images to the gallery"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: gallery-plugin.php:3345
|
875 |
#, fuzzy
|
876 |
msgid "no title"
|
877 |
msgstr "Titel"
|
878 |
|
879 |
+
#: gallery-plugin.php:3353
|
880 |
#, fuzzy
|
881 |
msgid "Sorry, no gallery found."
|
882 |
msgstr "Sorry, niets gevonden."
|
883 |
|
884 |
+
#: gallery-plugin.php:3359
|
885 |
#, fuzzy
|
886 |
msgid ""
|
887 |
"Display an album image with the description and the link to a single gallery "
|
890 |
"Als je een korte omschrijving, met een voorbeeld & link naar de galerij "
|
891 |
"pagina, wilt weergeven "
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
894 |
#, fuzzy
|
895 |
msgid "Install Demo Data"
|
896 |
msgstr "Установка %"
|
897 |
|
898 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
899 |
msgid "Remove Demo Data"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
903 |
msgid "Delete demo-data and restore old plugin settings."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
907 |
msgid "Yes, install demo data"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
911 |
msgid "Are you sure you want to install demo data?"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
915 |
msgid "Yes, remove demo data"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
919 |
msgid "Are you sure you want to remove demo data?"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
923 |
#, fuzzy
|
924 |
msgid "No, go back to the settings page"
|
925 |
msgstr "op de plugin instellingen pagina ("
|
926 |
|
927 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
928 |
msgid "Can not get demo data."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
932 |
msgid "Demo options already installed."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
936 |
msgid "Demo data successfully installed."
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
940 |
msgid "View post with shortcodes"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
944 |
msgid "View page with examples"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
948 |
msgid "Installation of demo data with some errors occurred."
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
952 |
msgid "Posts data is missing."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
956 |
msgid "Demo data have already been removed."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
960 |
msgid "Demo data successfully removed."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
964 |
msgid "Removing demo data with some errors occurred."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
968 |
msgid "Close notice"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
972 |
#, fuzzy
|
973 |
msgid "Install demo data"
|
974 |
msgstr "Установка %"
|
975 |
|
976 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
977 |
msgid "for an acquaintance with the possibilities of the"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#, fuzzy
|
981 |
+
#~ msgid ""
|
982 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
983 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
984 |
+
#~ "theme for the correct work of the Gallery plugin"
|
985 |
+
#~ msgstr ""
|
986 |
+
#~ "De volgende bestanden \"gallery-template.php\" en \"gallery-single-"
|
987 |
+
#~ "template.php\" werden niet in de actieve 'theme' map gevonden. Voor de "
|
988 |
+
#~ "correcte werking van deze plugin, dienen ze vanuit `/wp-content/plugins/"
|
989 |
+
#~ "gallery-plugin/template/` naar de actieve 'theme' map te worden "
|
990 |
+
#~ "gekopieerd. "
|
991 |
+
|
992 |
#~ msgid "Select a border color"
|
993 |
#~ msgstr "Selecteer een randkleur"
|
994 |
|
languages/gallery-plugin-pt_BR.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -20,87 +20,74 @@ msgstr ""
|
|
20 |
|
21 |
# @ bestwebsoft
|
22 |
# @ gallery
|
23 |
-
#: gallery-plugin.php:
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Configurações"
|
27 |
|
28 |
# @ gallery
|
29 |
-
#: gallery-plugin.php:
|
30 |
msgid "See images »"
|
31 |
msgstr "Ver imagens »"
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ gallery
|
38 |
-
#: gallery-plugin.php:
|
39 |
-
#, fuzzy, php-format
|
40 |
-
msgid ""
|
41 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
42 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
43 |
-
"theme for the correct work of the Gallery plugin"
|
44 |
-
msgstr ""
|
45 |
-
"Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template."
|
46 |
-
"php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a "
|
47 |
-
"partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o "
|
48 |
-
"diretório do seu tema para que o plugin Galeria funcione corretamente"
|
49 |
-
|
50 |
-
# @ gallery
|
51 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
52 |
msgid "Galleries"
|
53 |
msgstr "Galerias"
|
54 |
|
55 |
# @ gallery
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "Gallery"
|
58 |
msgstr "Galeria"
|
59 |
|
60 |
# @ gallery
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Add New Gallery"
|
63 |
msgstr "Adicionar Nova Galeria"
|
64 |
|
65 |
# @ gallery
|
66 |
-
#: gallery-plugin.php:
|
67 |
msgid "Edit Gallery"
|
68 |
msgstr "Editar Galeria"
|
69 |
|
70 |
# @ gallery
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "New Gallery"
|
73 |
msgstr "Nova Galeria"
|
74 |
|
75 |
# @ gallery
|
76 |
-
#: gallery-plugin.php:
|
77 |
msgid "View Gallery"
|
78 |
msgstr "Ver Galeria"
|
79 |
|
80 |
# @ gallery
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Search Galleries"
|
84 |
msgstr "Galerias"
|
85 |
|
86 |
# @ gallery
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "No Gallery found"
|
89 |
msgstr "Nenhuma Galeria foi encontrada"
|
90 |
|
91 |
# @ gallery
|
92 |
-
#: gallery-plugin.php:
|
93 |
msgid "Gallery Shortcode"
|
94 |
msgstr "Shortcode da Galeria"
|
95 |
|
96 |
# @ gallery
|
97 |
-
#: gallery-plugin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Gallery Categories"
|
100 |
msgstr "Tamanho da imagem da galeria"
|
101 |
|
102 |
# @ gallery
|
103 |
-
#: gallery-plugin.php:
|
104 |
#, fuzzy, php-format
|
105 |
msgid ""
|
106 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -108,7 +95,7 @@ msgstr ""
|
|
108 |
"Se você quiser adicionar uma Galeria específica em sua página ou post, basta "
|
109 |
"copiar e colar este shortcode em seu post ou página:"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
#, php-format
|
113 |
msgid ""
|
114 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -116,13 +103,13 @@ msgid ""
|
|
116 |
"please use the shortcode below"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid ""
|
121 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
122 |
msgstr ""
|
123 |
|
124 |
# @ gallery
|
125 |
-
#: gallery-plugin.php:
|
126 |
#, fuzzy
|
127 |
msgid ""
|
128 |
"Use this shortcode to display an album image with the description and the "
|
@@ -131,109 +118,99 @@ msgstr ""
|
|
131 |
"Se você quiser mostrar uma breve descrição contendo a miniatura e o link "
|
132 |
"para a Página da Galeria use assim"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Short display"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "Most Used"
|
140 |
msgstr ""
|
141 |
|
142 |
# @ gallery
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Default"
|
145 |
msgstr "Padrão"
|
146 |
|
147 |
# @ gallery
|
148 |
-
#: gallery-plugin.php:
|
149 |
#, fuzzy
|
150 |
msgid "Add New Gallery Category"
|
151 |
msgstr "Adicionar Nova Galeria"
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Install plugin"
|
155 |
msgstr ""
|
156 |
|
157 |
# @ gallery
|
158 |
-
#: gallery-plugin.php:
|
159 |
#, fuzzy
|
160 |
msgid "Gallery Category"
|
161 |
msgstr "Tamanho da imagem da galeria"
|
162 |
|
163 |
# @ gallery
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
msgid "Download high resolution image"
|
166 |
-
msgstr "Download de imagem de alta resolução"
|
167 |
-
|
168 |
-
# @ gallery
|
169 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
170 |
-
msgid "Image"
|
171 |
-
msgstr "Imagem"
|
172 |
-
|
173 |
-
# @ gallery
|
174 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
175 |
msgid "Sorry, nothing found."
|
176 |
msgstr "Desculpe, nada foi encontrado."
|
177 |
|
178 |
# @ gallery
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Title"
|
182 |
msgstr "Título"
|
183 |
|
184 |
# @ gallery
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Author"
|
187 |
msgstr "Autor"
|
188 |
|
189 |
# @ gallery
|
190 |
-
#: gallery-plugin.php:
|
191 |
#, fuzzy
|
192 |
msgid "Shortcode"
|
193 |
msgstr "Shortcode da Galeria"
|
194 |
|
195 |
# @ gallery
|
196 |
-
#: gallery-plugin.php:
|
197 |
#, fuzzy
|
198 |
msgid "Photos"
|
199 |
msgstr "Foto"
|
200 |
|
201 |
# @ gallery
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "Date"
|
204 |
msgstr "Data"
|
205 |
|
206 |
# @ gallery
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Settings are saved"
|
209 |
msgstr "As configurações estão salvas"
|
210 |
|
211 |
# @ gallery
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, fuzzy
|
214 |
msgid "All plugin settings were restored."
|
215 |
msgstr "da página de configurações do plugin ("
|
216 |
|
217 |
# @ gallery
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Gallery Settings"
|
220 |
msgstr "Configurações da Galeria"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "Custom code"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Go PRO"
|
228 |
msgstr ""
|
229 |
|
230 |
# @ gallery
|
231 |
-
#: gallery-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "Please enable JavaScript to use the option to renew images."
|
234 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -242,12 +219,18 @@ msgid ""
|
|
242 |
msgstr ""
|
243 |
|
244 |
# @ gallery
|
245 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "Number of images in the row"
|
247 |
msgstr "Número de imagens por linha"
|
248 |
|
249 |
# @ gallery
|
250 |
-
#: gallery-plugin.php:
|
251 |
#, fuzzy
|
252 |
msgid ""
|
253 |
"The number of images per row can be less depending on the width of the "
|
@@ -255,12 +238,12 @@ msgid ""
|
|
255 |
msgstr "Número de imagens por linha"
|
256 |
|
257 |
# @ gallery
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Image size"
|
260 |
msgstr "Tamanho da imagem"
|
261 |
|
262 |
# @ gallery
|
263 |
-
#: gallery-plugin.php:
|
264 |
msgid ""
|
265 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
266 |
"upload a new photo."
|
@@ -269,91 +252,91 @@ msgstr ""
|
|
269 |
"você enviar uma nova foto."
|
270 |
|
271 |
# @ gallery
|
272 |
-
#: gallery-plugin.php:
|
273 |
#, fuzzy
|
274 |
msgid "For the album cover"
|
275 |
msgstr "Tamanho da imagem de capa do álbum"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "width x height"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "in px"
|
283 |
msgstr ""
|
284 |
|
285 |
# @ gallery
|
286 |
-
#: gallery-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "For thumbnails"
|
289 |
msgstr "Tamanho da imagem de capa do álbum"
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
msgid "Update images for gallery"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
msgid "Close"
|
297 |
msgstr ""
|
298 |
|
299 |
# @ gallery
|
300 |
-
#: gallery-plugin.php:
|
301 |
#, fuzzy
|
302 |
msgid "For images in the lightbox"
|
303 |
msgstr "Tamanho da imagem da galeria no Lightbox"
|
304 |
|
305 |
# @ gallery
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid "Display a full size image in the lightbox"
|
308 |
msgstr "Exibir a imagem em tamanho original no Lightbox"
|
309 |
|
310 |
# @ gallery
|
311 |
-
#: gallery-plugin.php:
|
312 |
msgid "Crop position"
|
313 |
msgstr "Posição de recorte"
|
314 |
|
315 |
# @ gallery
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "center"
|
318 |
msgstr "centro"
|
319 |
|
320 |
# @ gallery
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Horizontal"
|
323 |
msgstr "Horizontal"
|
324 |
|
325 |
# @ gallery
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Vertical"
|
328 |
msgstr "Vertical"
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid ""
|
332 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "Unlock premium options by upgrading to Pro version"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "Start Your Trial"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid "or"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
msgid "Learn More"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Display image title"
|
353 |
msgstr ""
|
354 |
|
355 |
# @ gallery
|
356 |
-
#: gallery-plugin.php:
|
357 |
#, fuzzy
|
358 |
msgid ""
|
359 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
@@ -362,62 +345,62 @@ msgstr ""
|
|
362 |
"lightbox"
|
363 |
|
364 |
# @ gallery
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "Images with border"
|
367 |
msgstr "Imagens com borda"
|
368 |
|
369 |
# @ gallery
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "Border width in px, just numbers"
|
372 |
msgstr "Largura da borda em px, apenas os números"
|
373 |
|
374 |
# @ gallery
|
375 |
-
#: gallery-plugin.php:
|
376 |
msgid "Sort images"
|
377 |
msgstr "Ordenar imagens:"
|
378 |
|
379 |
# @ gallery
|
380 |
-
#: gallery-plugin.php:
|
381 |
#, fuzzy
|
382 |
msgid "by Attachment ID"
|
383 |
msgstr "ID do anexo"
|
384 |
|
385 |
# @ gallery
|
386 |
-
#: gallery-plugin.php:
|
387 |
#, fuzzy
|
388 |
msgid "by Image Name"
|
389 |
msgstr "Nome da Imagem"
|
390 |
|
391 |
# @ gallery
|
392 |
-
#: gallery-plugin.php:
|
393 |
#, fuzzy
|
394 |
msgid "by Date"
|
395 |
msgstr "Data"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
msgid "by Sorting order in the Gallery"
|
399 |
msgstr ""
|
400 |
|
401 |
# @ gallery
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "Random"
|
404 |
msgstr "Aleatório"
|
405 |
|
406 |
# @ gallery
|
407 |
-
#: gallery-plugin.php:
|
408 |
#, fuzzy
|
409 |
msgid "The images sort order"
|
410 |
msgstr "Imagens com borda"
|
411 |
|
412 |
# @ gallery
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
415 |
msgstr ""
|
416 |
"ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; "
|
417 |
"a, b, c)"
|
418 |
|
419 |
# @ gallery
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid ""
|
422 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
423 |
msgstr ""
|
@@ -425,569 +408,568 @@ msgstr ""
|
|
425 |
"1; c, b, a)"
|
426 |
|
427 |
# @ gallery
|
428 |
-
#: gallery-plugin.php:
|
429 |
#, fuzzy
|
430 |
msgid "Sort galleries"
|
431 |
msgstr "Galerias"
|
432 |
|
433 |
# @ gallery
|
434 |
-
#: gallery-plugin.php:
|
435 |
#, fuzzy
|
436 |
msgid "by Gallery ID"
|
437 |
msgstr "Galeria"
|
438 |
|
439 |
# @ gallery
|
440 |
-
#: gallery-plugin.php:
|
441 |
#, fuzzy
|
442 |
msgid "by Title"
|
443 |
msgstr "Título"
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "by Last modified date"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "by Comment count"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "by Sorting order (the input field for sorting order)"
|
455 |
msgstr ""
|
456 |
|
457 |
# @ gallery
|
458 |
-
#: gallery-plugin.php:
|
459 |
#, fuzzy
|
460 |
msgid "by Author"
|
461 |
msgstr "Autor"
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
msgid "The galleries sort order"
|
465 |
msgstr ""
|
466 |
|
467 |
# @ gallery
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Start slideshow"
|
470 |
msgstr "Iniciar Apresentação de Slides"
|
471 |
|
472 |
# @ gallery
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "Slideshow interval"
|
475 |
msgstr "Intervalo de tempo entre cada Slide"
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid "(ms)"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid "Use single lightbox for multiple galleries on one page"
|
483 |
msgstr ""
|
484 |
|
485 |
# @ gallery
|
486 |
-
#: gallery-plugin.php:
|
487 |
msgid "Display the Back link"
|
488 |
msgstr "Exibir o link Voltar"
|
489 |
|
490 |
# @ gallery
|
491 |
-
#: gallery-plugin.php:
|
492 |
msgid "Display the Back link in the shortcode"
|
493 |
msgstr "Exibir o link Voltar no shortcode"
|
494 |
|
495 |
# @ gallery
|
496 |
-
#: gallery-plugin.php:
|
497 |
msgid "The Back link text"
|
498 |
msgstr "Texto do link Voltar"
|
499 |
|
500 |
# @ gallery
|
501 |
-
#: gallery-plugin.php:
|
502 |
msgid "The Back link URL"
|
503 |
msgstr "URL do link Voltar"
|
504 |
|
505 |
# @ gallery
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "Gallery page (Page with Gallery Template)"
|
508 |
msgstr "Página da Galeria (página usando o Modelo de Galeria)"
|
509 |
|
510 |
# @ gallery
|
511 |
-
#: gallery-plugin.php:
|
512 |
msgid "(Full URL to custom page)"
|
513 |
msgstr "(URL completa para a página personalizada)"
|
514 |
|
515 |
# @ gallery
|
516 |
-
#: gallery-plugin.php:
|
517 |
msgid "The Read More link text"
|
518 |
msgstr "Texto do link Leia Mais"
|
519 |
|
520 |
-
#: gallery-plugin.php:
|
521 |
msgid "Add gallery to the search"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: gallery-plugin.php:
|
525 |
msgid "Using"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: gallery-plugin.php:
|
529 |
msgid "powered by"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: gallery-plugin.php:
|
533 |
msgid "Activate"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: gallery-plugin.php:
|
537 |
msgid "Download"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
-
msgid "Rewrite templates after update"
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: gallery-plugin.php:1929
|
545 |
-
#, php-format
|
546 |
-
msgid ""
|
547 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
548 |
-
"theme folder and You don't want to rewrite them"
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: gallery-plugin.php:1934
|
552 |
msgid "Rename gallery post type"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: gallery-plugin.php:
|
556 |
msgid ""
|
557 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
558 |
"it now"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: gallery-plugin.php:
|
562 |
msgid ""
|
563 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
564 |
"please check settings of your other plugins where 'gallery' post type is used"
|
565 |
msgstr ""
|
566 |
|
567 |
# @ gallery
|
568 |
-
#: gallery-plugin.php:
|
569 |
#, fuzzy
|
570 |
msgid "Single gallery view"
|
571 |
msgstr "Slug para o item da galeria"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
msgid "Grid"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: gallery-plugin.php:
|
578 |
msgid "Masonry"
|
579 |
msgstr ""
|
580 |
|
581 |
# @ gallery
|
582 |
-
#: gallery-plugin.php:
|
583 |
#, fuzzy
|
584 |
msgid "Under image"
|
585 |
msgstr "ordenar imagens"
|
586 |
|
587 |
-
#: gallery-plugin.php:
|
588 |
msgid "By mouse hover"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: gallery-plugin.php:
|
592 |
msgid "Use pagination for images"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "per page"
|
597 |
msgstr ""
|
598 |
|
599 |
# @ gallery
|
600 |
-
#: gallery-plugin.php:
|
601 |
msgid "Lightbox background"
|
602 |
msgstr "Fundo do Lightbox"
|
603 |
|
604 |
# @ gallery
|
605 |
-
#: gallery-plugin.php:
|
606 |
msgid "Background transparency (from 0 to 1)"
|
607 |
msgstr "Transparência de background (de 0 a 1)"
|
608 |
|
609 |
-
#: gallery-plugin.php:
|
610 |
msgid ""
|
611 |
"Display all images in the lightbox instead of going into a single gallery"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: gallery-plugin.php:
|
615 |
#, php-format
|
616 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: gallery-plugin.php:
|
620 |
msgid "The lightbox helper"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: gallery-plugin.php:
|
624 |
msgid "Do not use"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: gallery-plugin.php:
|
628 |
msgid "Button helper"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: gallery-plugin.php:
|
632 |
msgid "Thumbnail helper"
|
633 |
msgstr ""
|
634 |
|
635 |
# @ gallery
|
636 |
-
#: gallery-plugin.php:
|
637 |
msgid "Display Like buttons in the lightbox"
|
638 |
msgstr "Exibir botões de Curtir no Lightbox"
|
639 |
|
640 |
# @ gallery
|
641 |
-
#: gallery-plugin.php:
|
642 |
msgid "FaceBook"
|
643 |
msgstr "Facebook"
|
644 |
|
645 |
# @ gallery
|
646 |
-
#: gallery-plugin.php:
|
647 |
msgid "Twitter"
|
648 |
msgstr "Twitter"
|
649 |
|
650 |
# @ gallery
|
651 |
-
#: gallery-plugin.php:
|
652 |
msgid "Pinterest"
|
653 |
msgstr "Pinterest"
|
654 |
|
655 |
# @ gallery
|
656 |
-
#: gallery-plugin.php:
|
657 |
msgid "Google +1"
|
658 |
msgstr "Google +1"
|
659 |
|
660 |
# @ gallery
|
661 |
-
#: gallery-plugin.php:
|
662 |
#, fuzzy
|
663 |
msgid "Show counter"
|
664 |
msgstr "Intervalo de tempo entre cada Slide"
|
665 |
|
666 |
-
#: gallery-plugin.php:
|
667 |
msgid "Align"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: gallery-plugin.php:
|
671 |
msgid "left"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: gallery-plugin.php:
|
675 |
msgid "Title for lightbox button"
|
676 |
msgstr ""
|
677 |
|
678 |
# @ gallery
|
679 |
-
#: gallery-plugin.php:
|
680 |
msgid "Slug for gallery item"
|
681 |
msgstr "Slug para o item da galeria"
|
682 |
|
683 |
# @ gallery
|
684 |
-
#: gallery-plugin.php:
|
685 |
msgid "for any structure of permalinks except the default structure"
|
686 |
msgstr ""
|
687 |
"para qualquer estrutura de links permanentes, exceto a estrutura padrão"
|
688 |
|
689 |
# @ default
|
690 |
-
#: gallery-plugin.php:
|
691 |
msgid "Save Changes"
|
692 |
msgstr "Salvar Alterações"
|
693 |
|
694 |
-
#: gallery-plugin.php:
|
695 |
msgid ""
|
696 |
"If you install the demo-data, will be created galleries with images, demo-"
|
697 |
"post with available shortcodes and page with a list of all the galleries."
|
698 |
msgstr ""
|
699 |
|
700 |
# @ gallery
|
701 |
-
#: gallery-plugin.php:
|
702 |
msgid "FAQ"
|
703 |
msgstr "FAQ"
|
704 |
|
705 |
# @ gallery
|
706 |
-
#: gallery-plugin.php:
|
707 |
msgid "Support"
|
708 |
msgstr "Suporte"
|
709 |
|
710 |
-
#: gallery-plugin.php:
|
711 |
msgid "Updating images..."
|
712 |
msgstr ""
|
713 |
|
714 |
# @ gallery
|
715 |
-
#: gallery-plugin.php:
|
716 |
#, fuzzy
|
717 |
msgid "No image found."
|
718 |
msgstr "Nenhuma Galeria foi encontrada"
|
719 |
|
720 |
-
#: gallery-plugin.php:
|
721 |
msgid "All images are updated."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: gallery-plugin.php:
|
725 |
msgid "Error."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: gallery-plugin.php:
|
729 |
msgid ""
|
730 |
"You are about to delete these items from this gallery.\n"
|
731 |
" 'Cancel' to stop, 'OK' to delete."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
msgid ""
|
736 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
737 |
"switching?"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: gallery-plugin.php:
|
741 |
msgid "Insert Media"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: gallery-plugin.php:
|
745 |
msgid "Insert"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: gallery-plugin.php:
|
749 |
msgid "Learn more"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: gallery-plugin.php:
|
753 |
msgid "Install now"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: gallery-plugin.php:
|
757 |
msgid "Add multiple gallery categories"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: gallery-plugin.php:
|
761 |
msgid ""
|
762 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
763 |
msgstr ""
|
764 |
|
765 |
# @ gallery
|
766 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
#, fuzzy
|
768 |
msgid "Image size not defined"
|
769 |
msgstr "Tamanho da imagem"
|
770 |
|
771 |
-
#: gallery-plugin.php:
|
772 |
msgid ""
|
773 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
774 |
"manually reload image."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid "Image size changes not defined"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: gallery-plugin.php:
|
782 |
msgid "Invalid path"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid "Add images requires JavaScript."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: gallery-plugin.php:
|
790 |
msgid "Add Media"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: gallery-plugin.php:
|
794 |
msgid "The grid view for the Gallery images requires JavaScript."
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: gallery-plugin.php:
|
798 |
msgid "Switch to the list view"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: gallery-plugin.php:
|
802 |
msgid "List View"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: gallery-plugin.php:
|
806 |
msgid "Grid View"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: gallery-plugin.php:
|
810 |
msgid "Filter"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: gallery-plugin.php:
|
814 |
msgid "Empty Trash"
|
815 |
msgstr ""
|
816 |
|
817 |
# @ gallery
|
818 |
-
#: gallery-plugin.php:
|
819 |
#, fuzzy
|
820 |
msgid "No images found"
|
821 |
msgstr "Nenhuma Galeria foi encontrada"
|
822 |
|
823 |
-
#: gallery-plugin.php:
|
824 |
msgid "Select bulk action"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
msgid "Bulk Actions"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: gallery-plugin.php:
|
832 |
msgid "Apply"
|
833 |
msgstr ""
|
834 |
|
835 |
# @ gallery
|
836 |
-
#: gallery-plugin.php:
|
837 |
#, fuzzy
|
838 |
msgid "Delete from Gallery"
|
839 |
msgstr "Nova Galeria"
|
840 |
|
841 |
# @ gallery
|
842 |
-
#: gallery-plugin.php:
|
843 |
#, fuzzy
|
844 |
msgid "Display link to the original file under each image in the lightbox"
|
845 |
msgstr "Exibir a imagem em tamanho original no Lightbox"
|
846 |
|
847 |
-
#: gallery-plugin.php:
|
848 |
msgid "Bulk Select"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: gallery-plugin.php:
|
852 |
msgid "Cancel Selection"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: gallery-plugin.php:
|
856 |
msgid "Delete Selected"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: gallery-plugin.php:
|
860 |
msgid "File"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: gallery-plugin.php:
|
864 |
msgid "Dimensions"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: gallery-plugin.php:
|
868 |
msgid "Alt tag"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: gallery-plugin.php:
|
872 |
msgid ""
|
873 |
"The alt attribute specifies an alternate text for an image, if the image "
|
874 |
"cannot be displayed."
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: gallery-plugin.php:
|
878 |
msgid "Custom URL"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: gallery-plugin.php:
|
882 |
msgid ""
|
883 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
884 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: gallery-plugin.php:
|
888 |
msgid "Deselect"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: gallery-plugin.php:
|
892 |
msgid "File name"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: gallery-plugin.php:
|
896 |
msgid "File type"
|
897 |
msgstr ""
|
898 |
|
899 |
# @ gallery
|
900 |
-
#: gallery-plugin.php:
|
901 |
#, fuzzy
|
902 |
msgid "Edit Attachment Info"
|
903 |
msgstr "ID do anexo"
|
904 |
|
905 |
# @ gallery
|
906 |
-
#: gallery-plugin.php:
|
907 |
#, fuzzy
|
908 |
msgid "Edit Attachment"
|
909 |
msgstr "ID do anexo"
|
910 |
|
911 |
-
#: gallery-plugin.php:
|
912 |
msgid "Go Pro"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: gallery-plugin.php:
|
916 |
msgid "Pro version"
|
917 |
msgstr ""
|
918 |
|
919 |
# @ gallery
|
920 |
-
#: gallery-plugin.php:
|
921 |
msgid "This setting is available in Pro version"
|
922 |
msgstr "Esta configuração está disponível na versão Pro"
|
923 |
|
924 |
-
#: gallery-plugin.php:
|
925 |
msgid "Edit more details"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: gallery-plugin.php:
|
929 |
#, php-format
|
930 |
msgid "Select %s"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: gallery-plugin.php:
|
934 |
#, php-format
|
935 |
msgid "Edit “%s”"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: gallery-plugin.php:
|
939 |
msgid "Edit"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: gallery-plugin.php:
|
943 |
msgid "Trash"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: gallery-plugin.php:
|
947 |
msgid "Delete Permanently"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: gallery-plugin.php:
|
951 |
#, php-format
|
952 |
msgid "View “%s”"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: gallery-plugin.php:
|
956 |
msgid "View"
|
957 |
msgstr ""
|
958 |
|
959 |
# @ gallery
|
960 |
-
#: gallery-plugin.php:
|
961 |
#, fuzzy
|
962 |
msgid "Attach"
|
963 |
msgstr "ID do anexo"
|
964 |
|
965 |
-
#: gallery-plugin.php:
|
966 |
msgid "Restore"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: gallery-plugin.php:
|
970 |
msgid "Warning"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: gallery-plugin.php:
|
974 |
msgid "You can add only images to the gallery"
|
975 |
msgstr ""
|
976 |
|
977 |
# @ gallery
|
978 |
-
#: gallery-plugin.php:
|
979 |
#, fuzzy
|
980 |
msgid "no title"
|
981 |
msgstr "Título"
|
982 |
|
983 |
# @ gallery
|
984 |
-
#: gallery-plugin.php:
|
985 |
#, fuzzy
|
986 |
msgid "Sorry, no gallery found."
|
987 |
msgstr "Desculpe, nada foi encontrado."
|
988 |
|
989 |
# @ gallery
|
990 |
-
#: gallery-plugin.php:
|
991 |
#, fuzzy
|
992 |
msgid ""
|
993 |
"Display an album image with the description and the link to a single gallery "
|
@@ -996,92 +978,105 @@ msgstr ""
|
|
996 |
"Se você quiser mostrar uma breve descrição contendo a miniatura e o link "
|
997 |
"para a Página da Galeria use assim"
|
998 |
|
999 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1000 |
msgid "Install Demo Data"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1004 |
msgid "Remove Demo Data"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1008 |
msgid "Delete demo-data and restore old plugin settings."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1012 |
msgid "Yes, install demo data"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1016 |
msgid "Are you sure you want to install demo data?"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1020 |
msgid "Yes, remove demo data"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1024 |
msgid "Are you sure you want to remove demo data?"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
# @ gallery
|
1028 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1029 |
#, fuzzy
|
1030 |
msgid "No, go back to the settings page"
|
1031 |
msgstr "da página de configurações do plugin ("
|
1032 |
|
1033 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1034 |
msgid "Can not get demo data."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1038 |
msgid "Demo options already installed."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1042 |
msgid "Demo data successfully installed."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1046 |
msgid "View post with shortcodes"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1050 |
msgid "View page with examples"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1054 |
msgid "Installation of demo data with some errors occurred."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1058 |
msgid "Posts data is missing."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1062 |
msgid "Demo data have already been removed."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1066 |
msgid "Demo data successfully removed."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1070 |
msgid "Removing demo data with some errors occurred."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1074 |
msgid "Close notice"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1078 |
msgid "Install demo data"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
1082 |
msgid "for an acquaintance with the possibilities of the"
|
1083 |
msgstr ""
|
1084 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
# @ gallery
|
1086 |
#~ msgid "Select a border color"
|
1087 |
#~ msgstr "Escolha a cor da borda"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:20+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
20 |
|
21 |
# @ bestwebsoft
|
22 |
# @ gallery
|
23 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
24 |
+
#: gallery-plugin.php:2010
|
25 |
msgid "Settings"
|
26 |
msgstr "Configurações"
|
27 |
|
28 |
# @ gallery
|
29 |
+
#: gallery-plugin.php:139
|
30 |
msgid "See images »"
|
31 |
msgstr "Ver imagens »"
|
32 |
|
33 |
+
#: gallery-plugin.php:142
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ gallery
|
38 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Galleries"
|
40 |
msgstr "Galerias"
|
41 |
|
42 |
# @ gallery
|
43 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
44 |
msgid "Gallery"
|
45 |
msgstr "Galeria"
|
46 |
|
47 |
# @ gallery
|
48 |
+
#: gallery-plugin.php:322
|
49 |
msgid "Add New Gallery"
|
50 |
msgstr "Adicionar Nova Galeria"
|
51 |
|
52 |
# @ gallery
|
53 |
+
#: gallery-plugin.php:323
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Editar Galeria"
|
56 |
|
57 |
# @ gallery
|
58 |
+
#: gallery-plugin.php:324
|
59 |
msgid "New Gallery"
|
60 |
msgstr "Nova Galeria"
|
61 |
|
62 |
# @ gallery
|
63 |
+
#: gallery-plugin.php:325
|
64 |
msgid "View Gallery"
|
65 |
msgstr "Ver Galeria"
|
66 |
|
67 |
# @ gallery
|
68 |
+
#: gallery-plugin.php:326
|
69 |
#, fuzzy
|
70 |
msgid "Search Galleries"
|
71 |
msgstr "Galerias"
|
72 |
|
73 |
# @ gallery
|
74 |
+
#: gallery-plugin.php:327
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Nenhuma Galeria foi encontrada"
|
77 |
|
78 |
# @ gallery
|
79 |
+
#: gallery-plugin.php:388
|
80 |
msgid "Gallery Shortcode"
|
81 |
msgstr "Shortcode da Galeria"
|
82 |
|
83 |
# @ gallery
|
84 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
85 |
#, fuzzy
|
86 |
msgid "Gallery Categories"
|
87 |
msgstr "Tamanho da imagem da galeria"
|
88 |
|
89 |
# @ gallery
|
90 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
91 |
#, fuzzy, php-format
|
92 |
msgid ""
|
93 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
95 |
"Se você quiser adicionar uma Galeria específica em sua página ou post, basta "
|
96 |
"copiar e colar este shortcode em seu post ou página:"
|
97 |
|
98 |
+
#: gallery-plugin.php:405
|
99 |
#, php-format
|
100 |
msgid ""
|
101 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
103 |
"please use the shortcode below"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:411
|
107 |
msgid ""
|
108 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
109 |
msgstr ""
|
110 |
|
111 |
# @ gallery
|
112 |
+
#: gallery-plugin.php:414
|
113 |
#, fuzzy
|
114 |
msgid ""
|
115 |
"Use this shortcode to display an album image with the description and the "
|
118 |
"Se você quiser mostrar uma breve descrição contendo a miniatura e o link "
|
119 |
"para a Página da Galeria use assim"
|
120 |
|
121 |
+
#: gallery-plugin.php:416
|
122 |
msgid "Short display"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: gallery-plugin.php:433
|
126 |
msgid "Most Used"
|
127 |
msgstr ""
|
128 |
|
129 |
# @ gallery
|
130 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
131 |
msgid "Default"
|
132 |
msgstr "Padrão"
|
133 |
|
134 |
# @ gallery
|
135 |
+
#: gallery-plugin.php:443
|
136 |
#, fuzzy
|
137 |
msgid "Add New Gallery Category"
|
138 |
msgstr "Adicionar Nova Galeria"
|
139 |
|
140 |
+
#: gallery-plugin.php:448
|
141 |
msgid "Install plugin"
|
142 |
msgstr ""
|
143 |
|
144 |
# @ gallery
|
145 |
+
#: gallery-plugin.php:610
|
146 |
#, fuzzy
|
147 |
msgid "Gallery Category"
|
148 |
msgstr "Tamanho da imagem da galeria"
|
149 |
|
150 |
# @ gallery
|
151 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
msgid "Sorry, nothing found."
|
153 |
msgstr "Desculpe, nada foi encontrado."
|
154 |
|
155 |
# @ gallery
|
156 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
157 |
+
#: gallery-plugin.php:3128
|
158 |
msgid "Title"
|
159 |
msgstr "Título"
|
160 |
|
161 |
# @ gallery
|
162 |
+
#: gallery-plugin.php:1356
|
163 |
msgid "Author"
|
164 |
msgstr "Autor"
|
165 |
|
166 |
# @ gallery
|
167 |
+
#: gallery-plugin.php:1357
|
168 |
#, fuzzy
|
169 |
msgid "Shortcode"
|
170 |
msgstr "Shortcode da Galeria"
|
171 |
|
172 |
# @ gallery
|
173 |
+
#: gallery-plugin.php:1358
|
174 |
#, fuzzy
|
175 |
msgid "Photos"
|
176 |
msgstr "Foto"
|
177 |
|
178 |
# @ gallery
|
179 |
+
#: gallery-plugin.php:1359
|
180 |
msgid "Date"
|
181 |
msgstr "Data"
|
182 |
|
183 |
# @ gallery
|
184 |
+
#: gallery-plugin.php:1547
|
185 |
msgid "Settings are saved"
|
186 |
msgstr "As configurações estão salvas"
|
187 |
|
188 |
# @ gallery
|
189 |
+
#: gallery-plugin.php:1564
|
190 |
#, fuzzy
|
191 |
msgid "All plugin settings were restored."
|
192 |
msgstr "da página de configurações do plugin ("
|
193 |
|
194 |
# @ gallery
|
195 |
+
#: gallery-plugin.php:1576
|
196 |
msgid "Gallery Settings"
|
197 |
msgstr "Configurações da Galeria"
|
198 |
|
199 |
+
#: gallery-plugin.php:1579
|
200 |
msgid "Custom code"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:1580
|
204 |
msgid "Go PRO"
|
205 |
msgstr ""
|
206 |
|
207 |
# @ gallery
|
208 |
+
#: gallery-plugin.php:1590
|
209 |
#, fuzzy
|
210 |
msgid "Please enable JavaScript to use the option to renew images."
|
211 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
212 |
|
213 |
+
#: gallery-plugin.php:1602
|
214 |
#, php-format
|
215 |
msgid ""
|
216 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
219 |
msgstr ""
|
220 |
|
221 |
# @ gallery
|
222 |
+
#: gallery-plugin.php:1612
|
223 |
+
#, fuzzy
|
224 |
+
msgid "Galleries page"
|
225 |
+
msgstr "Galerias"
|
226 |
+
|
227 |
+
# @ gallery
|
228 |
+
#: gallery-plugin.php:1622
|
229 |
msgid "Number of images in the row"
|
230 |
msgstr "Número de imagens por linha"
|
231 |
|
232 |
# @ gallery
|
233 |
+
#: gallery-plugin.php:1624
|
234 |
#, fuzzy
|
235 |
msgid ""
|
236 |
"The number of images per row can be less depending on the width of the "
|
238 |
msgstr "Número de imagens por linha"
|
239 |
|
240 |
# @ gallery
|
241 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
242 |
msgid "Image size"
|
243 |
msgstr "Tamanho da imagem"
|
244 |
|
245 |
# @ gallery
|
246 |
+
#: gallery-plugin.php:1631
|
247 |
msgid ""
|
248 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
249 |
"upload a new photo."
|
252 |
"você enviar uma nova foto."
|
253 |
|
254 |
# @ gallery
|
255 |
+
#: gallery-plugin.php:1633
|
256 |
#, fuzzy
|
257 |
msgid "For the album cover"
|
258 |
msgstr "Tamanho da imagem de capa do álbum"
|
259 |
|
260 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
261 |
msgid "width x height"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
265 |
msgid "in px"
|
266 |
msgstr ""
|
267 |
|
268 |
# @ gallery
|
269 |
+
#: gallery-plugin.php:1637
|
270 |
#, fuzzy
|
271 |
msgid "For thumbnails"
|
272 |
msgstr "Tamanho da imagem de capa do álbum"
|
273 |
|
274 |
+
#: gallery-plugin.php:1641
|
275 |
msgid "Update images for gallery"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
279 |
msgid "Close"
|
280 |
msgstr ""
|
281 |
|
282 |
# @ gallery
|
283 |
+
#: gallery-plugin.php:1657
|
284 |
#, fuzzy
|
285 |
msgid "For images in the lightbox"
|
286 |
msgstr "Tamanho da imagem da galeria no Lightbox"
|
287 |
|
288 |
# @ gallery
|
289 |
+
#: gallery-plugin.php:1661
|
290 |
msgid "Display a full size image in the lightbox"
|
291 |
msgstr "Exibir a imagem em tamanho original no Lightbox"
|
292 |
|
293 |
# @ gallery
|
294 |
+
#: gallery-plugin.php:1666
|
295 |
msgid "Crop position"
|
296 |
msgstr "Posição de recorte"
|
297 |
|
298 |
# @ gallery
|
299 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
300 |
msgid "center"
|
301 |
msgstr "centro"
|
302 |
|
303 |
# @ gallery
|
304 |
+
#: gallery-plugin.php:1672
|
305 |
msgid "Horizontal"
|
306 |
msgstr "Horizontal"
|
307 |
|
308 |
# @ gallery
|
309 |
+
#: gallery-plugin.php:1678
|
310 |
msgid "Vertical"
|
311 |
msgstr "Vertical"
|
312 |
|
313 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
314 |
msgid ""
|
315 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
319 |
msgid "Unlock premium options by upgrading to Pro version"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
323 |
msgid "Start Your Trial"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
327 |
msgid "or"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
331 |
msgid "Learn More"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
335 |
msgid "Display image title"
|
336 |
msgstr ""
|
337 |
|
338 |
# @ gallery
|
339 |
+
#: gallery-plugin.php:1708
|
340 |
#, fuzzy
|
341 |
msgid ""
|
342 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
345 |
"lightbox"
|
346 |
|
347 |
# @ gallery
|
348 |
+
#: gallery-plugin.php:1712
|
349 |
msgid "Images with border"
|
350 |
msgstr "Imagens com borda"
|
351 |
|
352 |
# @ gallery
|
353 |
+
#: gallery-plugin.php:1716
|
354 |
msgid "Border width in px, just numbers"
|
355 |
msgstr "Largura da borda em px, apenas os números"
|
356 |
|
357 |
# @ gallery
|
358 |
+
#: gallery-plugin.php:1722
|
359 |
msgid "Sort images"
|
360 |
msgstr "Ordenar imagens:"
|
361 |
|
362 |
# @ gallery
|
363 |
+
#: gallery-plugin.php:1725
|
364 |
#, fuzzy
|
365 |
msgid "by Attachment ID"
|
366 |
msgstr "ID do anexo"
|
367 |
|
368 |
# @ gallery
|
369 |
+
#: gallery-plugin.php:1726
|
370 |
#, fuzzy
|
371 |
msgid "by Image Name"
|
372 |
msgstr "Nome da Imagem"
|
373 |
|
374 |
# @ gallery
|
375 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
376 |
#, fuzzy
|
377 |
msgid "by Date"
|
378 |
msgstr "Data"
|
379 |
|
380 |
+
#: gallery-plugin.php:1728
|
381 |
msgid "by Sorting order in the Gallery"
|
382 |
msgstr ""
|
383 |
|
384 |
# @ gallery
|
385 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
386 |
msgid "Random"
|
387 |
msgstr "Aleatório"
|
388 |
|
389 |
# @ gallery
|
390 |
+
#: gallery-plugin.php:1734
|
391 |
#, fuzzy
|
392 |
msgid "The images sort order"
|
393 |
msgstr "Imagens com borda"
|
394 |
|
395 |
# @ gallery
|
396 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
397 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
398 |
msgstr ""
|
399 |
"ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; "
|
400 |
"a, b, c)"
|
401 |
|
402 |
# @ gallery
|
403 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
404 |
msgid ""
|
405 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
406 |
msgstr ""
|
408 |
"1; c, b, a)"
|
409 |
|
410 |
# @ gallery
|
411 |
+
#: gallery-plugin.php:1743
|
412 |
#, fuzzy
|
413 |
msgid "Sort galleries"
|
414 |
msgstr "Galerias"
|
415 |
|
416 |
# @ gallery
|
417 |
+
#: gallery-plugin.php:1746
|
418 |
#, fuzzy
|
419 |
msgid "by Gallery ID"
|
420 |
msgstr "Galeria"
|
421 |
|
422 |
# @ gallery
|
423 |
+
#: gallery-plugin.php:1747
|
424 |
#, fuzzy
|
425 |
msgid "by Title"
|
426 |
msgstr "Título"
|
427 |
|
428 |
+
#: gallery-plugin.php:1749
|
429 |
msgid "by Last modified date"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: gallery-plugin.php:1750
|
433 |
msgid "by Comment count"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: gallery-plugin.php:1751
|
437 |
msgid "by Sorting order (the input field for sorting order)"
|
438 |
msgstr ""
|
439 |
|
440 |
# @ gallery
|
441 |
+
#: gallery-plugin.php:1752
|
442 |
#, fuzzy
|
443 |
msgid "by Author"
|
444 |
msgstr "Autor"
|
445 |
|
446 |
+
#: gallery-plugin.php:1758
|
447 |
msgid "The galleries sort order"
|
448 |
msgstr ""
|
449 |
|
450 |
# @ gallery
|
451 |
+
#: gallery-plugin.php:1767
|
452 |
msgid "Start slideshow"
|
453 |
msgstr "Iniciar Apresentação de Slides"
|
454 |
|
455 |
# @ gallery
|
456 |
+
#: gallery-plugin.php:1770
|
457 |
msgid "Slideshow interval"
|
458 |
msgstr "Intervalo de tempo entre cada Slide"
|
459 |
|
460 |
+
#: gallery-plugin.php:1770
|
461 |
msgid "(ms)"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: gallery-plugin.php:1774
|
465 |
msgid "Use single lightbox for multiple galleries on one page"
|
466 |
msgstr ""
|
467 |
|
468 |
# @ gallery
|
469 |
+
#: gallery-plugin.php:1780
|
470 |
msgid "Display the Back link"
|
471 |
msgstr "Exibir o link Voltar"
|
472 |
|
473 |
# @ gallery
|
474 |
+
#: gallery-plugin.php:1786
|
475 |
msgid "Display the Back link in the shortcode"
|
476 |
msgstr "Exibir o link Voltar no shortcode"
|
477 |
|
478 |
# @ gallery
|
479 |
+
#: gallery-plugin.php:1792
|
480 |
msgid "The Back link text"
|
481 |
msgstr "Texto do link Voltar"
|
482 |
|
483 |
# @ gallery
|
484 |
+
#: gallery-plugin.php:1798
|
485 |
msgid "The Back link URL"
|
486 |
msgstr "URL do link Voltar"
|
487 |
|
488 |
# @ gallery
|
489 |
+
#: gallery-plugin.php:1801
|
490 |
msgid "Gallery page (Page with Gallery Template)"
|
491 |
msgstr "Página da Galeria (página usando o Modelo de Galeria)"
|
492 |
|
493 |
# @ gallery
|
494 |
+
#: gallery-plugin.php:1803
|
495 |
msgid "(Full URL to custom page)"
|
496 |
msgstr "(URL completa para a página personalizada)"
|
497 |
|
498 |
# @ gallery
|
499 |
+
#: gallery-plugin.php:1808
|
500 |
msgid "The Read More link text"
|
501 |
msgstr "Texto do link Leia Mais"
|
502 |
|
503 |
+
#: gallery-plugin.php:1814
|
504 |
msgid "Add gallery to the search"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
508 |
msgid "Using"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
512 |
msgid "powered by"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
516 |
msgid "Activate"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1826
|
520 |
msgid "Download"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
524 |
msgid "Rename gallery post type"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:1837
|
528 |
msgid ""
|
529 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
530 |
"it now"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: gallery-plugin.php:1838
|
534 |
msgid ""
|
535 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
536 |
"please check settings of your other plugins where 'gallery' post type is used"
|
537 |
msgstr ""
|
538 |
|
539 |
# @ gallery
|
540 |
+
#: gallery-plugin.php:1851
|
541 |
#, fuzzy
|
542 |
msgid "Single gallery view"
|
543 |
msgstr "Slug para o item da galeria"
|
544 |
|
545 |
+
#: gallery-plugin.php:1854
|
546 |
msgid "Grid"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: gallery-plugin.php:1855
|
550 |
msgid "Masonry"
|
551 |
msgstr ""
|
552 |
|
553 |
# @ gallery
|
554 |
+
#: gallery-plugin.php:1863
|
555 |
#, fuzzy
|
556 |
msgid "Under image"
|
557 |
msgstr "ordenar imagens"
|
558 |
|
559 |
+
#: gallery-plugin.php:1864
|
560 |
msgid "By mouse hover"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: gallery-plugin.php:1869
|
564 |
msgid "Use pagination for images"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: gallery-plugin.php:1872
|
568 |
msgid "per page"
|
569 |
msgstr ""
|
570 |
|
571 |
# @ gallery
|
572 |
+
#: gallery-plugin.php:1876
|
573 |
msgid "Lightbox background"
|
574 |
msgstr "Fundo do Lightbox"
|
575 |
|
576 |
# @ gallery
|
577 |
+
#: gallery-plugin.php:1879
|
578 |
msgid "Background transparency (from 0 to 1)"
|
579 |
msgstr "Transparência de background (de 0 a 1)"
|
580 |
|
581 |
+
#: gallery-plugin.php:1885
|
582 |
msgid ""
|
583 |
"Display all images in the lightbox instead of going into a single gallery"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: gallery-plugin.php:1888
|
587 |
#, php-format
|
588 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: gallery-plugin.php:1892
|
592 |
msgid "The lightbox helper"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1894
|
596 |
msgid "Do not use"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: gallery-plugin.php:1895
|
600 |
msgid "Button helper"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: gallery-plugin.php:1896
|
604 |
msgid "Thumbnail helper"
|
605 |
msgstr ""
|
606 |
|
607 |
# @ gallery
|
608 |
+
#: gallery-plugin.php:1900
|
609 |
msgid "Display Like buttons in the lightbox"
|
610 |
msgstr "Exibir botões de Curtir no Lightbox"
|
611 |
|
612 |
# @ gallery
|
613 |
+
#: gallery-plugin.php:1904
|
614 |
msgid "FaceBook"
|
615 |
msgstr "Facebook"
|
616 |
|
617 |
# @ gallery
|
618 |
+
#: gallery-plugin.php:1905
|
619 |
msgid "Twitter"
|
620 |
msgstr "Twitter"
|
621 |
|
622 |
# @ gallery
|
623 |
+
#: gallery-plugin.php:1906
|
624 |
msgid "Pinterest"
|
625 |
msgstr "Pinterest"
|
626 |
|
627 |
# @ gallery
|
628 |
+
#: gallery-plugin.php:1907
|
629 |
msgid "Google +1"
|
630 |
msgstr "Google +1"
|
631 |
|
632 |
# @ gallery
|
633 |
+
#: gallery-plugin.php:1910
|
634 |
#, fuzzy
|
635 |
msgid "Show counter"
|
636 |
msgstr "Intervalo de tempo entre cada Slide"
|
637 |
|
638 |
+
#: gallery-plugin.php:1912
|
639 |
msgid "Align"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: gallery-plugin.php:1914
|
643 |
msgid "left"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: gallery-plugin.php:1921
|
647 |
msgid "Title for lightbox button"
|
648 |
msgstr ""
|
649 |
|
650 |
# @ gallery
|
651 |
+
#: gallery-plugin.php:1927
|
652 |
msgid "Slug for gallery item"
|
653 |
msgstr "Slug para o item da galeria"
|
654 |
|
655 |
# @ gallery
|
656 |
+
#: gallery-plugin.php:1929
|
657 |
msgid "for any structure of permalinks except the default structure"
|
658 |
msgstr ""
|
659 |
"para qualquer estrutura de links permanentes, exceto a estrutura padrão"
|
660 |
|
661 |
# @ default
|
662 |
+
#: gallery-plugin.php:1955
|
663 |
msgid "Save Changes"
|
664 |
msgstr "Salvar Alterações"
|
665 |
|
666 |
+
#: gallery-plugin.php:1960
|
667 |
msgid ""
|
668 |
"If you install the demo-data, will be created galleries with images, demo-"
|
669 |
"post with available shortcodes and page with a list of all the galleries."
|
670 |
msgstr ""
|
671 |
|
672 |
# @ gallery
|
673 |
+
#: gallery-plugin.php:1994
|
674 |
msgid "FAQ"
|
675 |
msgstr "FAQ"
|
676 |
|
677 |
# @ gallery
|
678 |
+
#: gallery-plugin.php:1995
|
679 |
msgid "Support"
|
680 |
msgstr "Suporte"
|
681 |
|
682 |
+
#: gallery-plugin.php:2032
|
683 |
msgid "Updating images..."
|
684 |
msgstr ""
|
685 |
|
686 |
# @ gallery
|
687 |
+
#: gallery-plugin.php:2033
|
688 |
#, fuzzy
|
689 |
msgid "No image found."
|
690 |
msgstr "Nenhuma Galeria foi encontrada"
|
691 |
|
692 |
+
#: gallery-plugin.php:2034
|
693 |
msgid "All images are updated."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2035
|
697 |
msgid "Error."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2049
|
701 |
msgid ""
|
702 |
"You are about to delete these items from this gallery.\n"
|
703 |
" 'Cancel' to stop, 'OK' to delete."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: gallery-plugin.php:2050
|
707 |
msgid ""
|
708 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
709 |
"switching?"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2051
|
713 |
msgid "Insert Media"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: gallery-plugin.php:2052
|
717 |
msgid "Insert"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: gallery-plugin.php:2064
|
721 |
msgid "Learn more"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: gallery-plugin.php:2076
|
725 |
msgid "Install now"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: gallery-plugin.php:2085
|
729 |
msgid "Add multiple gallery categories"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: gallery-plugin.php:2085
|
733 |
msgid ""
|
734 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
735 |
msgstr ""
|
736 |
|
737 |
# @ gallery
|
738 |
+
#: gallery-plugin.php:2405
|
739 |
+
msgid "Download high resolution image"
|
740 |
+
msgstr "Download de imagem de alta resolução"
|
741 |
+
|
742 |
+
# @ gallery
|
743 |
+
#: gallery-plugin.php:2417
|
744 |
+
msgid "Image"
|
745 |
+
msgstr "Imagem"
|
746 |
+
|
747 |
+
# @ gallery
|
748 |
+
#: gallery-plugin.php:2558
|
749 |
#, fuzzy
|
750 |
msgid "Image size not defined"
|
751 |
msgstr "Tamanho da imagem"
|
752 |
|
753 |
+
#: gallery-plugin.php:2573
|
754 |
msgid ""
|
755 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
756 |
"manually reload image."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: gallery-plugin.php:2584
|
760 |
msgid "Image size changes not defined"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
764 |
msgid "Invalid path"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: gallery-plugin.php:2694
|
768 |
msgid "Add images requires JavaScript."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: gallery-plugin.php:2697
|
772 |
msgid "Add Media"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: gallery-plugin.php:2707
|
776 |
msgid "The grid view for the Gallery images requires JavaScript."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: gallery-plugin.php:2707
|
780 |
msgid "Switch to the list view"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: gallery-plugin.php:2734
|
784 |
msgid "List View"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:2735
|
788 |
msgid "Grid View"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: gallery-plugin.php:2790
|
792 |
msgid "Filter"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: gallery-plugin.php:2794
|
796 |
msgid "Empty Trash"
|
797 |
msgstr ""
|
798 |
|
799 |
# @ gallery
|
800 |
+
#: gallery-plugin.php:2815
|
801 |
#, fuzzy
|
802 |
msgid "No images found"
|
803 |
msgstr "Nenhuma Galeria foi encontrada"
|
804 |
|
805 |
+
#: gallery-plugin.php:2867
|
806 |
msgid "Select bulk action"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: gallery-plugin.php:2869
|
810 |
msgid "Bulk Actions"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: gallery-plugin.php:2879
|
814 |
msgid "Apply"
|
815 |
msgstr ""
|
816 |
|
817 |
# @ gallery
|
818 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
819 |
#, fuzzy
|
820 |
msgid "Delete from Gallery"
|
821 |
msgstr "Nova Galeria"
|
822 |
|
823 |
# @ gallery
|
824 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
825 |
#, fuzzy
|
826 |
msgid "Display link to the original file under each image in the lightbox"
|
827 |
msgstr "Exibir a imagem em tamanho original no Lightbox"
|
828 |
|
829 |
+
#: gallery-plugin.php:2908
|
830 |
msgid "Bulk Select"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: gallery-plugin.php:2910
|
834 |
msgid "Cancel Selection"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: gallery-plugin.php:2911
|
838 |
msgid "Delete Selected"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: gallery-plugin.php:2924
|
842 |
msgid "File"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
846 |
msgid "Dimensions"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
850 |
msgid "Alt tag"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
854 |
msgid ""
|
855 |
"The alt attribute specifies an alternate text for an image, if the image "
|
856 |
"cannot be displayed."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
860 |
msgid "Custom URL"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
864 |
msgid ""
|
865 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
866 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: gallery-plugin.php:3006
|
870 |
msgid "Deselect"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: gallery-plugin.php:3012
|
874 |
msgid "File name"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: gallery-plugin.php:3013
|
878 |
msgid "File type"
|
879 |
msgstr ""
|
880 |
|
881 |
# @ gallery
|
882 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
883 |
#, fuzzy
|
884 |
msgid "Edit Attachment Info"
|
885 |
msgstr "ID do anexo"
|
886 |
|
887 |
# @ gallery
|
888 |
+
#: gallery-plugin.php:3017
|
889 |
#, fuzzy
|
890 |
msgid "Edit Attachment"
|
891 |
msgstr "ID do anexo"
|
892 |
|
893 |
+
#: gallery-plugin.php:3027
|
894 |
msgid "Go Pro"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: gallery-plugin.php:3027
|
898 |
msgid "Pro version"
|
899 |
msgstr ""
|
900 |
|
901 |
# @ gallery
|
902 |
+
#: gallery-plugin.php:3030
|
903 |
msgid "This setting is available in Pro version"
|
904 |
msgstr "Esta configuração está disponível na versão Pro"
|
905 |
|
906 |
+
#: gallery-plugin.php:3063
|
907 |
msgid "Edit more details"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: gallery-plugin.php:3098
|
911 |
#, php-format
|
912 |
msgid "Select %s"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: gallery-plugin.php:3111
|
916 |
#, php-format
|
917 |
msgid "Edit “%s”"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
921 |
msgid "Edit"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
925 |
msgid "Trash"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
929 |
msgid "Delete Permanently"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
933 |
#, php-format
|
934 |
msgid "View “%s”"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
938 |
msgid "View"
|
939 |
msgstr ""
|
940 |
|
941 |
# @ gallery
|
942 |
+
#: gallery-plugin.php:3166
|
943 |
#, fuzzy
|
944 |
msgid "Attach"
|
945 |
msgstr "ID do anexo"
|
946 |
|
947 |
+
#: gallery-plugin.php:3172
|
948 |
msgid "Restore"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: gallery-plugin.php:3303
|
952 |
msgid "Warning"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: gallery-plugin.php:3303
|
956 |
msgid "You can add only images to the gallery"
|
957 |
msgstr ""
|
958 |
|
959 |
# @ gallery
|
960 |
+
#: gallery-plugin.php:3345
|
961 |
#, fuzzy
|
962 |
msgid "no title"
|
963 |
msgstr "Título"
|
964 |
|
965 |
# @ gallery
|
966 |
+
#: gallery-plugin.php:3353
|
967 |
#, fuzzy
|
968 |
msgid "Sorry, no gallery found."
|
969 |
msgstr "Desculpe, nada foi encontrado."
|
970 |
|
971 |
# @ gallery
|
972 |
+
#: gallery-plugin.php:3359
|
973 |
#, fuzzy
|
974 |
msgid ""
|
975 |
"Display an album image with the description and the link to a single gallery "
|
978 |
"Se você quiser mostrar uma breve descrição contendo a miniatura e o link "
|
979 |
"para a Página da Galeria use assim"
|
980 |
|
981 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
982 |
msgid "Install Demo Data"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
986 |
msgid "Remove Demo Data"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
990 |
msgid "Delete demo-data and restore old plugin settings."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
994 |
msgid "Yes, install demo data"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
998 |
msgid "Are you sure you want to install demo data?"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
1002 |
msgid "Yes, remove demo data"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
1006 |
msgid "Are you sure you want to remove demo data?"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
# @ gallery
|
1010 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
1011 |
#, fuzzy
|
1012 |
msgid "No, go back to the settings page"
|
1013 |
msgstr "da página de configurações do plugin ("
|
1014 |
|
1015 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
1016 |
msgid "Can not get demo data."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
1020 |
msgid "Demo options already installed."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
1024 |
msgid "Demo data successfully installed."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
1028 |
msgid "View post with shortcodes"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
1032 |
msgid "View page with examples"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
1036 |
msgid "Installation of demo data with some errors occurred."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
1040 |
msgid "Posts data is missing."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
1044 |
msgid "Demo data have already been removed."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
1048 |
msgid "Demo data successfully removed."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
1052 |
msgid "Removing demo data with some errors occurred."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
1056 |
msgid "Close notice"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
1060 |
msgid "Install demo data"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
1064 |
msgid "for an acquaintance with the possibilities of the"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
# @ gallery
|
1068 |
+
#, fuzzy
|
1069 |
+
#~ msgid ""
|
1070 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
1071 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
1072 |
+
#~ "theme for the correct work of the Gallery plugin"
|
1073 |
+
#~ msgstr ""
|
1074 |
+
#~ "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-"
|
1075 |
+
#~ "template.php\" não foram encontrados no diretório do seu tema. Por favor, "
|
1076 |
+
#~ "copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/"
|
1077 |
+
#~ "template/` para o diretório do seu tema para que o plugin Galeria "
|
1078 |
+
#~ "funcione corretamente"
|
1079 |
+
|
1080 |
# @ gallery
|
1081 |
#~ msgid "Select a border color"
|
1082 |
#~ msgstr "Escolha a cor da borda"
|
languages/gallery-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,71 +16,60 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "Settings"
|
22 |
msgstr "Настройки"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "See images »"
|
26 |
msgstr "Смотреть фотографии »"
|
27 |
|
28 |
-
#: gallery-plugin.php:
|
29 |
msgid "Return to all albums"
|
30 |
msgstr "Вернуться ко всем альбомам"
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
-
#, php-format
|
34 |
-
msgid ""
|
35 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
36 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
37 |
-
"theme for the correct work of the Gallery plugin"
|
38 |
-
msgstr ""
|
39 |
-
"Файлы '%s' и '%s' не найдены в каталоге вашей темы. Пожалуйста, скопируйте "
|
40 |
-
"их из каталога `%s` в директорию вашей темы для корректной работы плагина "
|
41 |
-
"Gallery"
|
42 |
-
|
43 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
44 |
msgid "Galleries"
|
45 |
msgstr "Галереи"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "Gallery"
|
49 |
msgstr "Галерея"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "Add New Gallery"
|
53 |
msgstr "Добавить новую галерею"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Edit Gallery"
|
57 |
msgstr "Редактировать галерею"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "New Gallery"
|
61 |
msgstr "Новая галерея"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "View Gallery"
|
65 |
msgstr "Просмотреть галерею"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
msgid "Search Galleries"
|
69 |
msgstr "Искать Галереи"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "No Gallery found"
|
73 |
msgstr "Ни одной галереи не найдено"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Gallery Shortcode"
|
77 |
msgstr "Шорткод для галереи"
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
80 |
msgid "Gallery Categories"
|
81 |
msgstr "Категории галерей"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
#, php-format
|
85 |
msgid ""
|
86 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -88,7 +77,7 @@ msgstr ""
|
|
88 |
"Если вы хотите добавить галерею на вашу страницу или пост, то используйте "
|
89 |
"кнопку %s"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
#, php-format
|
93 |
msgid ""
|
94 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -99,14 +88,14 @@ msgstr ""
|
|
99 |
"блоке редактирования контента в режиме Visual. Если кнопка не отображается, "
|
100 |
"пожалуйста, используйте шорткод ниже."
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
msgid ""
|
104 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
105 |
msgstr ""
|
106 |
"Добавьте этот шорткод на страницу, пост или виджет для отображения отдельной "
|
107 |
"галереи"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid ""
|
111 |
"Use this shortcode to display an album image with the description and the "
|
112 |
"link to a single gallery page"
|
@@ -114,90 +103,82 @@ msgstr ""
|
|
114 |
"Используйте этот шорткод, чтобы отобразить изображение альбома с описанием и "
|
115 |
"ссылкой на отдельную страницу галереи"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Short display"
|
119 |
msgstr "Отображение альбома"
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Most Used"
|
123 |
msgstr "Наиболее используемые"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Default"
|
127 |
msgstr "По умолчанию"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Add New Gallery Category"
|
131 |
msgstr "Добавить новую категорию галерей"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Install plugin"
|
135 |
msgstr "Установить плагин"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
msgid "Gallery Category"
|
139 |
msgstr "Категория галерей"
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
-
msgid "Download high resolution image"
|
143 |
-
msgstr "Скачать изображение в высоком разрешении"
|
144 |
-
|
145 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
146 |
-
msgid "Image"
|
147 |
-
msgstr "Изображение"
|
148 |
-
|
149 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
150 |
msgid "Sorry, nothing found."
|
151 |
msgstr "Извините, ничего не найдено."
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Title"
|
156 |
msgstr "Название"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Author"
|
160 |
msgstr "Автор"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Shortcode"
|
164 |
msgstr "Шорткод"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Photos"
|
168 |
msgstr "Фото"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Date"
|
172 |
msgstr "Дата"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Settings are saved"
|
176 |
msgstr "Опции сохранены"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "All plugin settings were restored."
|
180 |
msgstr "Настройки плагина восстановлены."
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Gallery Settings"
|
184 |
msgstr "Настройки Gallery"
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Custom code"
|
188 |
msgstr "Пользовательский код"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Go PRO"
|
192 |
msgstr "Перейти на Pro версию"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Please enable JavaScript to use the option to renew images."
|
196 |
msgstr ""
|
197 |
"Пожалуйста, включите javascript для использования опции обновления "
|
198 |
"изображений."
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
#, php-format
|
202 |
msgid ""
|
203 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -208,11 +189,15 @@ msgstr ""
|
|
208 |
"блоке редактирования контента в режиме Visual. Если кнопка не отображается, "
|
209 |
"пожалуйста, используйте шорткод %s, где * обозначает ID галереи"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
212 |
msgid "Number of images in the row"
|
213 |
msgstr "Количество изображений в строке"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid ""
|
217 |
"The number of images per row can be less depending on the width of the "
|
218 |
"parent block"
|
@@ -220,11 +205,11 @@ msgstr ""
|
|
220 |
"Количество изображений в строке может быть меньше в зависимости от ширины "
|
221 |
"родительского блока"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Image size"
|
225 |
msgstr "Название размера изображения"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid ""
|
229 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
230 |
"upload a new photo."
|
@@ -232,247 +217,234 @@ msgstr ""
|
|
232 |
"WordPress создаст новую миниатюру с заданными размерами при загрузке новой "
|
233 |
"фотографии."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "For the album cover"
|
237 |
msgstr "Для обложки альбома галереи"
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "width x height"
|
241 |
msgstr "ширина x высота"
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "in px"
|
245 |
-
msgstr "
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "For thumbnails"
|
249 |
msgstr "Для миниатюр"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Update images for gallery"
|
253 |
msgstr "Обновить все изображения для галереи"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Close"
|
257 |
msgstr "Закрыть"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
msgid "For images in the lightbox"
|
261 |
msgstr "Для изображений в лайтбоксе"
|
262 |
|
263 |
-
#: gallery-plugin.php:
|
264 |
msgid "Display a full size image in the lightbox"
|
265 |
msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid "Crop position"
|
269 |
msgstr "Позиция обрезки"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
msgid "center"
|
273 |
msgstr "центр"
|
274 |
|
275 |
-
#: gallery-plugin.php:
|
276 |
msgid "Horizontal"
|
277 |
msgstr "Горизонтальная"
|
278 |
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "Vertical"
|
281 |
msgstr "Вертикальная"
|
282 |
|
283 |
-
#: gallery-plugin.php:
|
284 |
msgid ""
|
285 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
286 |
msgstr "При переходе на Pro версию все ваши настройки и галереи сохраняются."
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Unlock premium options by upgrading to Pro version"
|
290 |
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "Start Your Trial"
|
294 |
msgstr "Получить пробную версию"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
msgid "or"
|
298 |
msgstr "или"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Learn More"
|
302 |
msgstr "Подробнее"
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Display image title"
|
306 |
msgstr "Отображать заголовки изображений"
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid ""
|
310 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
311 |
msgstr ""
|
312 |
"Отключите чекбокс, если вы хотите отображать заголовки изображений только в "
|
313 |
"лайтбоксе"
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "Images with border"
|
317 |
msgstr "Изображения с рамкой"
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Border width in px, just numbers"
|
321 |
msgstr "Ширина рамки в px, только числа"
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Sort images"
|
325 |
msgstr "Сортировать изображения"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "by Attachment ID"
|
329 |
msgstr "по ID изображения"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "by Image Name"
|
333 |
msgstr "по Названию изображения"
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "by Date"
|
337 |
msgstr "по Дате"
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "by Sorting order in the Gallery"
|
341 |
msgstr "по Порядку сортировки в Галерее"
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid "Random"
|
345 |
msgstr "Произвольно"
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
msgid "The images sort order"
|
349 |
msgstr "Порядок сортировки изображений"
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
353 |
msgstr ""
|
354 |
"ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3; "
|
355 |
"а, б, в)"
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
msgid ""
|
359 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
360 |
msgstr "DESC (по убыванию от наибольшего до наименьшего - 3, 2, 1; в, б, а)"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Sort galleries"
|
364 |
msgstr "Сортировать галереи"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "by Gallery ID"
|
368 |
msgstr "по ID галереи"
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "by Title"
|
372 |
msgstr "по Названию"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "by Last modified date"
|
376 |
msgstr "по Дате последнего изменения"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
msgid "by Comment count"
|
380 |
msgstr "по Количеству комментариев"
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
msgid "by Sorting order (the input field for sorting order)"
|
384 |
msgstr "по Порядку сортировки (поле ввода для сортировки)"
|
385 |
|
386 |
-
#: gallery-plugin.php:
|
387 |
msgid "by Author"
|
388 |
msgstr "по Автору"
|
389 |
|
390 |
-
#: gallery-plugin.php:
|
391 |
msgid "The galleries sort order"
|
392 |
msgstr "Порядок сортировки галерей"
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "Start slideshow"
|
396 |
msgstr "Начать слайдшоу"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Slideshow interval"
|
400 |
msgstr "Интервал времени при показе слайдшоу"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "(ms)"
|
404 |
msgstr "(мс)"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
msgid "Use single lightbox for multiple galleries on one page"
|
408 |
msgstr "Использовать один лайтбокс для нескольких галерей на одной странице"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "Display the Back link"
|
412 |
msgstr "Отображать ссылку Вернуться"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "Display the Back link in the shortcode"
|
416 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "The Back link text"
|
420 |
msgstr "Текст для ссылки Вернуться"
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "The Back link URL"
|
424 |
msgstr "URL для ссылки Вернуться"
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Gallery page (Page with Gallery Template)"
|
428 |
msgstr "Страница галереи (Страница с Gallery Template)"
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "(Full URL to custom page)"
|
432 |
msgstr "(Полная ссылка на пользовательскую страницу)"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Read More link text"
|
436 |
msgstr "Текст для ссылки Узнать больше"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "Add gallery to the search"
|
440 |
msgstr "Добавить галерею в поиск"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "Using"
|
444 |
msgstr "Используя"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "powered by"
|
448 |
msgstr "разработанный"
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Activate"
|
452 |
msgstr "Активировать"
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Download"
|
456 |
msgstr "Загрузить"
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
-
msgid "Rewrite templates after update"
|
460 |
-
msgstr "Перезапись шаблонов после обновления"
|
461 |
-
|
462 |
-
#: gallery-plugin.php:1929
|
463 |
-
#, php-format
|
464 |
-
msgid ""
|
465 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
466 |
-
"theme folder and You don't want to rewrite them"
|
467 |
-
msgstr ""
|
468 |
-
"Отключите чекбокс, если вы внесли изменения в файлы '%s' или '%s' в папке "
|
469 |
-
"темы, и вы не хотите чтобы они были обновлены"
|
470 |
-
|
471 |
-
#: gallery-plugin.php:1934
|
472 |
msgid "Rename gallery post type"
|
473 |
msgstr "Переименовать тип поста \"gallery\""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid ""
|
477 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
478 |
"it now"
|
@@ -480,7 +452,7 @@ msgstr ""
|
|
480 |
"Во избежание конфликтов с другими плагинами, пожалуйста, пометьте чекбокс "
|
481 |
"флажком, что бы переименовать его сейчас"
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid ""
|
485 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
486 |
"please check settings of your other plugins where 'gallery' post type is used"
|
@@ -489,118 +461,118 @@ msgstr ""
|
|
489 |
"переименования проверьте, пожалуйста, настройки других плагинов, где "
|
490 |
"используется тип поста \"gallery\""
|
491 |
|
492 |
-
#: gallery-plugin.php:
|
493 |
msgid "Single gallery view"
|
494 |
msgstr "Вид галереи"
|
495 |
|
496 |
-
#: gallery-plugin.php:
|
497 |
msgid "Grid"
|
498 |
msgstr "Сетка"
|
499 |
|
500 |
-
#: gallery-plugin.php:
|
501 |
msgid "Masonry"
|
502 |
msgstr "Masonry"
|
503 |
|
504 |
-
#: gallery-plugin.php:
|
505 |
msgid "Under image"
|
506 |
msgstr "Под изображением"
|
507 |
|
508 |
-
#: gallery-plugin.php:
|
509 |
msgid "By mouse hover"
|
510 |
msgstr "По наведению мыши"
|
511 |
|
512 |
-
#: gallery-plugin.php:
|
513 |
msgid "Use pagination for images"
|
514 |
msgstr "Использовать пагинацию для изображений"
|
515 |
|
516 |
-
#: gallery-plugin.php:
|
517 |
msgid "per page"
|
518 |
msgstr "на странице"
|
519 |
|
520 |
-
#: gallery-plugin.php:
|
521 |
msgid "Lightbox background"
|
522 |
msgstr "Фон лайтбокса"
|
523 |
|
524 |
-
#: gallery-plugin.php:
|
525 |
msgid "Background transparency (from 0 to 1)"
|
526 |
msgstr "Прозрачность для фона (от 0 до 1)"
|
527 |
|
528 |
-
#: gallery-plugin.php:
|
529 |
msgid ""
|
530 |
"Display all images in the lightbox instead of going into a single gallery"
|
531 |
msgstr ""
|
532 |
"Отображать все изображения в лайтбоксе вместо перехода в отдельную галерею"
|
533 |
|
534 |
-
#: gallery-plugin.php:
|
535 |
#, php-format
|
536 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
537 |
msgstr "Когда используется темплейт галереи или шорткод с параметром `%s`"
|
538 |
|
539 |
-
#: gallery-plugin.php:
|
540 |
msgid "The lightbox helper"
|
541 |
msgstr "Вспомогательные элементы в лайтбоксе"
|
542 |
|
543 |
-
#: gallery-plugin.php:
|
544 |
msgid "Do not use"
|
545 |
msgstr "Не использовать"
|
546 |
|
547 |
-
#: gallery-plugin.php:
|
548 |
msgid "Button helper"
|
549 |
msgstr "Вспомогательные кнопки"
|
550 |
|
551 |
-
#: gallery-plugin.php:
|
552 |
msgid "Thumbnail helper"
|
553 |
msgstr "Вспомогательные миниатюры"
|
554 |
|
555 |
-
#: gallery-plugin.php:
|
556 |
msgid "Display Like buttons in the lightbox"
|
557 |
msgstr "Отображать Like кнопки в лайтбоксе"
|
558 |
|
559 |
-
#: gallery-plugin.php:
|
560 |
msgid "FaceBook"
|
561 |
msgstr "FaceBook"
|
562 |
|
563 |
-
#: gallery-plugin.php:
|
564 |
msgid "Twitter"
|
565 |
msgstr "Twitter"
|
566 |
|
567 |
-
#: gallery-plugin.php:
|
568 |
msgid "Pinterest"
|
569 |
msgstr "Pinterest"
|
570 |
|
571 |
-
#: gallery-plugin.php:
|
572 |
msgid "Google +1"
|
573 |
msgstr "Google +1"
|
574 |
|
575 |
-
#: gallery-plugin.php:
|
576 |
msgid "Show counter"
|
577 |
msgstr "Отображать счетчик"
|
578 |
|
579 |
-
#: gallery-plugin.php:
|
580 |
msgid "Align"
|
581 |
msgstr "Выравнивание"
|
582 |
|
583 |
-
#: gallery-plugin.php:
|
584 |
msgid "left"
|
585 |
msgstr "слева"
|
586 |
|
587 |
-
#: gallery-plugin.php:
|
588 |
msgid "Title for lightbox button"
|
589 |
msgstr "Название кнопки в лайтбоксе"
|
590 |
|
591 |
-
#: gallery-plugin.php:
|
592 |
msgid "Slug for gallery item"
|
593 |
msgstr "Название для элементов галереи"
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "for any structure of permalinks except the default structure"
|
597 |
msgstr "для любой структуры ссылок, за исключением структуры по умолчанию"
|
598 |
|
599 |
-
#: gallery-plugin.php:
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Сохранить изменения"
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid ""
|
605 |
"If you install the demo-data, will be created galleries with images, demo-"
|
606 |
"post with available shortcodes and page with a list of all the galleries."
|
@@ -608,31 +580,31 @@ msgstr ""
|
|
608 |
"При установке демо-данных будут созданы галереи с изображениями, пост с "
|
609 |
"доступными шорткодами и страница со списком всех галерей."
|
610 |
|
611 |
-
#: gallery-plugin.php:
|
612 |
msgid "FAQ"
|
613 |
msgstr "FAQ"
|
614 |
|
615 |
-
#: gallery-plugin.php:
|
616 |
msgid "Support"
|
617 |
msgstr "Поддержка"
|
618 |
|
619 |
-
#: gallery-plugin.php:
|
620 |
msgid "Updating images..."
|
621 |
msgstr "Обновление изображений..."
|
622 |
|
623 |
-
#: gallery-plugin.php:
|
624 |
msgid "No image found."
|
625 |
msgstr "Ни одного изображения не найдено."
|
626 |
|
627 |
-
#: gallery-plugin.php:
|
628 |
msgid "All images are updated."
|
629 |
msgstr "Все изображения были обновлены."
|
630 |
|
631 |
-
#: gallery-plugin.php:
|
632 |
msgid "Error."
|
633 |
msgstr "Ошибка."
|
634 |
|
635 |
-
#: gallery-plugin.php:
|
636 |
msgid ""
|
637 |
"You are about to delete these items from this gallery.\n"
|
638 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -640,7 +612,7 @@ msgstr ""
|
|
640 |
"Вы собираетесь удалить эти элементы из этой галереи.\n"
|
641 |
" Нажмите \"Отменить\" чтобы отменить действие или \"OK\" для удаления."
|
642 |
|
643 |
-
#: gallery-plugin.php:
|
644 |
msgid ""
|
645 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
646 |
"switching?"
|
@@ -648,38 +620,46 @@ msgstr ""
|
|
648 |
"При переключение на другой режим все несохраненные данные будут потеряны. "
|
649 |
"Сохранить данные перед переключением?"
|
650 |
|
651 |
-
#: gallery-plugin.php:
|
652 |
msgid "Insert Media"
|
653 |
msgstr "Вставить медиафайл"
|
654 |
|
655 |
-
#: gallery-plugin.php:
|
656 |
msgid "Insert"
|
657 |
msgstr "Вставить"
|
658 |
|
659 |
-
#: gallery-plugin.php:
|
660 |
msgid "Learn more"
|
661 |
msgstr "Подробнее"
|
662 |
|
663 |
-
#: gallery-plugin.php:
|
664 |
msgid "Install now"
|
665 |
msgstr "Установить"
|
666 |
|
667 |
-
#: gallery-plugin.php:
|
668 |
msgid "Add multiple gallery categories"
|
669 |
msgstr "Добавить несколько категорий галереи"
|
670 |
|
671 |
-
#: gallery-plugin.php:
|
672 |
msgid ""
|
673 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
674 |
msgstr ""
|
675 |
"Установить плагин Gallery Categories, чтобы иметь возможность добавлять "
|
676 |
"неограниченное количество категорий."
|
677 |
|
678 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
679 |
msgid "Image size not defined"
|
680 |
msgstr "Невозможно определить размер изображения"
|
681 |
|
682 |
-
#: gallery-plugin.php:
|
683 |
msgid ""
|
684 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
685 |
"manually reload image."
|
@@ -687,95 +667,95 @@ msgstr ""
|
|
687 |
"Плагин может обновить только PNG, JPEG, GIF, XBM или WPMP типы файлов. Для "
|
688 |
"других, пожалуйста, вручную перезагрузите изображения."
|
689 |
|
690 |
-
#: gallery-plugin.php:
|
691 |
msgid "Image size changes not defined"
|
692 |
msgstr "Не удалось вычислить изменения размеров изображения"
|
693 |
|
694 |
-
#: gallery-plugin.php:
|
695 |
msgid "Invalid path"
|
696 |
msgstr "Путь к изображению для редактирования некорректный"
|
697 |
|
698 |
-
#: gallery-plugin.php:
|
699 |
msgid "Add images requires JavaScript."
|
700 |
msgstr "Для добавления изображений необходим JavaScript."
|
701 |
|
702 |
-
#: gallery-plugin.php:
|
703 |
msgid "Add Media"
|
704 |
msgstr "Добавить медиафайл"
|
705 |
|
706 |
-
#: gallery-plugin.php:
|
707 |
msgid "The grid view for the Gallery images requires JavaScript."
|
708 |
msgstr "Вид сетки для галереи изображений требует JavaScript."
|
709 |
|
710 |
-
#: gallery-plugin.php:
|
711 |
msgid "Switch to the list view"
|
712 |
msgstr "Переключиться на список"
|
713 |
|
714 |
-
#: gallery-plugin.php:
|
715 |
msgid "List View"
|
716 |
msgstr "В виде списка"
|
717 |
|
718 |
-
#: gallery-plugin.php:
|
719 |
msgid "Grid View"
|
720 |
msgstr "В виде сетки"
|
721 |
|
722 |
-
#: gallery-plugin.php:
|
723 |
msgid "Filter"
|
724 |
msgstr "Фильтр"
|
725 |
|
726 |
-
#: gallery-plugin.php:
|
727 |
msgid "Empty Trash"
|
728 |
msgstr "Очистить корзину"
|
729 |
|
730 |
-
#: gallery-plugin.php:
|
731 |
msgid "No images found"
|
732 |
msgstr "Ни одного изображения не найдено"
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
msgid "Select bulk action"
|
736 |
msgstr "Выберите массовое действие"
|
737 |
|
738 |
-
#: gallery-plugin.php:
|
739 |
msgid "Bulk Actions"
|
740 |
msgstr "Действия"
|
741 |
|
742 |
-
#: gallery-plugin.php:
|
743 |
msgid "Apply"
|
744 |
msgstr "Применить"
|
745 |
|
746 |
-
#: gallery-plugin.php:
|
747 |
msgid "Delete from Gallery"
|
748 |
msgstr "Удалить из галереи"
|
749 |
|
750 |
-
#: gallery-plugin.php:
|
751 |
msgid "Display link to the original file under each image in the lightbox"
|
752 |
msgstr "Показать ссылку на исходный файл под каждым изображением в лайтбоксе"
|
753 |
|
754 |
-
#: gallery-plugin.php:
|
755 |
msgid "Bulk Select"
|
756 |
msgstr "Выбор"
|
757 |
|
758 |
-
#: gallery-plugin.php:
|
759 |
msgid "Cancel Selection"
|
760 |
msgstr "Отменить выбор"
|
761 |
|
762 |
-
#: gallery-plugin.php:
|
763 |
msgid "Delete Selected"
|
764 |
msgstr "Удалить выбранное"
|
765 |
|
766 |
-
#: gallery-plugin.php:
|
767 |
msgid "File"
|
768 |
msgstr "Файл"
|
769 |
|
770 |
-
#: gallery-plugin.php:
|
771 |
msgid "Dimensions"
|
772 |
msgstr "Размеры"
|
773 |
|
774 |
-
#: gallery-plugin.php:
|
775 |
msgid "Alt tag"
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#: gallery-plugin.php:
|
779 |
msgid ""
|
780 |
"The alt attribute specifies an alternate text for an image, if the image "
|
781 |
"cannot be displayed."
|
@@ -783,11 +763,11 @@ msgstr ""
|
|
783 |
"Атрибут Alt определяет альтернативный текст для изображения, если "
|
784 |
"изображение не может быть отображено."
|
785 |
|
786 |
-
#: gallery-plugin.php:
|
787 |
msgid "Custom URL"
|
788 |
msgstr "Пользовательская ссылка"
|
789 |
|
790 |
-
#: gallery-plugin.php:
|
791 |
msgid ""
|
792 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
793 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
@@ -795,98 +775,98 @@ msgstr ""
|
|
795 |
"Нажав на миниатюру, вы будете перенаправлены по ссылке (если поле заполнено) "
|
796 |
"или изображение будет открыто в лайтбоксе (если поле не заполнено)"
|
797 |
|
798 |
-
#: gallery-plugin.php:
|
799 |
msgid "Deselect"
|
800 |
msgstr "Отменить выбор"
|
801 |
|
802 |
-
#: gallery-plugin.php:
|
803 |
msgid "File name"
|
804 |
msgstr "Название файла"
|
805 |
|
806 |
-
#: gallery-plugin.php:
|
807 |
msgid "File type"
|
808 |
msgstr "Тип файла"
|
809 |
|
810 |
-
#: gallery-plugin.php:
|
811 |
msgid "Edit Attachment Info"
|
812 |
msgstr "Редактировать информацию"
|
813 |
|
814 |
-
#: gallery-plugin.php:
|
815 |
msgid "Edit Attachment"
|
816 |
msgstr "Редактировать"
|
817 |
|
818 |
-
#: gallery-plugin.php:
|
819 |
msgid "Go Pro"
|
820 |
msgstr "Перейти на Pro версию"
|
821 |
|
822 |
-
#: gallery-plugin.php:
|
823 |
msgid "Pro version"
|
824 |
msgstr "Pro версия"
|
825 |
|
826 |
-
#: gallery-plugin.php:
|
827 |
msgid "This setting is available in Pro version"
|
828 |
msgstr "Эти настройки доступны в Pro версии"
|
829 |
|
830 |
-
#: gallery-plugin.php:
|
831 |
msgid "Edit more details"
|
832 |
msgstr "Редактировать детали"
|
833 |
|
834 |
-
#: gallery-plugin.php:
|
835 |
#, php-format
|
836 |
msgid "Select %s"
|
837 |
msgstr "Выбрать %s"
|
838 |
|
839 |
-
#: gallery-plugin.php:
|
840 |
#, php-format
|
841 |
msgid "Edit “%s”"
|
842 |
msgstr "Изменить “%s”"
|
843 |
|
844 |
-
#: gallery-plugin.php:
|
845 |
msgid "Edit"
|
846 |
msgstr "Изменить"
|
847 |
|
848 |
-
#: gallery-plugin.php:
|
849 |
msgid "Trash"
|
850 |
msgstr "Удалить"
|
851 |
|
852 |
-
#: gallery-plugin.php:
|
853 |
msgid "Delete Permanently"
|
854 |
msgstr "Удалить навсегда"
|
855 |
|
856 |
-
#: gallery-plugin.php:
|
857 |
#, php-format
|
858 |
msgid "View “%s”"
|
859 |
msgstr "Просмотр “%s”"
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
msgid "View"
|
863 |
msgstr "Просмотр"
|
864 |
|
865 |
-
#: gallery-plugin.php:
|
866 |
msgid "Attach"
|
867 |
msgstr "Прикрепить"
|
868 |
|
869 |
-
#: gallery-plugin.php:
|
870 |
msgid "Restore"
|
871 |
msgstr "Восстановить"
|
872 |
|
873 |
-
#: gallery-plugin.php:
|
874 |
msgid "Warning"
|
875 |
msgstr "Внимание"
|
876 |
|
877 |
-
#: gallery-plugin.php:
|
878 |
msgid "You can add only images to the gallery"
|
879 |
msgstr "Вы можете добавить только изображения в галерею"
|
880 |
|
881 |
-
#: gallery-plugin.php:
|
882 |
msgid "no title"
|
883 |
msgstr "без названия"
|
884 |
|
885 |
-
#: gallery-plugin.php:
|
886 |
msgid "Sorry, no gallery found."
|
887 |
msgstr "Извините, ничего не найдено"
|
888 |
|
889 |
-
#: gallery-plugin.php:
|
890 |
msgid ""
|
891 |
"Display an album image with the description and the link to a single gallery "
|
892 |
"page"
|
@@ -894,90 +874,109 @@ msgstr ""
|
|
894 |
"Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
|
895 |
"галереи"
|
896 |
|
897 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
898 |
msgid "Install Demo Data"
|
899 |
msgstr "Установить демо-данные"
|
900 |
|
901 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
902 |
msgid "Remove Demo Data"
|
903 |
msgstr "Удалить демо-данные"
|
904 |
|
905 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
906 |
msgid "Delete demo-data and restore old plugin settings."
|
907 |
msgstr "Удалить демо-данные и восстановить старые настройки плагина. "
|
908 |
|
909 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
910 |
msgid "Yes, install demo data"
|
911 |
msgstr "Да, установить демо-данные"
|
912 |
|
913 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
914 |
msgid "Are you sure you want to install demo data?"
|
915 |
msgstr "Вы уверены, что хотите установить демо-данные?"
|
916 |
|
917 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
918 |
msgid "Yes, remove demo data"
|
919 |
msgstr "Да, удалить демо-данные"
|
920 |
|
921 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
922 |
msgid "Are you sure you want to remove demo data?"
|
923 |
msgstr "Вы уверены, что хотите удалить демо-данные?"
|
924 |
|
925 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
926 |
msgid "No, go back to the settings page"
|
927 |
msgstr "Нет, вернуться на страницу настроек"
|
928 |
|
929 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
930 |
msgid "Can not get demo data."
|
931 |
msgstr "Невозможно получить демо-данные."
|
932 |
|
933 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
934 |
msgid "Demo options already installed."
|
935 |
msgstr "Настройки демо уже установлены."
|
936 |
|
937 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
938 |
msgid "Demo data successfully installed."
|
939 |
msgstr "Демо-данные успешно установлены."
|
940 |
|
941 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
942 |
msgid "View post with shortcodes"
|
943 |
msgstr "Просмотрите запись с шорткодами"
|
944 |
|
945 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
946 |
msgid "View page with examples"
|
947 |
msgstr "Просмотрите запись с примерами"
|
948 |
|
949 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
950 |
msgid "Installation of demo data with some errors occurred."
|
951 |
msgstr "Установка демо-данных прошла с ошибками."
|
952 |
|
953 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
954 |
msgid "Posts data is missing."
|
955 |
msgstr "Контент записи отсутствует."
|
956 |
|
957 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
958 |
msgid "Demo data have already been removed."
|
959 |
msgstr "Демо-данные уже удалены."
|
960 |
|
961 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
962 |
msgid "Demo data successfully removed."
|
963 |
msgstr "Демо-данные успешно удалены."
|
964 |
|
965 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
966 |
msgid "Removing demo data with some errors occurred."
|
967 |
msgstr "Удаление демо-данных прошло с ошибками."
|
968 |
|
969 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
970 |
msgid "Close notice"
|
971 |
msgstr "Закрыть сообщение"
|
972 |
|
973 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
974 |
msgid "Install demo data"
|
975 |
msgstr "Установить демо-данные"
|
976 |
|
977 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
978 |
msgid "for an acquaintance with the possibilities of the"
|
979 |
msgstr "для ознакомления с возможностями плагина"
|
980 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
981 |
#~ msgid "Select a border color"
|
982 |
#~ msgstr "Выберите цвет рамки"
|
983 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-22 10:12+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
20 |
+
#: gallery-plugin.php:2010
|
21 |
msgid "Settings"
|
22 |
msgstr "Настройки"
|
23 |
|
24 |
+
#: gallery-plugin.php:139
|
25 |
msgid "See images »"
|
26 |
msgstr "Смотреть фотографии »"
|
27 |
|
28 |
+
#: gallery-plugin.php:142
|
29 |
msgid "Return to all albums"
|
30 |
msgstr "Вернуться ко всем альбомам"
|
31 |
|
32 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Galleries"
|
34 |
msgstr "Галереи"
|
35 |
|
36 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
37 |
msgid "Gallery"
|
38 |
msgstr "Галерея"
|
39 |
|
40 |
+
#: gallery-plugin.php:322
|
41 |
msgid "Add New Gallery"
|
42 |
msgstr "Добавить новую галерею"
|
43 |
|
44 |
+
#: gallery-plugin.php:323
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "Редактировать галерею"
|
47 |
|
48 |
+
#: gallery-plugin.php:324
|
49 |
msgid "New Gallery"
|
50 |
msgstr "Новая галерея"
|
51 |
|
52 |
+
#: gallery-plugin.php:325
|
53 |
msgid "View Gallery"
|
54 |
msgstr "Просмотреть галерею"
|
55 |
|
56 |
+
#: gallery-plugin.php:326
|
57 |
msgid "Search Galleries"
|
58 |
msgstr "Искать Галереи"
|
59 |
|
60 |
+
#: gallery-plugin.php:327
|
61 |
msgid "No Gallery found"
|
62 |
msgstr "Ни одной галереи не найдено"
|
63 |
|
64 |
+
#: gallery-plugin.php:388
|
65 |
msgid "Gallery Shortcode"
|
66 |
msgstr "Шорткод для галереи"
|
67 |
|
68 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
69 |
msgid "Gallery Categories"
|
70 |
msgstr "Категории галерей"
|
71 |
|
72 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
73 |
#, php-format
|
74 |
msgid ""
|
75 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
77 |
"Если вы хотите добавить галерею на вашу страницу или пост, то используйте "
|
78 |
"кнопку %s"
|
79 |
|
80 |
+
#: gallery-plugin.php:405
|
81 |
#, php-format
|
82 |
msgid ""
|
83 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
88 |
"блоке редактирования контента в режиме Visual. Если кнопка не отображается, "
|
89 |
"пожалуйста, используйте шорткод ниже."
|
90 |
|
91 |
+
#: gallery-plugin.php:411
|
92 |
msgid ""
|
93 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
94 |
msgstr ""
|
95 |
"Добавьте этот шорткод на страницу, пост или виджет для отображения отдельной "
|
96 |
"галереи"
|
97 |
|
98 |
+
#: gallery-plugin.php:414
|
99 |
msgid ""
|
100 |
"Use this shortcode to display an album image with the description and the "
|
101 |
"link to a single gallery page"
|
103 |
"Используйте этот шорткод, чтобы отобразить изображение альбома с описанием и "
|
104 |
"ссылкой на отдельную страницу галереи"
|
105 |
|
106 |
+
#: gallery-plugin.php:416
|
107 |
msgid "Short display"
|
108 |
msgstr "Отображение альбома"
|
109 |
|
110 |
+
#: gallery-plugin.php:433
|
111 |
msgid "Most Used"
|
112 |
msgstr "Наиболее используемые"
|
113 |
|
114 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
115 |
msgid "Default"
|
116 |
msgstr "По умолчанию"
|
117 |
|
118 |
+
#: gallery-plugin.php:443
|
119 |
msgid "Add New Gallery Category"
|
120 |
msgstr "Добавить новую категорию галерей"
|
121 |
|
122 |
+
#: gallery-plugin.php:448
|
123 |
msgid "Install plugin"
|
124 |
msgstr "Установить плагин"
|
125 |
|
126 |
+
#: gallery-plugin.php:610
|
127 |
msgid "Gallery Category"
|
128 |
msgstr "Категория галерей"
|
129 |
|
130 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgid "Sorry, nothing found."
|
132 |
msgstr "Извините, ничего не найдено."
|
133 |
|
134 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
135 |
+
#: gallery-plugin.php:3128
|
136 |
msgid "Title"
|
137 |
msgstr "Название"
|
138 |
|
139 |
+
#: gallery-plugin.php:1356
|
140 |
msgid "Author"
|
141 |
msgstr "Автор"
|
142 |
|
143 |
+
#: gallery-plugin.php:1357
|
144 |
msgid "Shortcode"
|
145 |
msgstr "Шорткод"
|
146 |
|
147 |
+
#: gallery-plugin.php:1358
|
148 |
msgid "Photos"
|
149 |
msgstr "Фото"
|
150 |
|
151 |
+
#: gallery-plugin.php:1359
|
152 |
msgid "Date"
|
153 |
msgstr "Дата"
|
154 |
|
155 |
+
#: gallery-plugin.php:1547
|
156 |
msgid "Settings are saved"
|
157 |
msgstr "Опции сохранены"
|
158 |
|
159 |
+
#: gallery-plugin.php:1564
|
160 |
msgid "All plugin settings were restored."
|
161 |
msgstr "Настройки плагина восстановлены."
|
162 |
|
163 |
+
#: gallery-plugin.php:1576
|
164 |
msgid "Gallery Settings"
|
165 |
msgstr "Настройки Gallery"
|
166 |
|
167 |
+
#: gallery-plugin.php:1579
|
168 |
msgid "Custom code"
|
169 |
msgstr "Пользовательский код"
|
170 |
|
171 |
+
#: gallery-plugin.php:1580
|
172 |
msgid "Go PRO"
|
173 |
msgstr "Перейти на Pro версию"
|
174 |
|
175 |
+
#: gallery-plugin.php:1590
|
176 |
msgid "Please enable JavaScript to use the option to renew images."
|
177 |
msgstr ""
|
178 |
"Пожалуйста, включите javascript для использования опции обновления "
|
179 |
"изображений."
|
180 |
|
181 |
+
#: gallery-plugin.php:1602
|
182 |
#, php-format
|
183 |
msgid ""
|
184 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
189 |
"блоке редактирования контента в режиме Visual. Если кнопка не отображается, "
|
190 |
"пожалуйста, используйте шорткод %s, где * обозначает ID галереи"
|
191 |
|
192 |
+
#: gallery-plugin.php:1612
|
193 |
+
msgid "Galleries page"
|
194 |
+
msgstr "Страница галерей"
|
195 |
+
|
196 |
+
#: gallery-plugin.php:1622
|
197 |
msgid "Number of images in the row"
|
198 |
msgstr "Количество изображений в строке"
|
199 |
|
200 |
+
#: gallery-plugin.php:1624
|
201 |
msgid ""
|
202 |
"The number of images per row can be less depending on the width of the "
|
203 |
"parent block"
|
205 |
"Количество изображений в строке может быть меньше в зависимости от ширины "
|
206 |
"родительского блока"
|
207 |
|
208 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
209 |
msgid "Image size"
|
210 |
msgstr "Название размера изображения"
|
211 |
|
212 |
+
#: gallery-plugin.php:1631
|
213 |
msgid ""
|
214 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
215 |
"upload a new photo."
|
217 |
"WordPress создаст новую миниатюру с заданными размерами при загрузке новой "
|
218 |
"фотографии."
|
219 |
|
220 |
+
#: gallery-plugin.php:1633
|
221 |
msgid "For the album cover"
|
222 |
msgstr "Для обложки альбома галереи"
|
223 |
|
224 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
225 |
msgid "width x height"
|
226 |
msgstr "ширина x высота"
|
227 |
|
228 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
229 |
msgid "in px"
|
230 |
+
msgstr "в px"
|
231 |
|
232 |
+
#: gallery-plugin.php:1637
|
233 |
msgid "For thumbnails"
|
234 |
msgstr "Для миниатюр"
|
235 |
|
236 |
+
#: gallery-plugin.php:1641
|
237 |
msgid "Update images for gallery"
|
238 |
msgstr "Обновить все изображения для галереи"
|
239 |
|
240 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
241 |
msgid "Close"
|
242 |
msgstr "Закрыть"
|
243 |
|
244 |
+
#: gallery-plugin.php:1657
|
245 |
msgid "For images in the lightbox"
|
246 |
msgstr "Для изображений в лайтбоксе"
|
247 |
|
248 |
+
#: gallery-plugin.php:1661
|
249 |
msgid "Display a full size image in the lightbox"
|
250 |
msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
|
251 |
|
252 |
+
#: gallery-plugin.php:1666
|
253 |
msgid "Crop position"
|
254 |
msgstr "Позиция обрезки"
|
255 |
|
256 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
257 |
msgid "center"
|
258 |
msgstr "центр"
|
259 |
|
260 |
+
#: gallery-plugin.php:1672
|
261 |
msgid "Horizontal"
|
262 |
msgstr "Горизонтальная"
|
263 |
|
264 |
+
#: gallery-plugin.php:1678
|
265 |
msgid "Vertical"
|
266 |
msgstr "Вертикальная"
|
267 |
|
268 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
269 |
msgid ""
|
270 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
271 |
msgstr "При переходе на Pro версию все ваши настройки и галереи сохраняются."
|
272 |
|
273 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
274 |
msgid "Unlock premium options by upgrading to Pro version"
|
275 |
msgstr "Активируйте премиум опции обновившись до Pro версии"
|
276 |
|
277 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
278 |
msgid "Start Your Trial"
|
279 |
msgstr "Получить пробную версию"
|
280 |
|
281 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
282 |
msgid "or"
|
283 |
msgstr "или"
|
284 |
|
285 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
286 |
msgid "Learn More"
|
287 |
msgstr "Подробнее"
|
288 |
|
289 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
290 |
msgid "Display image title"
|
291 |
msgstr "Отображать заголовки изображений"
|
292 |
|
293 |
+
#: gallery-plugin.php:1708
|
294 |
msgid ""
|
295 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
296 |
msgstr ""
|
297 |
"Отключите чекбокс, если вы хотите отображать заголовки изображений только в "
|
298 |
"лайтбоксе"
|
299 |
|
300 |
+
#: gallery-plugin.php:1712
|
301 |
msgid "Images with border"
|
302 |
msgstr "Изображения с рамкой"
|
303 |
|
304 |
+
#: gallery-plugin.php:1716
|
305 |
msgid "Border width in px, just numbers"
|
306 |
msgstr "Ширина рамки в px, только числа"
|
307 |
|
308 |
+
#: gallery-plugin.php:1722
|
309 |
msgid "Sort images"
|
310 |
msgstr "Сортировать изображения"
|
311 |
|
312 |
+
#: gallery-plugin.php:1725
|
313 |
msgid "by Attachment ID"
|
314 |
msgstr "по ID изображения"
|
315 |
|
316 |
+
#: gallery-plugin.php:1726
|
317 |
msgid "by Image Name"
|
318 |
msgstr "по Названию изображения"
|
319 |
|
320 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
321 |
msgid "by Date"
|
322 |
msgstr "по Дате"
|
323 |
|
324 |
+
#: gallery-plugin.php:1728
|
325 |
msgid "by Sorting order in the Gallery"
|
326 |
msgstr "по Порядку сортировки в Галерее"
|
327 |
|
328 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
329 |
msgid "Random"
|
330 |
msgstr "Произвольно"
|
331 |
|
332 |
+
#: gallery-plugin.php:1734
|
333 |
msgid "The images sort order"
|
334 |
msgstr "Порядок сортировки изображений"
|
335 |
|
336 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
337 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
338 |
msgstr ""
|
339 |
"ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3; "
|
340 |
"а, б, в)"
|
341 |
|
342 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
343 |
msgid ""
|
344 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
345 |
msgstr "DESC (по убыванию от наибольшего до наименьшего - 3, 2, 1; в, б, а)"
|
346 |
|
347 |
+
#: gallery-plugin.php:1743
|
348 |
msgid "Sort galleries"
|
349 |
msgstr "Сортировать галереи"
|
350 |
|
351 |
+
#: gallery-plugin.php:1746
|
352 |
msgid "by Gallery ID"
|
353 |
msgstr "по ID галереи"
|
354 |
|
355 |
+
#: gallery-plugin.php:1747
|
356 |
msgid "by Title"
|
357 |
msgstr "по Названию"
|
358 |
|
359 |
+
#: gallery-plugin.php:1749
|
360 |
msgid "by Last modified date"
|
361 |
msgstr "по Дате последнего изменения"
|
362 |
|
363 |
+
#: gallery-plugin.php:1750
|
364 |
msgid "by Comment count"
|
365 |
msgstr "по Количеству комментариев"
|
366 |
|
367 |
+
#: gallery-plugin.php:1751
|
368 |
msgid "by Sorting order (the input field for sorting order)"
|
369 |
msgstr "по Порядку сортировки (поле ввода для сортировки)"
|
370 |
|
371 |
+
#: gallery-plugin.php:1752
|
372 |
msgid "by Author"
|
373 |
msgstr "по Автору"
|
374 |
|
375 |
+
#: gallery-plugin.php:1758
|
376 |
msgid "The galleries sort order"
|
377 |
msgstr "Порядок сортировки галерей"
|
378 |
|
379 |
+
#: gallery-plugin.php:1767
|
380 |
msgid "Start slideshow"
|
381 |
msgstr "Начать слайдшоу"
|
382 |
|
383 |
+
#: gallery-plugin.php:1770
|
384 |
msgid "Slideshow interval"
|
385 |
msgstr "Интервал времени при показе слайдшоу"
|
386 |
|
387 |
+
#: gallery-plugin.php:1770
|
388 |
msgid "(ms)"
|
389 |
msgstr "(мс)"
|
390 |
|
391 |
+
#: gallery-plugin.php:1774
|
392 |
msgid "Use single lightbox for multiple galleries on one page"
|
393 |
msgstr "Использовать один лайтбокс для нескольких галерей на одной странице"
|
394 |
|
395 |
+
#: gallery-plugin.php:1780
|
396 |
msgid "Display the Back link"
|
397 |
msgstr "Отображать ссылку Вернуться"
|
398 |
|
399 |
+
#: gallery-plugin.php:1786
|
400 |
msgid "Display the Back link in the shortcode"
|
401 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
402 |
|
403 |
+
#: gallery-plugin.php:1792
|
404 |
msgid "The Back link text"
|
405 |
msgstr "Текст для ссылки Вернуться"
|
406 |
|
407 |
+
#: gallery-plugin.php:1798
|
408 |
msgid "The Back link URL"
|
409 |
msgstr "URL для ссылки Вернуться"
|
410 |
|
411 |
+
#: gallery-plugin.php:1801
|
412 |
msgid "Gallery page (Page with Gallery Template)"
|
413 |
msgstr "Страница галереи (Страница с Gallery Template)"
|
414 |
|
415 |
+
#: gallery-plugin.php:1803
|
416 |
msgid "(Full URL to custom page)"
|
417 |
msgstr "(Полная ссылка на пользовательскую страницу)"
|
418 |
|
419 |
+
#: gallery-plugin.php:1808
|
420 |
msgid "The Read More link text"
|
421 |
msgstr "Текст для ссылки Узнать больше"
|
422 |
|
423 |
+
#: gallery-plugin.php:1814
|
424 |
msgid "Add gallery to the search"
|
425 |
msgstr "Добавить галерею в поиск"
|
426 |
|
427 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
428 |
msgid "Using"
|
429 |
msgstr "Используя"
|
430 |
|
431 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
432 |
msgid "powered by"
|
433 |
msgstr "разработанный"
|
434 |
|
435 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
436 |
msgid "Activate"
|
437 |
msgstr "Активировать"
|
438 |
|
439 |
+
#: gallery-plugin.php:1826
|
440 |
msgid "Download"
|
441 |
msgstr "Загрузить"
|
442 |
|
443 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
msgid "Rename gallery post type"
|
445 |
msgstr "Переименовать тип поста \"gallery\""
|
446 |
|
447 |
+
#: gallery-plugin.php:1837
|
448 |
msgid ""
|
449 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
450 |
"it now"
|
452 |
"Во избежание конфликтов с другими плагинами, пожалуйста, пометьте чекбокс "
|
453 |
"флажком, что бы переименовать его сейчас"
|
454 |
|
455 |
+
#: gallery-plugin.php:1838
|
456 |
msgid ""
|
457 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
458 |
"please check settings of your other plugins where 'gallery' post type is used"
|
461 |
"переименования проверьте, пожалуйста, настройки других плагинов, где "
|
462 |
"используется тип поста \"gallery\""
|
463 |
|
464 |
+
#: gallery-plugin.php:1851
|
465 |
msgid "Single gallery view"
|
466 |
msgstr "Вид галереи"
|
467 |
|
468 |
+
#: gallery-plugin.php:1854
|
469 |
msgid "Grid"
|
470 |
msgstr "Сетка"
|
471 |
|
472 |
+
#: gallery-plugin.php:1855
|
473 |
msgid "Masonry"
|
474 |
msgstr "Masonry"
|
475 |
|
476 |
+
#: gallery-plugin.php:1863
|
477 |
msgid "Under image"
|
478 |
msgstr "Под изображением"
|
479 |
|
480 |
+
#: gallery-plugin.php:1864
|
481 |
msgid "By mouse hover"
|
482 |
msgstr "По наведению мыши"
|
483 |
|
484 |
+
#: gallery-plugin.php:1869
|
485 |
msgid "Use pagination for images"
|
486 |
msgstr "Использовать пагинацию для изображений"
|
487 |
|
488 |
+
#: gallery-plugin.php:1872
|
489 |
msgid "per page"
|
490 |
msgstr "на странице"
|
491 |
|
492 |
+
#: gallery-plugin.php:1876
|
493 |
msgid "Lightbox background"
|
494 |
msgstr "Фон лайтбокса"
|
495 |
|
496 |
+
#: gallery-plugin.php:1879
|
497 |
msgid "Background transparency (from 0 to 1)"
|
498 |
msgstr "Прозрачность для фона (от 0 до 1)"
|
499 |
|
500 |
+
#: gallery-plugin.php:1885
|
501 |
msgid ""
|
502 |
"Display all images in the lightbox instead of going into a single gallery"
|
503 |
msgstr ""
|
504 |
"Отображать все изображения в лайтбоксе вместо перехода в отдельную галерею"
|
505 |
|
506 |
+
#: gallery-plugin.php:1888
|
507 |
#, php-format
|
508 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
509 |
msgstr "Когда используется темплейт галереи или шорткод с параметром `%s`"
|
510 |
|
511 |
+
#: gallery-plugin.php:1892
|
512 |
msgid "The lightbox helper"
|
513 |
msgstr "Вспомогательные элементы в лайтбоксе"
|
514 |
|
515 |
+
#: gallery-plugin.php:1894
|
516 |
msgid "Do not use"
|
517 |
msgstr "Не использовать"
|
518 |
|
519 |
+
#: gallery-plugin.php:1895
|
520 |
msgid "Button helper"
|
521 |
msgstr "Вспомогательные кнопки"
|
522 |
|
523 |
+
#: gallery-plugin.php:1896
|
524 |
msgid "Thumbnail helper"
|
525 |
msgstr "Вспомогательные миниатюры"
|
526 |
|
527 |
+
#: gallery-plugin.php:1900
|
528 |
msgid "Display Like buttons in the lightbox"
|
529 |
msgstr "Отображать Like кнопки в лайтбоксе"
|
530 |
|
531 |
+
#: gallery-plugin.php:1904
|
532 |
msgid "FaceBook"
|
533 |
msgstr "FaceBook"
|
534 |
|
535 |
+
#: gallery-plugin.php:1905
|
536 |
msgid "Twitter"
|
537 |
msgstr "Twitter"
|
538 |
|
539 |
+
#: gallery-plugin.php:1906
|
540 |
msgid "Pinterest"
|
541 |
msgstr "Pinterest"
|
542 |
|
543 |
+
#: gallery-plugin.php:1907
|
544 |
msgid "Google +1"
|
545 |
msgstr "Google +1"
|
546 |
|
547 |
+
#: gallery-plugin.php:1910
|
548 |
msgid "Show counter"
|
549 |
msgstr "Отображать счетчик"
|
550 |
|
551 |
+
#: gallery-plugin.php:1912
|
552 |
msgid "Align"
|
553 |
msgstr "Выравнивание"
|
554 |
|
555 |
+
#: gallery-plugin.php:1914
|
556 |
msgid "left"
|
557 |
msgstr "слева"
|
558 |
|
559 |
+
#: gallery-plugin.php:1921
|
560 |
msgid "Title for lightbox button"
|
561 |
msgstr "Название кнопки в лайтбоксе"
|
562 |
|
563 |
+
#: gallery-plugin.php:1927
|
564 |
msgid "Slug for gallery item"
|
565 |
msgstr "Название для элементов галереи"
|
566 |
|
567 |
+
#: gallery-plugin.php:1929
|
568 |
msgid "for any structure of permalinks except the default structure"
|
569 |
msgstr "для любой структуры ссылок, за исключением структуры по умолчанию"
|
570 |
|
571 |
+
#: gallery-plugin.php:1955
|
572 |
msgid "Save Changes"
|
573 |
msgstr "Сохранить изменения"
|
574 |
|
575 |
+
#: gallery-plugin.php:1960
|
576 |
msgid ""
|
577 |
"If you install the demo-data, will be created galleries with images, demo-"
|
578 |
"post with available shortcodes and page with a list of all the galleries."
|
580 |
"При установке демо-данных будут созданы галереи с изображениями, пост с "
|
581 |
"доступными шорткодами и страница со списком всех галерей."
|
582 |
|
583 |
+
#: gallery-plugin.php:1994
|
584 |
msgid "FAQ"
|
585 |
msgstr "FAQ"
|
586 |
|
587 |
+
#: gallery-plugin.php:1995
|
588 |
msgid "Support"
|
589 |
msgstr "Поддержка"
|
590 |
|
591 |
+
#: gallery-plugin.php:2032
|
592 |
msgid "Updating images..."
|
593 |
msgstr "Обновление изображений..."
|
594 |
|
595 |
+
#: gallery-plugin.php:2033
|
596 |
msgid "No image found."
|
597 |
msgstr "Ни одного изображения не найдено."
|
598 |
|
599 |
+
#: gallery-plugin.php:2034
|
600 |
msgid "All images are updated."
|
601 |
msgstr "Все изображения были обновлены."
|
602 |
|
603 |
+
#: gallery-plugin.php:2035
|
604 |
msgid "Error."
|
605 |
msgstr "Ошибка."
|
606 |
|
607 |
+
#: gallery-plugin.php:2049
|
608 |
msgid ""
|
609 |
"You are about to delete these items from this gallery.\n"
|
610 |
" 'Cancel' to stop, 'OK' to delete."
|
612 |
"Вы собираетесь удалить эти элементы из этой галереи.\n"
|
613 |
" Нажмите \"Отменить\" чтобы отменить действие или \"OK\" для удаления."
|
614 |
|
615 |
+
#: gallery-plugin.php:2050
|
616 |
msgid ""
|
617 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
618 |
"switching?"
|
620 |
"При переключение на другой режим все несохраненные данные будут потеряны. "
|
621 |
"Сохранить данные перед переключением?"
|
622 |
|
623 |
+
#: gallery-plugin.php:2051
|
624 |
msgid "Insert Media"
|
625 |
msgstr "Вставить медиафайл"
|
626 |
|
627 |
+
#: gallery-plugin.php:2052
|
628 |
msgid "Insert"
|
629 |
msgstr "Вставить"
|
630 |
|
631 |
+
#: gallery-plugin.php:2064
|
632 |
msgid "Learn more"
|
633 |
msgstr "Подробнее"
|
634 |
|
635 |
+
#: gallery-plugin.php:2076
|
636 |
msgid "Install now"
|
637 |
msgstr "Установить"
|
638 |
|
639 |
+
#: gallery-plugin.php:2085
|
640 |
msgid "Add multiple gallery categories"
|
641 |
msgstr "Добавить несколько категорий галереи"
|
642 |
|
643 |
+
#: gallery-plugin.php:2085
|
644 |
msgid ""
|
645 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
646 |
msgstr ""
|
647 |
"Установить плагин Gallery Categories, чтобы иметь возможность добавлять "
|
648 |
"неограниченное количество категорий."
|
649 |
|
650 |
+
#: gallery-plugin.php:2405
|
651 |
+
msgid "Download high resolution image"
|
652 |
+
msgstr "Скачать изображение в высоком разрешении"
|
653 |
+
|
654 |
+
#: gallery-plugin.php:2417
|
655 |
+
msgid "Image"
|
656 |
+
msgstr "Изображение"
|
657 |
+
|
658 |
+
#: gallery-plugin.php:2558
|
659 |
msgid "Image size not defined"
|
660 |
msgstr "Невозможно определить размер изображения"
|
661 |
|
662 |
+
#: gallery-plugin.php:2573
|
663 |
msgid ""
|
664 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
665 |
"manually reload image."
|
667 |
"Плагин может обновить только PNG, JPEG, GIF, XBM или WPMP типы файлов. Для "
|
668 |
"других, пожалуйста, вручную перезагрузите изображения."
|
669 |
|
670 |
+
#: gallery-plugin.php:2584
|
671 |
msgid "Image size changes not defined"
|
672 |
msgstr "Не удалось вычислить изменения размеров изображения"
|
673 |
|
674 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
675 |
msgid "Invalid path"
|
676 |
msgstr "Путь к изображению для редактирования некорректный"
|
677 |
|
678 |
+
#: gallery-plugin.php:2694
|
679 |
msgid "Add images requires JavaScript."
|
680 |
msgstr "Для добавления изображений необходим JavaScript."
|
681 |
|
682 |
+
#: gallery-plugin.php:2697
|
683 |
msgid "Add Media"
|
684 |
msgstr "Добавить медиафайл"
|
685 |
|
686 |
+
#: gallery-plugin.php:2707
|
687 |
msgid "The grid view for the Gallery images requires JavaScript."
|
688 |
msgstr "Вид сетки для галереи изображений требует JavaScript."
|
689 |
|
690 |
+
#: gallery-plugin.php:2707
|
691 |
msgid "Switch to the list view"
|
692 |
msgstr "Переключиться на список"
|
693 |
|
694 |
+
#: gallery-plugin.php:2734
|
695 |
msgid "List View"
|
696 |
msgstr "В виде списка"
|
697 |
|
698 |
+
#: gallery-plugin.php:2735
|
699 |
msgid "Grid View"
|
700 |
msgstr "В виде сетки"
|
701 |
|
702 |
+
#: gallery-plugin.php:2790
|
703 |
msgid "Filter"
|
704 |
msgstr "Фильтр"
|
705 |
|
706 |
+
#: gallery-plugin.php:2794
|
707 |
msgid "Empty Trash"
|
708 |
msgstr "Очистить корзину"
|
709 |
|
710 |
+
#: gallery-plugin.php:2815
|
711 |
msgid "No images found"
|
712 |
msgstr "Ни одного изображения не найдено"
|
713 |
|
714 |
+
#: gallery-plugin.php:2867
|
715 |
msgid "Select bulk action"
|
716 |
msgstr "Выберите массовое действие"
|
717 |
|
718 |
+
#: gallery-plugin.php:2869
|
719 |
msgid "Bulk Actions"
|
720 |
msgstr "Действия"
|
721 |
|
722 |
+
#: gallery-plugin.php:2879
|
723 |
msgid "Apply"
|
724 |
msgstr "Применить"
|
725 |
|
726 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
727 |
msgid "Delete from Gallery"
|
728 |
msgstr "Удалить из галереи"
|
729 |
|
730 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
731 |
msgid "Display link to the original file under each image in the lightbox"
|
732 |
msgstr "Показать ссылку на исходный файл под каждым изображением в лайтбоксе"
|
733 |
|
734 |
+
#: gallery-plugin.php:2908
|
735 |
msgid "Bulk Select"
|
736 |
msgstr "Выбор"
|
737 |
|
738 |
+
#: gallery-plugin.php:2910
|
739 |
msgid "Cancel Selection"
|
740 |
msgstr "Отменить выбор"
|
741 |
|
742 |
+
#: gallery-plugin.php:2911
|
743 |
msgid "Delete Selected"
|
744 |
msgstr "Удалить выбранное"
|
745 |
|
746 |
+
#: gallery-plugin.php:2924
|
747 |
msgid "File"
|
748 |
msgstr "Файл"
|
749 |
|
750 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
751 |
msgid "Dimensions"
|
752 |
msgstr "Размеры"
|
753 |
|
754 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
755 |
msgid "Alt tag"
|
756 |
+
msgstr "Тег \"Alt\""
|
757 |
|
758 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
759 |
msgid ""
|
760 |
"The alt attribute specifies an alternate text for an image, if the image "
|
761 |
"cannot be displayed."
|
763 |
"Атрибут Alt определяет альтернативный текст для изображения, если "
|
764 |
"изображение не может быть отображено."
|
765 |
|
766 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
767 |
msgid "Custom URL"
|
768 |
msgstr "Пользовательская ссылка"
|
769 |
|
770 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
771 |
msgid ""
|
772 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
773 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
775 |
"Нажав на миниатюру, вы будете перенаправлены по ссылке (если поле заполнено) "
|
776 |
"или изображение будет открыто в лайтбоксе (если поле не заполнено)"
|
777 |
|
778 |
+
#: gallery-plugin.php:3006
|
779 |
msgid "Deselect"
|
780 |
msgstr "Отменить выбор"
|
781 |
|
782 |
+
#: gallery-plugin.php:3012
|
783 |
msgid "File name"
|
784 |
msgstr "Название файла"
|
785 |
|
786 |
+
#: gallery-plugin.php:3013
|
787 |
msgid "File type"
|
788 |
msgstr "Тип файла"
|
789 |
|
790 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
791 |
msgid "Edit Attachment Info"
|
792 |
msgstr "Редактировать информацию"
|
793 |
|
794 |
+
#: gallery-plugin.php:3017
|
795 |
msgid "Edit Attachment"
|
796 |
msgstr "Редактировать"
|
797 |
|
798 |
+
#: gallery-plugin.php:3027
|
799 |
msgid "Go Pro"
|
800 |
msgstr "Перейти на Pro версию"
|
801 |
|
802 |
+
#: gallery-plugin.php:3027
|
803 |
msgid "Pro version"
|
804 |
msgstr "Pro версия"
|
805 |
|
806 |
+
#: gallery-plugin.php:3030
|
807 |
msgid "This setting is available in Pro version"
|
808 |
msgstr "Эти настройки доступны в Pro версии"
|
809 |
|
810 |
+
#: gallery-plugin.php:3063
|
811 |
msgid "Edit more details"
|
812 |
msgstr "Редактировать детали"
|
813 |
|
814 |
+
#: gallery-plugin.php:3098
|
815 |
#, php-format
|
816 |
msgid "Select %s"
|
817 |
msgstr "Выбрать %s"
|
818 |
|
819 |
+
#: gallery-plugin.php:3111
|
820 |
#, php-format
|
821 |
msgid "Edit “%s”"
|
822 |
msgstr "Изменить “%s”"
|
823 |
|
824 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
825 |
msgid "Edit"
|
826 |
msgstr "Изменить"
|
827 |
|
828 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
829 |
msgid "Trash"
|
830 |
msgstr "Удалить"
|
831 |
|
832 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
833 |
msgid "Delete Permanently"
|
834 |
msgstr "Удалить навсегда"
|
835 |
|
836 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
837 |
#, php-format
|
838 |
msgid "View “%s”"
|
839 |
msgstr "Просмотр “%s”"
|
840 |
|
841 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
842 |
msgid "View"
|
843 |
msgstr "Просмотр"
|
844 |
|
845 |
+
#: gallery-plugin.php:3166
|
846 |
msgid "Attach"
|
847 |
msgstr "Прикрепить"
|
848 |
|
849 |
+
#: gallery-plugin.php:3172
|
850 |
msgid "Restore"
|
851 |
msgstr "Восстановить"
|
852 |
|
853 |
+
#: gallery-plugin.php:3303
|
854 |
msgid "Warning"
|
855 |
msgstr "Внимание"
|
856 |
|
857 |
+
#: gallery-plugin.php:3303
|
858 |
msgid "You can add only images to the gallery"
|
859 |
msgstr "Вы можете добавить только изображения в галерею"
|
860 |
|
861 |
+
#: gallery-plugin.php:3345
|
862 |
msgid "no title"
|
863 |
msgstr "без названия"
|
864 |
|
865 |
+
#: gallery-plugin.php:3353
|
866 |
msgid "Sorry, no gallery found."
|
867 |
msgstr "Извините, ничего не найдено"
|
868 |
|
869 |
+
#: gallery-plugin.php:3359
|
870 |
msgid ""
|
871 |
"Display an album image with the description and the link to a single gallery "
|
872 |
"page"
|
874 |
"Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
|
875 |
"галереи"
|
876 |
|
877 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
878 |
msgid "Install Demo Data"
|
879 |
msgstr "Установить демо-данные"
|
880 |
|
881 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
882 |
msgid "Remove Demo Data"
|
883 |
msgstr "Удалить демо-данные"
|
884 |
|
885 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
886 |
msgid "Delete demo-data and restore old plugin settings."
|
887 |
msgstr "Удалить демо-данные и восстановить старые настройки плагина. "
|
888 |
|
889 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
890 |
msgid "Yes, install demo data"
|
891 |
msgstr "Да, установить демо-данные"
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
894 |
msgid "Are you sure you want to install demo data?"
|
895 |
msgstr "Вы уверены, что хотите установить демо-данные?"
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
898 |
msgid "Yes, remove demo data"
|
899 |
msgstr "Да, удалить демо-данные"
|
900 |
|
901 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
902 |
msgid "Are you sure you want to remove demo data?"
|
903 |
msgstr "Вы уверены, что хотите удалить демо-данные?"
|
904 |
|
905 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
906 |
msgid "No, go back to the settings page"
|
907 |
msgstr "Нет, вернуться на страницу настроек"
|
908 |
|
909 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
910 |
msgid "Can not get demo data."
|
911 |
msgstr "Невозможно получить демо-данные."
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
914 |
msgid "Demo options already installed."
|
915 |
msgstr "Настройки демо уже установлены."
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
918 |
msgid "Demo data successfully installed."
|
919 |
msgstr "Демо-данные успешно установлены."
|
920 |
|
921 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
922 |
msgid "View post with shortcodes"
|
923 |
msgstr "Просмотрите запись с шорткодами"
|
924 |
|
925 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
926 |
msgid "View page with examples"
|
927 |
msgstr "Просмотрите запись с примерами"
|
928 |
|
929 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
930 |
msgid "Installation of demo data with some errors occurred."
|
931 |
msgstr "Установка демо-данных прошла с ошибками."
|
932 |
|
933 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
934 |
msgid "Posts data is missing."
|
935 |
msgstr "Контент записи отсутствует."
|
936 |
|
937 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
938 |
msgid "Demo data have already been removed."
|
939 |
msgstr "Демо-данные уже удалены."
|
940 |
|
941 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
942 |
msgid "Demo data successfully removed."
|
943 |
msgstr "Демо-данные успешно удалены."
|
944 |
|
945 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
946 |
msgid "Removing demo data with some errors occurred."
|
947 |
msgstr "Удаление демо-данных прошло с ошибками."
|
948 |
|
949 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
950 |
msgid "Close notice"
|
951 |
msgstr "Закрыть сообщение"
|
952 |
|
953 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
954 |
msgid "Install demo data"
|
955 |
msgstr "Установить демо-данные"
|
956 |
|
957 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
958 |
msgid "for an acquaintance with the possibilities of the"
|
959 |
msgstr "для ознакомления с возможностями плагина"
|
960 |
|
961 |
+
#~ msgid ""
|
962 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
963 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
964 |
+
#~ "theme for the correct work of the Gallery plugin"
|
965 |
+
#~ msgstr ""
|
966 |
+
#~ "Файлы '%s' и '%s' не найдены в каталоге вашей темы. Пожалуйста, "
|
967 |
+
#~ "скопируйте их из каталога `%s` в директорию вашей темы для корректной "
|
968 |
+
#~ "работы плагина Gallery"
|
969 |
+
|
970 |
+
#~ msgid "Rewrite templates after update"
|
971 |
+
#~ msgstr "Перезапись шаблонов после обновления"
|
972 |
+
|
973 |
+
#~ msgid ""
|
974 |
+
#~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
975 |
+
#~ "theme folder and You don't want to rewrite them"
|
976 |
+
#~ msgstr ""
|
977 |
+
#~ "Отключите чекбокс, если вы внесли изменения в файлы '%s' или '%s' в "
|
978 |
+
#~ "папке темы, и вы не хотите чтобы они были обновлены"
|
979 |
+
|
980 |
#~ msgid "Select a border color"
|
981 |
#~ msgstr "Выберите цвет рамки"
|
982 |
|
languages/gallery-plugin-sk_SK.mo
CHANGED
Binary file
|
languages/gallery-plugin-sk_SK.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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Michal Králik <ja@michalkralik.sk>\n"
|
9 |
"Language: sk_SK\n"
|
@@ -16,74 +16,62 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "Settings"
|
22 |
msgstr "Nastavenia"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "See images »"
|
26 |
msgstr "Vidieť fotky »"
|
27 |
|
28 |
-
#: gallery-plugin.php:
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
-
#, fuzzy, php-format
|
34 |
-
msgid ""
|
35 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
36 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
37 |
-
"theme for the correct work of the Gallery plugin"
|
38 |
-
msgstr ""
|
39 |
-
"Nasledujúci súbor \"gallery-template.php\" a \"gallery-single-template.php\" "
|
40 |
-
"nebol nájdený v priečinku vo vašej téme. Prosím skopírujte ich z `/wp-"
|
41 |
-
"content/plugins/gallery-plugin/template/` do priečinku vašej témy pre "
|
42 |
-
"správnu prácu pluginu Galérie."
|
43 |
-
|
44 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
45 |
msgid "Galleries"
|
46 |
msgstr "Galérie"
|
47 |
|
48 |
-
#: gallery-plugin.php:
|
49 |
msgid "Gallery"
|
50 |
msgstr "Galéria"
|
51 |
|
52 |
-
#: gallery-plugin.php:
|
53 |
msgid "Add New Gallery"
|
54 |
msgstr "Pridať novú galériu"
|
55 |
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "Edit Gallery"
|
58 |
msgstr "Upraviť galériu"
|
59 |
|
60 |
-
#: gallery-plugin.php:
|
61 |
msgid "New Gallery"
|
62 |
msgstr "Nová galéria"
|
63 |
|
64 |
-
#: gallery-plugin.php:
|
65 |
msgid "View Gallery"
|
66 |
msgstr "Zobraziť galériu"
|
67 |
|
68 |
-
#: gallery-plugin.php:
|
69 |
#, fuzzy
|
70 |
msgid "Search Galleries"
|
71 |
msgstr "Galérie"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "No Gallery found"
|
75 |
msgstr "Galéria nebola nájdená"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Gallery Shortcode"
|
79 |
msgstr "Krátky kód galérie"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Categories"
|
84 |
msgstr "Veľkosť obrázka galérie"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
#, fuzzy, php-format
|
88 |
msgid ""
|
89 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -91,7 +79,7 @@ msgstr ""
|
|
91 |
"Ak si prajete pridať galériu do vášho článku alebo na stránku, len "
|
92 |
"skopírujte tento krátky kód na vašu stránku alebo článok:"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
#, php-format
|
96 |
msgid ""
|
97 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -99,12 +87,12 @@ msgid ""
|
|
99 |
"please use the shortcode below"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
msgid ""
|
104 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
#, fuzzy
|
109 |
msgid ""
|
110 |
"Use this shortcode to display an album image with the description and the "
|
@@ -113,95 +101,87 @@ msgstr ""
|
|
113 |
"Ak chcete zobraziť krátky popis obsahujúci náhľad a odkaz na vlastnú stŕnaku "
|
114 |
"galérie"
|
115 |
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "Short display"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Most Used"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Default"
|
126 |
msgstr "Štandardné"
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
#, fuzzy
|
130 |
msgid "Add New Gallery Category"
|
131 |
msgstr "Pridať novú galériu"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "Install plugin"
|
136 |
msgstr "Plugin nainštalovaný"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
#, fuzzy
|
140 |
msgid "Gallery Category"
|
141 |
msgstr "Veľkosť obrázka galérie"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
-
msgid "Download high resolution image"
|
145 |
-
msgstr "Stiahnuť obrázok vo vysokom rozlíšení"
|
146 |
-
|
147 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
148 |
-
msgid "Image"
|
149 |
-
msgstr "Obrázok"
|
150 |
-
|
151 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
152 |
msgid "Sorry, nothing found."
|
153 |
msgstr "Prepáčte, nič som nenašiel."
|
154 |
|
155 |
-
#: gallery-plugin.php:
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "Title"
|
158 |
msgstr "Nadpis"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Author"
|
162 |
msgstr "Autor"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
#, fuzzy
|
166 |
msgid "Shortcode"
|
167 |
msgstr "Krátky kód galérie"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "Photos"
|
172 |
msgstr "Fotka"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Date"
|
176 |
msgstr "Dátum"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Settings are saved"
|
180 |
msgstr "Nastavenia boli uložené."
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
#, fuzzy
|
184 |
msgid "All plugin settings were restored."
|
185 |
msgstr "na strane nastavení ("
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Gallery Settings"
|
189 |
msgstr "Nastavenie galérie"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Custom code"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Go PRO"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Please enable JavaScript to use the option to renew images."
|
201 |
msgstr ""
|
202 |
"Prosím povoľte JavaScript pre používanie možnosti na obnovenie obrázkov."
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -209,22 +189,27 @@ msgid ""
|
|
209 |
"please use the shortcode %s, where * stands for gallery ID"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
213 |
msgid "Number of images in the row"
|
214 |
msgstr "Počet obrázkov v rade"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
#, fuzzy
|
218 |
msgid ""
|
219 |
"The number of images per row can be less depending on the width of the "
|
220 |
"parent block"
|
221 |
msgstr "Počet obrázkov v rade"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Image size"
|
225 |
msgstr "Veľkosť obrázku"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid ""
|
229 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
230 |
"upload a new photo."
|
@@ -232,669 +217,666 @@ msgstr ""
|
|
232 |
"Wordpress vytvorí nový thumbnail so špecifickými rozmermi, keď nahráte novú "
|
233 |
"fotku."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
#, fuzzy
|
237 |
msgid "For the album cover"
|
238 |
msgstr "Veľkosť obrázku pre obal albumu"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "width x height"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "in px"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
#, fuzzy
|
250 |
msgid "For thumbnails"
|
251 |
msgstr "Veľkosť obrázku pre obal albumu"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "Update images for gallery"
|
255 |
msgstr "Nahrať obrázky do galérie"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Close"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "For images in the lightbox"
|
264 |
msgstr "Veľkosť obrázku galérie v Lightbox"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Display a full size image in the lightbox"
|
268 |
msgstr "Zobraziť plný rozmer obrázku v Lightbox"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Crop position"
|
272 |
msgstr "Orezať"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "center"
|
276 |
msgstr "na stred"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Horizontal"
|
280 |
msgstr "Horizontálne"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Vertical"
|
284 |
msgstr "vertikálne"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
289 |
msgstr ""
|
290 |
"Ak aktualizujete na Pro verziu, všetky vaše nastavanie a galérie budú "
|
291 |
"uložené."
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "Unlock premium options by upgrading to Pro version"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
298 |
msgid "Start Your Trial"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "or"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Learn More"
|
307 |
msgstr "Viac"
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Display image title"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
#, fuzzy
|
315 |
msgid ""
|
316 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
317 |
msgstr "Ak chcete zobraiť text iba v Lightbox"
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Images with border"
|
321 |
msgstr "Obrázky s rámčekom"
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Border width in px, just numbers"
|
325 |
msgstr "Šírka rámčeka v px, iba čísla"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "Sort images"
|
329 |
msgstr "Zoradenie obrázkov"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
#, fuzzy
|
333 |
msgid "by Attachment ID"
|
334 |
msgstr "ID pripojenia"
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
#, fuzzy
|
338 |
msgid "by Image Name"
|
339 |
msgstr "Meno obrázka"
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
#, fuzzy
|
343 |
msgid "by Date"
|
344 |
msgstr "Dátum"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "by Sorting order in the Gallery"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Random"
|
352 |
msgstr "Náhodne"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
#, fuzzy
|
356 |
msgid "The images sort order"
|
357 |
msgstr "Obrázky s rámčekom"
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
361 |
msgstr "ASC (vzostupne)"
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid ""
|
365 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
366 |
msgstr "DESC (zostupne)"
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
#, fuzzy
|
370 |
msgid "Sort galleries"
|
371 |
msgstr "Galérie"
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
#, fuzzy
|
375 |
msgid "by Gallery ID"
|
376 |
msgstr "Galéria"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
#, fuzzy
|
380 |
msgid "by Title"
|
381 |
msgstr "Nadpis"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "by Last modified date"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "by Comment count"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
#, fuzzy
|
393 |
msgid "by Sorting order (the input field for sorting order)"
|
394 |
msgstr ""
|
395 |
"Riadenie zobrazenia (do input poľa pre riadenie zobrazenia Vložte / Nahrajte "
|
396 |
"dialóg galérie medíí)"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, fuzzy
|
400 |
msgid "by Author"
|
401 |
msgstr "Autor"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
msgid "The galleries sort order"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "Start slideshow"
|
409 |
msgstr "Spustiť Slideshow"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "Slideshow interval"
|
413 |
msgstr "Trvanie slideshow"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "(ms)"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Use single lightbox for multiple galleries on one page"
|
421 |
msgstr "Použiť jeden lightbox pre viac galérií na jednej strane"
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "Display the Back link"
|
425 |
msgstr "Zobraziť spätný odkaz"
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Display the Back link in the shortcode"
|
429 |
msgstr "Zobraziť spatný odkaz v krátkom kóde"
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "The Back link text"
|
433 |
msgstr "Text spatného odkazu"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "The Back link URL"
|
437 |
msgstr "URL spätného odkazu"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "Gallery page (Page with Gallery Template)"
|
441 |
msgstr "Stránka galérie (Stránka s šablónou galérie)"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "(Full URL to custom page)"
|
445 |
msgstr "(Celé URL na stránku)"
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "The Read More link text"
|
449 |
msgstr "Text odkazu pre čítaj dalej"
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "Add gallery to the search"
|
453 |
msgstr "Pridať galériu do hľadania"
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Using"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "powered by"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#, fuzzy
|
465 |
msgid "Activate"
|
466 |
msgstr "Plugin aktivovaný"
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Download"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
-
msgid "Rewrite templates after update"
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: gallery-plugin.php:1929
|
477 |
-
#, php-format
|
478 |
-
msgid ""
|
479 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
480 |
-
"theme folder and You don't want to rewrite them"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: gallery-plugin.php:1934
|
484 |
msgid "Rename gallery post type"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
msgid ""
|
489 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
490 |
"it now"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
msgid ""
|
495 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
496 |
"please check settings of your other plugins where 'gallery' post type is used"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: gallery-plugin.php:
|
500 |
#, fuzzy
|
501 |
msgid "Single gallery view"
|
502 |
msgstr "Skratka pre položku galérie"
|
503 |
|
504 |
-
#: gallery-plugin.php:
|
505 |
msgid "Grid"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: gallery-plugin.php:
|
509 |
msgid "Masonry"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: gallery-plugin.php:
|
513 |
#, fuzzy
|
514 |
msgid "Under image"
|
515 |
msgstr "Nahrať obrázky"
|
516 |
|
517 |
-
#: gallery-plugin.php:
|
518 |
msgid "By mouse hover"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: gallery-plugin.php:
|
522 |
#, fuzzy
|
523 |
msgid "Use pagination for images"
|
524 |
msgstr "Nahrávanie obrázkov..."
|
525 |
|
526 |
-
#: gallery-plugin.php:
|
527 |
msgid "per page"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: gallery-plugin.php:
|
531 |
msgid "Lightbox background"
|
532 |
msgstr "pozadie Lightboxu"
|
533 |
|
534 |
-
#: gallery-plugin.php:
|
535 |
msgid "Background transparency (from 0 to 1)"
|
536 |
msgstr "Priehľadnosť pozadia (0 – 1)"
|
537 |
|
538 |
-
#: gallery-plugin.php:
|
539 |
msgid ""
|
540 |
"Display all images in the lightbox instead of going into a single gallery"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: gallery-plugin.php:
|
544 |
#, php-format
|
545 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: gallery-plugin.php:
|
549 |
msgid "The lightbox helper"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: gallery-plugin.php:
|
553 |
msgid "Do not use"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: gallery-plugin.php:
|
557 |
msgid "Button helper"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: gallery-plugin.php:
|
561 |
msgid "Thumbnail helper"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: gallery-plugin.php:
|
565 |
msgid "Display Like buttons in the lightbox"
|
566 |
msgstr "Zobraziť Like tlačítko v Lightbox"
|
567 |
|
568 |
-
#: gallery-plugin.php:
|
569 |
msgid "FaceBook"
|
570 |
msgstr "Facebook"
|
571 |
|
572 |
-
#: gallery-plugin.php:
|
573 |
msgid "Twitter"
|
574 |
msgstr "Twitter"
|
575 |
|
576 |
-
#: gallery-plugin.php:
|
577 |
msgid "Pinterest"
|
578 |
msgstr "Pinterest"
|
579 |
|
580 |
-
#: gallery-plugin.php:
|
581 |
msgid "Google +1"
|
582 |
msgstr "Goolge+"
|
583 |
|
584 |
-
#: gallery-plugin.php:
|
585 |
#, fuzzy
|
586 |
msgid "Show counter"
|
587 |
msgstr "Trvanie slideshow"
|
588 |
|
589 |
-
#: gallery-plugin.php:
|
590 |
msgid "Align"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: gallery-plugin.php:
|
594 |
msgid "left"
|
595 |
msgstr "vľavo"
|
596 |
|
597 |
-
#: gallery-plugin.php:
|
598 |
msgid "Title for lightbox button"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: gallery-plugin.php:
|
602 |
msgid "Slug for gallery item"
|
603 |
msgstr "Skratka pre položku galérie"
|
604 |
|
605 |
-
#: gallery-plugin.php:
|
606 |
msgid "for any structure of permalinks except the default structure"
|
607 |
msgstr "pre inú štruktúru permalinok ako je základná"
|
608 |
|
609 |
-
#: gallery-plugin.php:
|
610 |
msgid "Save Changes"
|
611 |
msgstr "Uložiť zmeny"
|
612 |
|
613 |
-
#: gallery-plugin.php:
|
614 |
msgid ""
|
615 |
"If you install the demo-data, will be created galleries with images, demo-"
|
616 |
"post with available shortcodes and page with a list of all the galleries."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: gallery-plugin.php:
|
620 |
msgid "FAQ"
|
621 |
msgstr "FAQ"
|
622 |
|
623 |
-
#: gallery-plugin.php:
|
624 |
msgid "Support"
|
625 |
msgstr "Podpora"
|
626 |
|
627 |
-
#: gallery-plugin.php:
|
628 |
msgid "Updating images..."
|
629 |
msgstr "Nahrávanie obrázkov..."
|
630 |
|
631 |
-
#: gallery-plugin.php:
|
632 |
#, fuzzy
|
633 |
msgid "No image found."
|
634 |
msgstr "Obrázok nebol nájdený"
|
635 |
|
636 |
-
#: gallery-plugin.php:
|
637 |
#, fuzzy
|
638 |
msgid "All images are updated."
|
639 |
msgstr "Všetky obrázky boli nahraté"
|
640 |
|
641 |
-
#: gallery-plugin.php:
|
642 |
msgid "Error."
|
643 |
msgstr "Chyba"
|
644 |
|
645 |
-
#: gallery-plugin.php:
|
646 |
msgid ""
|
647 |
"You are about to delete these items from this gallery.\n"
|
648 |
" 'Cancel' to stop, 'OK' to delete."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: gallery-plugin.php:
|
652 |
msgid ""
|
653 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
654 |
"switching?"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: gallery-plugin.php:
|
658 |
msgid "Insert Media"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: gallery-plugin.php:
|
662 |
msgid "Insert"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: gallery-plugin.php:
|
666 |
#, fuzzy
|
667 |
msgid "Learn more"
|
668 |
msgstr "Viac"
|
669 |
|
670 |
-
#: gallery-plugin.php:
|
671 |
#, fuzzy
|
672 |
msgid "Install now"
|
673 |
msgstr "Inštalovať %s"
|
674 |
|
675 |
-
#: gallery-plugin.php:
|
676 |
msgid "Add multiple gallery categories"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: gallery-plugin.php:
|
680 |
msgid ""
|
681 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
msgid "Image size not defined"
|
686 |
msgstr "Veľkosť obrázka nebola definovaná"
|
687 |
|
688 |
-
#: gallery-plugin.php:
|
689 |
msgid ""
|
690 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
691 |
"manually reload image."
|
692 |
msgstr "Môžete nahrať iba PNG, JPEG, GIF, WPMP alebo XBM súbory."
|
693 |
|
694 |
-
#: gallery-plugin.php:
|
695 |
msgid "Image size changes not defined"
|
696 |
msgstr "Zmeny veľkosti obrázka neboli definované"
|
697 |
|
698 |
-
#: gallery-plugin.php:
|
699 |
msgid "Invalid path"
|
700 |
msgstr "Neplatná cesta"
|
701 |
|
702 |
-
#: gallery-plugin.php:
|
703 |
msgid "Add images requires JavaScript."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: gallery-plugin.php:
|
707 |
msgid "Add Media"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: gallery-plugin.php:
|
711 |
msgid "The grid view for the Gallery images requires JavaScript."
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: gallery-plugin.php:
|
715 |
msgid "Switch to the list view"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: gallery-plugin.php:
|
719 |
msgid "List View"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: gallery-plugin.php:
|
723 |
msgid "Grid View"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: gallery-plugin.php:
|
727 |
msgid "Filter"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: gallery-plugin.php:
|
731 |
msgid "Empty Trash"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
#, fuzzy
|
736 |
msgid "No images found"
|
737 |
msgstr "Obrázok nebol nájdený"
|
738 |
|
739 |
-
#: gallery-plugin.php:
|
740 |
msgid "Select bulk action"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: gallery-plugin.php:
|
744 |
msgid "Bulk Actions"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: gallery-plugin.php:
|
748 |
msgid "Apply"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: gallery-plugin.php:
|
752 |
#, fuzzy
|
753 |
msgid "Delete from Gallery"
|
754 |
msgstr "Nová galéria"
|
755 |
|
756 |
-
#: gallery-plugin.php:
|
757 |
#, fuzzy
|
758 |
msgid "Display link to the original file under each image in the lightbox"
|
759 |
msgstr "Zobraziť plný rozmer obrázku v Lightbox"
|
760 |
|
761 |
-
#: gallery-plugin.php:
|
762 |
msgid "Bulk Select"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: gallery-plugin.php:
|
766 |
msgid "Cancel Selection"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: gallery-plugin.php:
|
770 |
msgid "Delete Selected"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: gallery-plugin.php:
|
774 |
msgid "File"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid "Dimensions"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: gallery-plugin.php:
|
782 |
msgid "Alt tag"
|
783 |
msgstr "Popisný text"
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid ""
|
787 |
"The alt attribute specifies an alternate text for an image, if the image "
|
788 |
"cannot be displayed."
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: gallery-plugin.php:
|
792 |
msgid "Custom URL"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: gallery-plugin.php:
|
796 |
msgid ""
|
797 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
798 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: gallery-plugin.php:
|
802 |
msgid "Deselect"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: gallery-plugin.php:
|
806 |
msgid "File name"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: gallery-plugin.php:
|
810 |
msgid "File type"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: gallery-plugin.php:
|
814 |
#, fuzzy
|
815 |
msgid "Edit Attachment Info"
|
816 |
msgstr "ID pripojenia"
|
817 |
|
818 |
-
#: gallery-plugin.php:
|
819 |
#, fuzzy
|
820 |
msgid "Edit Attachment"
|
821 |
msgstr "ID pripojenia"
|
822 |
|
823 |
-
#: gallery-plugin.php:
|
824 |
msgid "Go Pro"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
msgid "Pro version"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: gallery-plugin.php:
|
832 |
msgid "This setting is available in Pro version"
|
833 |
msgstr "Toto nastavanie je k dispozíti v Pro verzii"
|
834 |
|
835 |
-
#: gallery-plugin.php:
|
836 |
msgid "Edit more details"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: gallery-plugin.php:
|
840 |
#, php-format
|
841 |
msgid "Select %s"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: gallery-plugin.php:
|
845 |
#, php-format
|
846 |
msgid "Edit “%s”"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: gallery-plugin.php:
|
850 |
msgid "Edit"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: gallery-plugin.php:
|
854 |
msgid "Trash"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: gallery-plugin.php:
|
858 |
msgid "Delete Permanently"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
#, php-format
|
863 |
msgid "View “%s”"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: gallery-plugin.php:
|
867 |
msgid "View"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: gallery-plugin.php:
|
871 |
#, fuzzy
|
872 |
msgid "Attach"
|
873 |
msgstr "ID pripojenia"
|
874 |
|
875 |
-
#: gallery-plugin.php:
|
876 |
msgid "Restore"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: gallery-plugin.php:
|
880 |
msgid "Warning"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: gallery-plugin.php:
|
884 |
msgid "You can add only images to the gallery"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: gallery-plugin.php:
|
888 |
#, fuzzy
|
889 |
msgid "no title"
|
890 |
msgstr "Nadpis"
|
891 |
|
892 |
-
#: gallery-plugin.php:
|
893 |
#, fuzzy
|
894 |
msgid "Sorry, no gallery found."
|
895 |
msgstr "Prepáčte, nič som nenašiel."
|
896 |
|
897 |
-
#: gallery-plugin.php:
|
898 |
#, fuzzy
|
899 |
msgid ""
|
900 |
"Display an album image with the description and the link to a single gallery "
|
@@ -903,93 +885,104 @@ msgstr ""
|
|
903 |
"Ak chcete zobraziť krátky popis obsahujúci náhľad a odkaz na vlastnú stŕnaku "
|
904 |
"galérie"
|
905 |
|
906 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
907 |
#, fuzzy
|
908 |
msgid "Install Demo Data"
|
909 |
msgstr "Inštalovať %s"
|
910 |
|
911 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
912 |
msgid "Remove Demo Data"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
916 |
msgid "Delete demo-data and restore old plugin settings."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
920 |
msgid "Yes, install demo data"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
924 |
msgid "Are you sure you want to install demo data?"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
928 |
msgid "Yes, remove demo data"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
932 |
msgid "Are you sure you want to remove demo data?"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
936 |
#, fuzzy
|
937 |
msgid "No, go back to the settings page"
|
938 |
msgstr "na strane nastavení ("
|
939 |
|
940 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
941 |
msgid "Can not get demo data."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
945 |
msgid "Demo options already installed."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
949 |
msgid "Demo data successfully installed."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
953 |
msgid "View post with shortcodes"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
957 |
msgid "View page with examples"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
961 |
msgid "Installation of demo data with some errors occurred."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
965 |
msgid "Posts data is missing."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
969 |
msgid "Demo data have already been removed."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
973 |
msgid "Demo data successfully removed."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
977 |
msgid "Removing demo data with some errors occurred."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
981 |
msgid "Close notice"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
985 |
#, fuzzy
|
986 |
msgid "Install demo data"
|
987 |
msgstr "Inštalovať %s"
|
988 |
|
989 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
990 |
msgid "for an acquaintance with the possibilities of the"
|
991 |
msgstr ""
|
992 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
#~ msgid "Select a border color"
|
994 |
#~ msgstr "Vyberte farbu rámčeka"
|
995 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:20+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Michal Králik <ja@michalkralik.sk>\n"
|
9 |
"Language: sk_SK\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
20 |
+
#: gallery-plugin.php:2010
|
21 |
msgid "Settings"
|
22 |
msgstr "Nastavenia"
|
23 |
|
24 |
+
#: gallery-plugin.php:139
|
25 |
msgid "See images »"
|
26 |
msgstr "Vidieť fotky »"
|
27 |
|
28 |
+
#: gallery-plugin.php:142
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Galleries"
|
34 |
msgstr "Galérie"
|
35 |
|
36 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
37 |
msgid "Gallery"
|
38 |
msgstr "Galéria"
|
39 |
|
40 |
+
#: gallery-plugin.php:322
|
41 |
msgid "Add New Gallery"
|
42 |
msgstr "Pridať novú galériu"
|
43 |
|
44 |
+
#: gallery-plugin.php:323
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "Upraviť galériu"
|
47 |
|
48 |
+
#: gallery-plugin.php:324
|
49 |
msgid "New Gallery"
|
50 |
msgstr "Nová galéria"
|
51 |
|
52 |
+
#: gallery-plugin.php:325
|
53 |
msgid "View Gallery"
|
54 |
msgstr "Zobraziť galériu"
|
55 |
|
56 |
+
#: gallery-plugin.php:326
|
57 |
#, fuzzy
|
58 |
msgid "Search Galleries"
|
59 |
msgstr "Galérie"
|
60 |
|
61 |
+
#: gallery-plugin.php:327
|
62 |
msgid "No Gallery found"
|
63 |
msgstr "Galéria nebola nájdená"
|
64 |
|
65 |
+
#: gallery-plugin.php:388
|
66 |
msgid "Gallery Shortcode"
|
67 |
msgstr "Krátky kód galérie"
|
68 |
|
69 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
70 |
#, fuzzy
|
71 |
msgid "Gallery Categories"
|
72 |
msgstr "Veľkosť obrázka galérie"
|
73 |
|
74 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
75 |
#, fuzzy, php-format
|
76 |
msgid ""
|
77 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
79 |
"Ak si prajete pridať galériu do vášho článku alebo na stránku, len "
|
80 |
"skopírujte tento krátky kód na vašu stránku alebo článok:"
|
81 |
|
82 |
+
#: gallery-plugin.php:405
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
87 |
"please use the shortcode below"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:411
|
91 |
msgid ""
|
92 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: gallery-plugin.php:414
|
96 |
#, fuzzy
|
97 |
msgid ""
|
98 |
"Use this shortcode to display an album image with the description and the "
|
101 |
"Ak chcete zobraziť krátky popis obsahujúci náhľad a odkaz na vlastnú stŕnaku "
|
102 |
"galérie"
|
103 |
|
104 |
+
#: gallery-plugin.php:416
|
105 |
msgid "Short display"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:433
|
109 |
msgid "Most Used"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
113 |
msgid "Default"
|
114 |
msgstr "Štandardné"
|
115 |
|
116 |
+
#: gallery-plugin.php:443
|
117 |
#, fuzzy
|
118 |
msgid "Add New Gallery Category"
|
119 |
msgstr "Pridať novú galériu"
|
120 |
|
121 |
+
#: gallery-plugin.php:448
|
122 |
#, fuzzy
|
123 |
msgid "Install plugin"
|
124 |
msgstr "Plugin nainštalovaný"
|
125 |
|
126 |
+
#: gallery-plugin.php:610
|
127 |
#, fuzzy
|
128 |
msgid "Gallery Category"
|
129 |
msgstr "Veľkosť obrázka galérie"
|
130 |
|
131 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
msgid "Sorry, nothing found."
|
133 |
msgstr "Prepáčte, nič som nenašiel."
|
134 |
|
135 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
136 |
+
#: gallery-plugin.php:3128
|
137 |
msgid "Title"
|
138 |
msgstr "Nadpis"
|
139 |
|
140 |
+
#: gallery-plugin.php:1356
|
141 |
msgid "Author"
|
142 |
msgstr "Autor"
|
143 |
|
144 |
+
#: gallery-plugin.php:1357
|
145 |
#, fuzzy
|
146 |
msgid "Shortcode"
|
147 |
msgstr "Krátky kód galérie"
|
148 |
|
149 |
+
#: gallery-plugin.php:1358
|
150 |
#, fuzzy
|
151 |
msgid "Photos"
|
152 |
msgstr "Fotka"
|
153 |
|
154 |
+
#: gallery-plugin.php:1359
|
155 |
msgid "Date"
|
156 |
msgstr "Dátum"
|
157 |
|
158 |
+
#: gallery-plugin.php:1547
|
159 |
msgid "Settings are saved"
|
160 |
msgstr "Nastavenia boli uložené."
|
161 |
|
162 |
+
#: gallery-plugin.php:1564
|
163 |
#, fuzzy
|
164 |
msgid "All plugin settings were restored."
|
165 |
msgstr "na strane nastavení ("
|
166 |
|
167 |
+
#: gallery-plugin.php:1576
|
168 |
msgid "Gallery Settings"
|
169 |
msgstr "Nastavenie galérie"
|
170 |
|
171 |
+
#: gallery-plugin.php:1579
|
172 |
msgid "Custom code"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: gallery-plugin.php:1580
|
176 |
msgid "Go PRO"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: gallery-plugin.php:1590
|
180 |
msgid "Please enable JavaScript to use the option to renew images."
|
181 |
msgstr ""
|
182 |
"Prosím povoľte JavaScript pre používanie možnosti na obnovenie obrázkov."
|
183 |
|
184 |
+
#: gallery-plugin.php:1602
|
185 |
#, php-format
|
186 |
msgid ""
|
187 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
189 |
"please use the shortcode %s, where * stands for gallery ID"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: gallery-plugin.php:1612
|
193 |
+
#, fuzzy
|
194 |
+
msgid "Galleries page"
|
195 |
+
msgstr "Galérie"
|
196 |
+
|
197 |
+
#: gallery-plugin.php:1622
|
198 |
msgid "Number of images in the row"
|
199 |
msgstr "Počet obrázkov v rade"
|
200 |
|
201 |
+
#: gallery-plugin.php:1624
|
202 |
#, fuzzy
|
203 |
msgid ""
|
204 |
"The number of images per row can be less depending on the width of the "
|
205 |
"parent block"
|
206 |
msgstr "Počet obrázkov v rade"
|
207 |
|
208 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
209 |
msgid "Image size"
|
210 |
msgstr "Veľkosť obrázku"
|
211 |
|
212 |
+
#: gallery-plugin.php:1631
|
213 |
msgid ""
|
214 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
215 |
"upload a new photo."
|
217 |
"Wordpress vytvorí nový thumbnail so špecifickými rozmermi, keď nahráte novú "
|
218 |
"fotku."
|
219 |
|
220 |
+
#: gallery-plugin.php:1633
|
221 |
#, fuzzy
|
222 |
msgid "For the album cover"
|
223 |
msgstr "Veľkosť obrázku pre obal albumu"
|
224 |
|
225 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
226 |
msgid "width x height"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
230 |
msgid "in px"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: gallery-plugin.php:1637
|
234 |
#, fuzzy
|
235 |
msgid "For thumbnails"
|
236 |
msgstr "Veľkosť obrázku pre obal albumu"
|
237 |
|
238 |
+
#: gallery-plugin.php:1641
|
239 |
msgid "Update images for gallery"
|
240 |
msgstr "Nahrať obrázky do galérie"
|
241 |
|
242 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
243 |
msgid "Close"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1657
|
247 |
#, fuzzy
|
248 |
msgid "For images in the lightbox"
|
249 |
msgstr "Veľkosť obrázku galérie v Lightbox"
|
250 |
|
251 |
+
#: gallery-plugin.php:1661
|
252 |
msgid "Display a full size image in the lightbox"
|
253 |
msgstr "Zobraziť plný rozmer obrázku v Lightbox"
|
254 |
|
255 |
+
#: gallery-plugin.php:1666
|
256 |
msgid "Crop position"
|
257 |
msgstr "Orezať"
|
258 |
|
259 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
260 |
msgid "center"
|
261 |
msgstr "na stred"
|
262 |
|
263 |
+
#: gallery-plugin.php:1672
|
264 |
msgid "Horizontal"
|
265 |
msgstr "Horizontálne"
|
266 |
|
267 |
+
#: gallery-plugin.php:1678
|
268 |
msgid "Vertical"
|
269 |
msgstr "vertikálne"
|
270 |
|
271 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
272 |
msgid ""
|
273 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
274 |
msgstr ""
|
275 |
"Ak aktualizujete na Pro verziu, všetky vaše nastavanie a galérie budú "
|
276 |
"uložené."
|
277 |
|
278 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
279 |
msgid "Unlock premium options by upgrading to Pro version"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
283 |
msgid "Start Your Trial"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
287 |
msgid "or"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
291 |
msgid "Learn More"
|
292 |
msgstr "Viac"
|
293 |
|
294 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
295 |
msgid "Display image title"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1708
|
299 |
#, fuzzy
|
300 |
msgid ""
|
301 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
302 |
msgstr "Ak chcete zobraiť text iba v Lightbox"
|
303 |
|
304 |
+
#: gallery-plugin.php:1712
|
305 |
msgid "Images with border"
|
306 |
msgstr "Obrázky s rámčekom"
|
307 |
|
308 |
+
#: gallery-plugin.php:1716
|
309 |
msgid "Border width in px, just numbers"
|
310 |
msgstr "Šírka rámčeka v px, iba čísla"
|
311 |
|
312 |
+
#: gallery-plugin.php:1722
|
313 |
msgid "Sort images"
|
314 |
msgstr "Zoradenie obrázkov"
|
315 |
|
316 |
+
#: gallery-plugin.php:1725
|
317 |
#, fuzzy
|
318 |
msgid "by Attachment ID"
|
319 |
msgstr "ID pripojenia"
|
320 |
|
321 |
+
#: gallery-plugin.php:1726
|
322 |
#, fuzzy
|
323 |
msgid "by Image Name"
|
324 |
msgstr "Meno obrázka"
|
325 |
|
326 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
327 |
#, fuzzy
|
328 |
msgid "by Date"
|
329 |
msgstr "Dátum"
|
330 |
|
331 |
+
#: gallery-plugin.php:1728
|
332 |
msgid "by Sorting order in the Gallery"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
336 |
msgid "Random"
|
337 |
msgstr "Náhodne"
|
338 |
|
339 |
+
#: gallery-plugin.php:1734
|
340 |
#, fuzzy
|
341 |
msgid "The images sort order"
|
342 |
msgstr "Obrázky s rámčekom"
|
343 |
|
344 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
345 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
346 |
msgstr "ASC (vzostupne)"
|
347 |
|
348 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
349 |
msgid ""
|
350 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
351 |
msgstr "DESC (zostupne)"
|
352 |
|
353 |
+
#: gallery-plugin.php:1743
|
354 |
#, fuzzy
|
355 |
msgid "Sort galleries"
|
356 |
msgstr "Galérie"
|
357 |
|
358 |
+
#: gallery-plugin.php:1746
|
359 |
#, fuzzy
|
360 |
msgid "by Gallery ID"
|
361 |
msgstr "Galéria"
|
362 |
|
363 |
+
#: gallery-plugin.php:1747
|
364 |
#, fuzzy
|
365 |
msgid "by Title"
|
366 |
msgstr "Nadpis"
|
367 |
|
368 |
+
#: gallery-plugin.php:1749
|
369 |
msgid "by Last modified date"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: gallery-plugin.php:1750
|
373 |
msgid "by Comment count"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: gallery-plugin.php:1751
|
377 |
#, fuzzy
|
378 |
msgid "by Sorting order (the input field for sorting order)"
|
379 |
msgstr ""
|
380 |
"Riadenie zobrazenia (do input poľa pre riadenie zobrazenia Vložte / Nahrajte "
|
381 |
"dialóg galérie medíí)"
|
382 |
|
383 |
+
#: gallery-plugin.php:1752
|
384 |
#, fuzzy
|
385 |
msgid "by Author"
|
386 |
msgstr "Autor"
|
387 |
|
388 |
+
#: gallery-plugin.php:1758
|
389 |
msgid "The galleries sort order"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: gallery-plugin.php:1767
|
393 |
msgid "Start slideshow"
|
394 |
msgstr "Spustiť Slideshow"
|
395 |
|
396 |
+
#: gallery-plugin.php:1770
|
397 |
msgid "Slideshow interval"
|
398 |
msgstr "Trvanie slideshow"
|
399 |
|
400 |
+
#: gallery-plugin.php:1770
|
401 |
msgid "(ms)"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: gallery-plugin.php:1774
|
405 |
msgid "Use single lightbox for multiple galleries on one page"
|
406 |
msgstr "Použiť jeden lightbox pre viac galérií na jednej strane"
|
407 |
|
408 |
+
#: gallery-plugin.php:1780
|
409 |
msgid "Display the Back link"
|
410 |
msgstr "Zobraziť spätný odkaz"
|
411 |
|
412 |
+
#: gallery-plugin.php:1786
|
413 |
msgid "Display the Back link in the shortcode"
|
414 |
msgstr "Zobraziť spatný odkaz v krátkom kóde"
|
415 |
|
416 |
+
#: gallery-plugin.php:1792
|
417 |
msgid "The Back link text"
|
418 |
msgstr "Text spatného odkazu"
|
419 |
|
420 |
+
#: gallery-plugin.php:1798
|
421 |
msgid "The Back link URL"
|
422 |
msgstr "URL spätného odkazu"
|
423 |
|
424 |
+
#: gallery-plugin.php:1801
|
425 |
msgid "Gallery page (Page with Gallery Template)"
|
426 |
msgstr "Stránka galérie (Stránka s šablónou galérie)"
|
427 |
|
428 |
+
#: gallery-plugin.php:1803
|
429 |
msgid "(Full URL to custom page)"
|
430 |
msgstr "(Celé URL na stránku)"
|
431 |
|
432 |
+
#: gallery-plugin.php:1808
|
433 |
msgid "The Read More link text"
|
434 |
msgstr "Text odkazu pre čítaj dalej"
|
435 |
|
436 |
+
#: gallery-plugin.php:1814
|
437 |
msgid "Add gallery to the search"
|
438 |
msgstr "Pridať galériu do hľadania"
|
439 |
|
440 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
441 |
msgid "Using"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
445 |
msgid "powered by"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
449 |
#, fuzzy
|
450 |
msgid "Activate"
|
451 |
msgstr "Plugin aktivovaný"
|
452 |
|
453 |
+
#: gallery-plugin.php:1826
|
454 |
msgid "Download"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
458 |
msgid "Rename gallery post type"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: gallery-plugin.php:1837
|
462 |
msgid ""
|
463 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
464 |
"it now"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: gallery-plugin.php:1838
|
468 |
msgid ""
|
469 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
470 |
"please check settings of your other plugins where 'gallery' post type is used"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:1851
|
474 |
#, fuzzy
|
475 |
msgid "Single gallery view"
|
476 |
msgstr "Skratka pre položku galérie"
|
477 |
|
478 |
+
#: gallery-plugin.php:1854
|
479 |
msgid "Grid"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:1855
|
483 |
msgid "Masonry"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:1863
|
487 |
#, fuzzy
|
488 |
msgid "Under image"
|
489 |
msgstr "Nahrať obrázky"
|
490 |
|
491 |
+
#: gallery-plugin.php:1864
|
492 |
msgid "By mouse hover"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:1869
|
496 |
#, fuzzy
|
497 |
msgid "Use pagination for images"
|
498 |
msgstr "Nahrávanie obrázkov..."
|
499 |
|
500 |
+
#: gallery-plugin.php:1872
|
501 |
msgid "per page"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: gallery-plugin.php:1876
|
505 |
msgid "Lightbox background"
|
506 |
msgstr "pozadie Lightboxu"
|
507 |
|
508 |
+
#: gallery-plugin.php:1879
|
509 |
msgid "Background transparency (from 0 to 1)"
|
510 |
msgstr "Priehľadnosť pozadia (0 – 1)"
|
511 |
|
512 |
+
#: gallery-plugin.php:1885
|
513 |
msgid ""
|
514 |
"Display all images in the lightbox instead of going into a single gallery"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: gallery-plugin.php:1888
|
518 |
#, php-format
|
519 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1892
|
523 |
msgid "The lightbox helper"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1894
|
527 |
msgid "Do not use"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: gallery-plugin.php:1895
|
531 |
msgid "Button helper"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:1896
|
535 |
msgid "Thumbnail helper"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: gallery-plugin.php:1900
|
539 |
msgid "Display Like buttons in the lightbox"
|
540 |
msgstr "Zobraziť Like tlačítko v Lightbox"
|
541 |
|
542 |
+
#: gallery-plugin.php:1904
|
543 |
msgid "FaceBook"
|
544 |
msgstr "Facebook"
|
545 |
|
546 |
+
#: gallery-plugin.php:1905
|
547 |
msgid "Twitter"
|
548 |
msgstr "Twitter"
|
549 |
|
550 |
+
#: gallery-plugin.php:1906
|
551 |
msgid "Pinterest"
|
552 |
msgstr "Pinterest"
|
553 |
|
554 |
+
#: gallery-plugin.php:1907
|
555 |
msgid "Google +1"
|
556 |
msgstr "Goolge+"
|
557 |
|
558 |
+
#: gallery-plugin.php:1910
|
559 |
#, fuzzy
|
560 |
msgid "Show counter"
|
561 |
msgstr "Trvanie slideshow"
|
562 |
|
563 |
+
#: gallery-plugin.php:1912
|
564 |
msgid "Align"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: gallery-plugin.php:1914
|
568 |
msgid "left"
|
569 |
msgstr "vľavo"
|
570 |
|
571 |
+
#: gallery-plugin.php:1921
|
572 |
msgid "Title for lightbox button"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: gallery-plugin.php:1927
|
576 |
msgid "Slug for gallery item"
|
577 |
msgstr "Skratka pre položku galérie"
|
578 |
|
579 |
+
#: gallery-plugin.php:1929
|
580 |
msgid "for any structure of permalinks except the default structure"
|
581 |
msgstr "pre inú štruktúru permalinok ako je základná"
|
582 |
|
583 |
+
#: gallery-plugin.php:1955
|
584 |
msgid "Save Changes"
|
585 |
msgstr "Uložiť zmeny"
|
586 |
|
587 |
+
#: gallery-plugin.php:1960
|
588 |
msgid ""
|
589 |
"If you install the demo-data, will be created galleries with images, demo-"
|
590 |
"post with available shortcodes and page with a list of all the galleries."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: gallery-plugin.php:1994
|
594 |
msgid "FAQ"
|
595 |
msgstr "FAQ"
|
596 |
|
597 |
+
#: gallery-plugin.php:1995
|
598 |
msgid "Support"
|
599 |
msgstr "Podpora"
|
600 |
|
601 |
+
#: gallery-plugin.php:2032
|
602 |
msgid "Updating images..."
|
603 |
msgstr "Nahrávanie obrázkov..."
|
604 |
|
605 |
+
#: gallery-plugin.php:2033
|
606 |
#, fuzzy
|
607 |
msgid "No image found."
|
608 |
msgstr "Obrázok nebol nájdený"
|
609 |
|
610 |
+
#: gallery-plugin.php:2034
|
611 |
#, fuzzy
|
612 |
msgid "All images are updated."
|
613 |
msgstr "Všetky obrázky boli nahraté"
|
614 |
|
615 |
+
#: gallery-plugin.php:2035
|
616 |
msgid "Error."
|
617 |
msgstr "Chyba"
|
618 |
|
619 |
+
#: gallery-plugin.php:2049
|
620 |
msgid ""
|
621 |
"You are about to delete these items from this gallery.\n"
|
622 |
" 'Cancel' to stop, 'OK' to delete."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: gallery-plugin.php:2050
|
626 |
msgid ""
|
627 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
628 |
"switching?"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:2051
|
632 |
msgid "Insert Media"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: gallery-plugin.php:2052
|
636 |
msgid "Insert"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: gallery-plugin.php:2064
|
640 |
#, fuzzy
|
641 |
msgid "Learn more"
|
642 |
msgstr "Viac"
|
643 |
|
644 |
+
#: gallery-plugin.php:2076
|
645 |
#, fuzzy
|
646 |
msgid "Install now"
|
647 |
msgstr "Inštalovať %s"
|
648 |
|
649 |
+
#: gallery-plugin.php:2085
|
650 |
msgid "Add multiple gallery categories"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: gallery-plugin.php:2085
|
654 |
msgid ""
|
655 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: gallery-plugin.php:2405
|
659 |
+
msgid "Download high resolution image"
|
660 |
+
msgstr "Stiahnuť obrázok vo vysokom rozlíšení"
|
661 |
+
|
662 |
+
#: gallery-plugin.php:2417
|
663 |
+
msgid "Image"
|
664 |
+
msgstr "Obrázok"
|
665 |
+
|
666 |
+
#: gallery-plugin.php:2558
|
667 |
msgid "Image size not defined"
|
668 |
msgstr "Veľkosť obrázka nebola definovaná"
|
669 |
|
670 |
+
#: gallery-plugin.php:2573
|
671 |
msgid ""
|
672 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
673 |
"manually reload image."
|
674 |
msgstr "Môžete nahrať iba PNG, JPEG, GIF, WPMP alebo XBM súbory."
|
675 |
|
676 |
+
#: gallery-plugin.php:2584
|
677 |
msgid "Image size changes not defined"
|
678 |
msgstr "Zmeny veľkosti obrázka neboli definované"
|
679 |
|
680 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
681 |
msgid "Invalid path"
|
682 |
msgstr "Neplatná cesta"
|
683 |
|
684 |
+
#: gallery-plugin.php:2694
|
685 |
msgid "Add images requires JavaScript."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: gallery-plugin.php:2697
|
689 |
msgid "Add Media"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: gallery-plugin.php:2707
|
693 |
msgid "The grid view for the Gallery images requires JavaScript."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2707
|
697 |
msgid "Switch to the list view"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2734
|
701 |
msgid "List View"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: gallery-plugin.php:2735
|
705 |
msgid "Grid View"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: gallery-plugin.php:2790
|
709 |
msgid "Filter"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: gallery-plugin.php:2794
|
713 |
msgid "Empty Trash"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: gallery-plugin.php:2815
|
717 |
#, fuzzy
|
718 |
msgid "No images found"
|
719 |
msgstr "Obrázok nebol nájdený"
|
720 |
|
721 |
+
#: gallery-plugin.php:2867
|
722 |
msgid "Select bulk action"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: gallery-plugin.php:2869
|
726 |
msgid "Bulk Actions"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: gallery-plugin.php:2879
|
730 |
msgid "Apply"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
734 |
#, fuzzy
|
735 |
msgid "Delete from Gallery"
|
736 |
msgstr "Nová galéria"
|
737 |
|
738 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
739 |
#, fuzzy
|
740 |
msgid "Display link to the original file under each image in the lightbox"
|
741 |
msgstr "Zobraziť plný rozmer obrázku v Lightbox"
|
742 |
|
743 |
+
#: gallery-plugin.php:2908
|
744 |
msgid "Bulk Select"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: gallery-plugin.php:2910
|
748 |
msgid "Cancel Selection"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: gallery-plugin.php:2911
|
752 |
msgid "Delete Selected"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: gallery-plugin.php:2924
|
756 |
msgid "File"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
760 |
msgid "Dimensions"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
764 |
msgid "Alt tag"
|
765 |
msgstr "Popisný text"
|
766 |
|
767 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
768 |
msgid ""
|
769 |
"The alt attribute specifies an alternate text for an image, if the image "
|
770 |
"cannot be displayed."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
774 |
msgid "Custom URL"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
778 |
msgid ""
|
779 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
780 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: gallery-plugin.php:3006
|
784 |
msgid "Deselect"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:3012
|
788 |
msgid "File name"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: gallery-plugin.php:3013
|
792 |
msgid "File type"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
796 |
#, fuzzy
|
797 |
msgid "Edit Attachment Info"
|
798 |
msgstr "ID pripojenia"
|
799 |
|
800 |
+
#: gallery-plugin.php:3017
|
801 |
#, fuzzy
|
802 |
msgid "Edit Attachment"
|
803 |
msgstr "ID pripojenia"
|
804 |
|
805 |
+
#: gallery-plugin.php:3027
|
806 |
msgid "Go Pro"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: gallery-plugin.php:3027
|
810 |
msgid "Pro version"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: gallery-plugin.php:3030
|
814 |
msgid "This setting is available in Pro version"
|
815 |
msgstr "Toto nastavanie je k dispozíti v Pro verzii"
|
816 |
|
817 |
+
#: gallery-plugin.php:3063
|
818 |
msgid "Edit more details"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: gallery-plugin.php:3098
|
822 |
#, php-format
|
823 |
msgid "Select %s"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: gallery-plugin.php:3111
|
827 |
#, php-format
|
828 |
msgid "Edit “%s”"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
832 |
msgid "Edit"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
836 |
msgid "Trash"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
840 |
msgid "Delete Permanently"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
844 |
#, php-format
|
845 |
msgid "View “%s”"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
849 |
msgid "View"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: gallery-plugin.php:3166
|
853 |
#, fuzzy
|
854 |
msgid "Attach"
|
855 |
msgstr "ID pripojenia"
|
856 |
|
857 |
+
#: gallery-plugin.php:3172
|
858 |
msgid "Restore"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: gallery-plugin.php:3303
|
862 |
msgid "Warning"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: gallery-plugin.php:3303
|
866 |
msgid "You can add only images to the gallery"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: gallery-plugin.php:3345
|
870 |
#, fuzzy
|
871 |
msgid "no title"
|
872 |
msgstr "Nadpis"
|
873 |
|
874 |
+
#: gallery-plugin.php:3353
|
875 |
#, fuzzy
|
876 |
msgid "Sorry, no gallery found."
|
877 |
msgstr "Prepáčte, nič som nenašiel."
|
878 |
|
879 |
+
#: gallery-plugin.php:3359
|
880 |
#, fuzzy
|
881 |
msgid ""
|
882 |
"Display an album image with the description and the link to a single gallery "
|
885 |
"Ak chcete zobraziť krátky popis obsahujúci náhľad a odkaz na vlastnú stŕnaku "
|
886 |
"galérie"
|
887 |
|
888 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
889 |
#, fuzzy
|
890 |
msgid "Install Demo Data"
|
891 |
msgstr "Inštalovať %s"
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
894 |
msgid "Remove Demo Data"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
898 |
msgid "Delete demo-data and restore old plugin settings."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
902 |
msgid "Yes, install demo data"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
906 |
msgid "Are you sure you want to install demo data?"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
910 |
msgid "Yes, remove demo data"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
914 |
msgid "Are you sure you want to remove demo data?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
918 |
#, fuzzy
|
919 |
msgid "No, go back to the settings page"
|
920 |
msgstr "na strane nastavení ("
|
921 |
|
922 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
923 |
msgid "Can not get demo data."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
927 |
msgid "Demo options already installed."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
931 |
msgid "Demo data successfully installed."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
935 |
msgid "View post with shortcodes"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
939 |
msgid "View page with examples"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
943 |
msgid "Installation of demo data with some errors occurred."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
947 |
msgid "Posts data is missing."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
951 |
msgid "Demo data have already been removed."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
955 |
msgid "Demo data successfully removed."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
959 |
msgid "Removing demo data with some errors occurred."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
963 |
msgid "Close notice"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
967 |
#, fuzzy
|
968 |
msgid "Install demo data"
|
969 |
msgstr "Inštalovať %s"
|
970 |
|
971 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
972 |
msgid "for an acquaintance with the possibilities of the"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#, fuzzy
|
976 |
+
#~ msgid ""
|
977 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
978 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
979 |
+
#~ "theme for the correct work of the Gallery plugin"
|
980 |
+
#~ msgstr ""
|
981 |
+
#~ "Nasledujúci súbor \"gallery-template.php\" a \"gallery-single-template.php"
|
982 |
+
#~ "\" nebol nájdený v priečinku vo vašej téme. Prosím skopírujte ich z `/wp-"
|
983 |
+
#~ "content/plugins/gallery-plugin/template/` do priečinku vašej témy pre "
|
984 |
+
#~ "správnu prácu pluginu Galérie."
|
985 |
+
|
986 |
#~ msgid "Select a border color"
|
987 |
#~ msgstr "Vyberte farbu rámčeka"
|
988 |
|
languages/gallery-plugin-sl_SI.mo
CHANGED
Binary file
|
languages/gallery-plugin-sl_SI.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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Tilen <tilen@divided.si>\n"
|
9 |
"Language: sl_SI\n"
|
@@ -17,74 +17,62 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "Settings"
|
23 |
msgstr "Nastavitve"
|
24 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "See images »"
|
27 |
msgstr "Poglej slike »"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
-
#, fuzzy, php-format
|
35 |
-
msgid ""
|
36 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
37 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
38 |
-
"theme for the correct work of the Gallery plugin"
|
39 |
-
msgstr ""
|
40 |
-
"Datoteke \"gallery-template.php\" in \"gallery-single-template.php\" niso "
|
41 |
-
"bile najdene v mapi tvoje teme. Prosimo skopiraj jih iz mape `/wp-content/"
|
42 |
-
"plugins/gallery-plugin/template/` v mapo tvoje teme za pravilno delovanje "
|
43 |
-
"Gallery vtičnika"
|
44 |
-
|
45 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galerije"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galerija"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Dodaj novo Galerijo"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Uredi Galerijo"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Nova Galerija"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Pregled Galerije"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
#, fuzzy
|
71 |
msgid "Search Galleries"
|
72 |
msgstr "Galerije"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Galerija ni bila najdena"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Gallery Shortcode"
|
80 |
msgstr "Kratka koda do galerije"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Categories"
|
85 |
msgstr "Velikost slike v galeriji"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
#, fuzzy, php-format
|
89 |
msgid ""
|
90 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -92,7 +80,7 @@ msgstr ""
|
|
92 |
"Če želiš dodati posamezno galerijo v stran ali prispevek preprosto kopiraj "
|
93 |
"to kodo:"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -100,12 +88,12 @@ msgid ""
|
|
100 |
"please use the shortcode below"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid ""
|
105 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
#, fuzzy
|
110 |
msgid ""
|
111 |
"Use this shortcode to display an album image with the description and the "
|
@@ -114,94 +102,86 @@ msgstr ""
|
|
114 |
"Če želiš prikazati kratek opis s predogledno sliko in povezavo do posamezne "
|
115 |
"galerije kopiraj spodnjo povezavo."
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Short display"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Most Used"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Default"
|
127 |
msgstr "Privzeto"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "Add New Gallery Category"
|
132 |
msgstr "Dodaj novo Galerijo"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
#, fuzzy
|
136 |
msgid "Install plugin"
|
137 |
msgstr "Instalirani moduli"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
#, fuzzy
|
141 |
msgid "Gallery Category"
|
142 |
msgstr "Velikost slike v galeriji"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
-
msgid "Download high resolution image"
|
146 |
-
msgstr "Prenesi sliko visoke resolucije"
|
147 |
-
|
148 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
149 |
-
msgid "Image"
|
150 |
-
msgstr "Slika"
|
151 |
-
|
152 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
153 |
msgid "Sorry, nothing found."
|
154 |
msgstr "Žal ni zadetkov"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Title"
|
159 |
msgstr "Naslov"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Author"
|
163 |
msgstr "Avtor"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
#, fuzzy
|
167 |
msgid "Shortcode"
|
168 |
msgstr "Kratka koda do galerije"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
#, fuzzy
|
172 |
msgid "Photos"
|
173 |
msgstr "Slika"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Date"
|
177 |
msgstr "Datum"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Settings are saved"
|
181 |
msgstr "Nastavitve so shranjene"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
#, fuzzy
|
185 |
msgid "All plugin settings were restored."
|
186 |
msgstr "na strani za nastavitve vtičnikov ("
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Gallery Settings"
|
190 |
msgstr "Nastavitve galerije"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Custom code"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Go PRO"
|
198 |
msgstr "Pojdi na PRO"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Please enable JavaScript to use the option to renew images."
|
202 |
msgstr "Prosimo omogoči Javascript za uporabo funkcije osvežitve slik."
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -209,22 +189,27 @@ msgid ""
|
|
209 |
"please use the shortcode %s, where * stands for gallery ID"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
213 |
msgid "Number of images in the row"
|
214 |
msgstr "Število slik v vrsti"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
#, fuzzy
|
218 |
msgid ""
|
219 |
"The number of images per row can be less depending on the width of the "
|
220 |
"parent block"
|
221 |
msgstr "Število slik v vrsti"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Image size"
|
225 |
msgstr "Velikost slike"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid ""
|
229 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
230 |
"upload a new photo."
|
@@ -232,457 +217,454 @@ msgstr ""
|
|
232 |
"WordPress bo ustvaril novo predolgedno sliko z danimi dimenzijami pri "
|
233 |
"naslednjem nalaganju nove slike."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
#, fuzzy
|
237 |
msgid "For the album cover"
|
238 |
msgstr "Velikost slike albuma"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "width x height"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "in px"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
#, fuzzy
|
250 |
msgid "For thumbnails"
|
251 |
msgstr "Velikost slike albuma"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "Update images for gallery"
|
255 |
msgstr "Osveži slike galerije"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Close"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "For images in the lightbox"
|
264 |
msgstr "Velikost slike v lightbox-u"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Display a full size image in the lightbox"
|
268 |
msgstr "Prikaži sliko polne velikosti v lightbox-u"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Crop position"
|
272 |
msgstr "Pozicija za obrez"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "center"
|
276 |
msgstr "center"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Horizontal"
|
280 |
msgstr "Horizontalno"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Vertical"
|
284 |
msgstr "Vertikalno"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
289 |
msgstr ""
|
290 |
"V primeru posodobitve na PRO verzijo se bodo vse nastavitve in galerije "
|
291 |
"ohranile."
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
#, fuzzy
|
295 |
msgid "Unlock premium options by upgrading to Pro version"
|
296 |
msgstr "Odkleni premium opcije z nadgradnjo na PRO verzijo."
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Start Your Trial"
|
300 |
msgstr "Začni svoje preizkusno obdobje"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "or"
|
304 |
msgstr "ali"
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid "Learn More"
|
308 |
msgstr "Preberi več"
|
309 |
|
310 |
-
#: gallery-plugin.php:
|
311 |
msgid "Display image title"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: gallery-plugin.php:
|
315 |
#, fuzzy
|
316 |
msgid ""
|
317 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
318 |
msgstr "Odkljukaj kvadratek, če želiš da se tekst prikaže le v lightbox-u"
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Images with border"
|
322 |
msgstr "Slike z okvirjem"
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "Border width in px, just numbers"
|
326 |
msgstr "Širina okvirja v pikslih (le številčno)"
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "Sort images"
|
330 |
msgstr "Preuredi slike"
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
#, fuzzy
|
334 |
msgid "by Attachment ID"
|
335 |
msgstr "ID priloge"
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
#, fuzzy
|
339 |
msgid "by Image Name"
|
340 |
msgstr "Ime slike"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
#, fuzzy
|
344 |
msgid "by Date"
|
345 |
msgstr "Datum"
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
msgid "by Sorting order in the Gallery"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Random"
|
353 |
msgstr "Naključno"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
#, fuzzy
|
357 |
msgid "The images sort order"
|
358 |
msgstr "Slike z okvirjem"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
362 |
msgstr "ASC (naraščujoče - 1, 2, 3; a, b, c)"
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid ""
|
366 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
367 |
msgstr "DESC (padajoče - 3, 2, 1; c, b, a)"
|
368 |
|
369 |
-
#: gallery-plugin.php:
|
370 |
#, fuzzy
|
371 |
msgid "Sort galleries"
|
372 |
msgstr "Galerije"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
#, fuzzy
|
376 |
msgid "by Gallery ID"
|
377 |
msgstr "Galerija"
|
378 |
|
379 |
-
#: gallery-plugin.php:
|
380 |
#, fuzzy
|
381 |
msgid "by Title"
|
382 |
msgstr "Naslov"
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "by Last modified date"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "by Comment count"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
#, fuzzy
|
394 |
msgid "by Sorting order (the input field for sorting order)"
|
395 |
msgstr "Razporejanje glede na razporeditev v predstavnostni knjižici"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
#, fuzzy
|
399 |
msgid "by Author"
|
400 |
msgstr "Avtor"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "The galleries sort order"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
msgid "Start slideshow"
|
408 |
msgstr "Začni projekcijo"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "Slideshow interval"
|
412 |
msgstr "Interval projekcije slik"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "(ms)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Use single lightbox for multiple galleries on one page"
|
420 |
msgstr "Uporabi lightbox enkratno za vse galerije na strani"
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Display the Back link"
|
424 |
msgstr "Prikaži povratni link"
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Display the Back link in the shortcode"
|
428 |
msgstr "Prikaži povratni link v kratki kodi"
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "The Back link text"
|
432 |
msgstr "Besedilo povezave na povratek na galerijo"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Back link URL"
|
436 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "Gallery page (Page with Gallery Template)"
|
440 |
msgstr "Galerija (Stran z uporabljeno predlogo \"Gallery Template\")"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "(Full URL to custom page)"
|
444 |
msgstr "(Polni URL za uporabo na strani)"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "The Read More link text"
|
448 |
msgstr "Tekst v \"Read More\" gumbu"
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Add gallery to the search"
|
452 |
msgstr "Dodaj galerijo k iskalniku"
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Using"
|
456 |
msgstr "Se uporablja"
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "powered by"
|
460 |
msgstr "gnano z"
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
msgid "Activate"
|
464 |
msgstr "Aktivirani moduli"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "Download"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
-
msgid "Rewrite templates after update"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: gallery-plugin.php:1929
|
475 |
-
#, php-format
|
476 |
-
msgid ""
|
477 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
478 |
-
"theme folder and You don't want to rewrite them"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: gallery-plugin.php:1934
|
482 |
msgid "Rename gallery post type"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
msgid ""
|
487 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
488 |
"it now"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: gallery-plugin.php:
|
492 |
msgid ""
|
493 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
494 |
"please check settings of your other plugins where 'gallery' post type is used"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
#, fuzzy
|
499 |
msgid "Single gallery view"
|
500 |
msgstr "Ključ za galerijski vnos"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "Grid"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "Masonry"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
#, fuzzy
|
512 |
msgid "Under image"
|
513 |
msgstr "Posodobi slike"
|
514 |
|
515 |
-
#: gallery-plugin.php:
|
516 |
msgid "By mouse hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
msgid "Use pagination for images"
|
521 |
msgstr "Uporabi oštevilčenje strani za slike"
|
522 |
|
523 |
-
#: gallery-plugin.php:
|
524 |
msgid "per page"
|
525 |
msgstr "na stran"
|
526 |
|
527 |
-
#: gallery-plugin.php:
|
528 |
msgid "Lightbox background"
|
529 |
msgstr "Lightbox ozadje"
|
530 |
|
531 |
-
#: gallery-plugin.php:
|
532 |
msgid "Background transparency (from 0 to 1)"
|
533 |
msgstr "Prosojnost ozadja"
|
534 |
|
535 |
-
#: gallery-plugin.php:
|
536 |
msgid ""
|
537 |
"Display all images in the lightbox instead of going into a single gallery"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
#, php-format
|
542 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "The lightbox helper"
|
547 |
msgstr "Lightbox pomočnik"
|
548 |
|
549 |
-
#: gallery-plugin.php:
|
550 |
msgid "Do not use"
|
551 |
msgstr "Ne uporabljaj"
|
552 |
|
553 |
-
#: gallery-plugin.php:
|
554 |
msgid "Button helper"
|
555 |
msgstr "Pomočnik za gumb"
|
556 |
|
557 |
-
#: gallery-plugin.php:
|
558 |
msgid "Thumbnail helper"
|
559 |
msgstr "Pomočnik za prikazno sliko"
|
560 |
|
561 |
-
#: gallery-plugin.php:
|
562 |
msgid "Display Like buttons in the lightbox"
|
563 |
msgstr "Prikaži gumb \"Like\" tudi v lightbox-u"
|
564 |
|
565 |
-
#: gallery-plugin.php:
|
566 |
msgid "FaceBook"
|
567 |
msgstr "FaceBook"
|
568 |
|
569 |
-
#: gallery-plugin.php:
|
570 |
msgid "Twitter"
|
571 |
msgstr "Twitter"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
msgid "Pinterest"
|
575 |
msgstr "Pinterest"
|
576 |
|
577 |
-
#: gallery-plugin.php:
|
578 |
msgid "Google +1"
|
579 |
msgstr "Google +1"
|
580 |
|
581 |
-
#: gallery-plugin.php:
|
582 |
#, fuzzy
|
583 |
msgid "Show counter"
|
584 |
msgstr "Interval projekcije slik"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
msgid "Align"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: gallery-plugin.php:
|
591 |
msgid "left"
|
592 |
msgstr "levo"
|
593 |
|
594 |
-
#: gallery-plugin.php:
|
595 |
msgid "Title for lightbox button"
|
596 |
msgstr "Naziv za lightbox gumb"
|
597 |
|
598 |
-
#: gallery-plugin.php:
|
599 |
msgid "Slug for gallery item"
|
600 |
msgstr "Ključ za galerijski vnos"
|
601 |
|
602 |
-
#: gallery-plugin.php:
|
603 |
msgid "for any structure of permalinks except the default structure"
|
604 |
msgstr "za katerokoli strukturo trajnih povezav, z izjemo privzete strukture"
|
605 |
|
606 |
-
#: gallery-plugin.php:
|
607 |
msgid "Save Changes"
|
608 |
msgstr "Shrani spremembe"
|
609 |
|
610 |
-
#: gallery-plugin.php:
|
611 |
msgid ""
|
612 |
"If you install the demo-data, will be created galleries with images, demo-"
|
613 |
"post with available shortcodes and page with a list of all the galleries."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: gallery-plugin.php:
|
617 |
msgid "FAQ"
|
618 |
msgstr "FAQ"
|
619 |
|
620 |
-
#: gallery-plugin.php:
|
621 |
msgid "Support"
|
622 |
msgstr "Podpora"
|
623 |
|
624 |
-
#: gallery-plugin.php:
|
625 |
msgid "Updating images..."
|
626 |
msgstr "Posodabljam slike..."
|
627 |
|
628 |
-
#: gallery-plugin.php:
|
629 |
#, fuzzy
|
630 |
msgid "No image found."
|
631 |
msgstr "Slike niso bile najdene"
|
632 |
|
633 |
-
#: gallery-plugin.php:
|
634 |
#, fuzzy
|
635 |
msgid "All images are updated."
|
636 |
msgstr "Vse slike so posodobljene"
|
637 |
|
638 |
-
#: gallery-plugin.php:
|
639 |
msgid "Error."
|
640 |
msgstr "Napaka."
|
641 |
|
642 |
-
#: gallery-plugin.php:
|
643 |
msgid ""
|
644 |
"You are about to delete these items from this gallery.\n"
|
645 |
" 'Cancel' to stop, 'OK' to delete."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: gallery-plugin.php:
|
649 |
msgid ""
|
650 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
651 |
"switching?"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: gallery-plugin.php:
|
655 |
msgid "Insert Media"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: gallery-plugin.php:
|
659 |
msgid "Insert"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: gallery-plugin.php:
|
663 |
#, fuzzy
|
664 |
msgid "Learn more"
|
665 |
msgstr "Preberi več"
|
666 |
|
667 |
-
#: gallery-plugin.php:
|
668 |
#, fuzzy
|
669 |
msgid "Install now"
|
670 |
msgstr "Instalacija %s"
|
671 |
|
672 |
-
#: gallery-plugin.php:
|
673 |
msgid "Add multiple gallery categories"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: gallery-plugin.php:
|
677 |
msgid ""
|
678 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
msgid "Image size not defined"
|
683 |
msgstr "Velikost slike ni podana"
|
684 |
|
685 |
-
#: gallery-plugin.php:
|
686 |
msgid ""
|
687 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
688 |
"manually reload image."
|
@@ -690,211 +672,211 @@ msgstr ""
|
|
690 |
"Posodobiti je možno le PNG, JPEG, GIF, WPMP ali XBM tipe datotek. Za vse "
|
691 |
"ostale prosimo, da posodobiš slike ročno."
|
692 |
|
693 |
-
#: gallery-plugin.php:
|
694 |
msgid "Image size changes not defined"
|
695 |
msgstr "Spremembe velikosti slike niso podane"
|
696 |
|
697 |
-
#: gallery-plugin.php:
|
698 |
msgid "Invalid path"
|
699 |
msgstr "Napačna pot"
|
700 |
|
701 |
-
#: gallery-plugin.php:
|
702 |
msgid "Add images requires JavaScript."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: gallery-plugin.php:
|
706 |
msgid "Add Media"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: gallery-plugin.php:
|
710 |
msgid "The grid view for the Gallery images requires JavaScript."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: gallery-plugin.php:
|
714 |
msgid "Switch to the list view"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: gallery-plugin.php:
|
718 |
msgid "List View"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: gallery-plugin.php:
|
722 |
msgid "Grid View"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: gallery-plugin.php:
|
726 |
msgid "Filter"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: gallery-plugin.php:
|
730 |
msgid "Empty Trash"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: gallery-plugin.php:
|
734 |
#, fuzzy
|
735 |
msgid "No images found"
|
736 |
msgstr "Slike niso bile najdene"
|
737 |
|
738 |
-
#: gallery-plugin.php:
|
739 |
msgid "Select bulk action"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: gallery-plugin.php:
|
743 |
msgid "Bulk Actions"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: gallery-plugin.php:
|
747 |
msgid "Apply"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: gallery-plugin.php:
|
751 |
#, fuzzy
|
752 |
msgid "Delete from Gallery"
|
753 |
msgstr "Nova Galerija"
|
754 |
|
755 |
-
#: gallery-plugin.php:
|
756 |
#, fuzzy
|
757 |
msgid "Display link to the original file under each image in the lightbox"
|
758 |
msgstr "Prikaži sliko polne velikosti v lightbox-u"
|
759 |
|
760 |
-
#: gallery-plugin.php:
|
761 |
msgid "Bulk Select"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: gallery-plugin.php:
|
765 |
msgid "Cancel Selection"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: gallery-plugin.php:
|
769 |
msgid "Delete Selected"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: gallery-plugin.php:
|
773 |
msgid "File"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: gallery-plugin.php:
|
777 |
msgid "Dimensions"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: gallery-plugin.php:
|
781 |
msgid "Alt tag"
|
782 |
msgstr "Alt oznaka"
|
783 |
|
784 |
-
#: gallery-plugin.php:
|
785 |
msgid ""
|
786 |
"The alt attribute specifies an alternate text for an image, if the image "
|
787 |
"cannot be displayed."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: gallery-plugin.php:
|
791 |
msgid "Custom URL"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: gallery-plugin.php:
|
795 |
msgid ""
|
796 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
797 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: gallery-plugin.php:
|
801 |
msgid "Deselect"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: gallery-plugin.php:
|
805 |
msgid "File name"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: gallery-plugin.php:
|
809 |
msgid "File type"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: gallery-plugin.php:
|
813 |
#, fuzzy
|
814 |
msgid "Edit Attachment Info"
|
815 |
msgstr "ID priloge"
|
816 |
|
817 |
-
#: gallery-plugin.php:
|
818 |
#, fuzzy
|
819 |
msgid "Edit Attachment"
|
820 |
msgstr "ID priloge"
|
821 |
|
822 |
-
#: gallery-plugin.php:
|
823 |
#, fuzzy
|
824 |
msgid "Go Pro"
|
825 |
msgstr "Pojdi na PRO"
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
msgid "Pro version"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: gallery-plugin.php:
|
832 |
msgid "This setting is available in Pro version"
|
833 |
msgstr "Ta nastavitev je dostopna v Pro verziji"
|
834 |
|
835 |
-
#: gallery-plugin.php:
|
836 |
msgid "Edit more details"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: gallery-plugin.php:
|
840 |
#, php-format
|
841 |
msgid "Select %s"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: gallery-plugin.php:
|
845 |
#, php-format
|
846 |
msgid "Edit “%s”"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: gallery-plugin.php:
|
850 |
msgid "Edit"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: gallery-plugin.php:
|
854 |
msgid "Trash"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: gallery-plugin.php:
|
858 |
msgid "Delete Permanently"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
#, php-format
|
863 |
msgid "View “%s”"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: gallery-plugin.php:
|
867 |
msgid "View"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: gallery-plugin.php:
|
871 |
#, fuzzy
|
872 |
msgid "Attach"
|
873 |
msgstr "ID priloge"
|
874 |
|
875 |
-
#: gallery-plugin.php:
|
876 |
msgid "Restore"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: gallery-plugin.php:
|
880 |
msgid "Warning"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: gallery-plugin.php:
|
884 |
msgid "You can add only images to the gallery"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: gallery-plugin.php:
|
888 |
#, fuzzy
|
889 |
msgid "no title"
|
890 |
msgstr "Naslov"
|
891 |
|
892 |
-
#: gallery-plugin.php:
|
893 |
#, fuzzy
|
894 |
msgid "Sorry, no gallery found."
|
895 |
msgstr "Žal ni zadetkov"
|
896 |
|
897 |
-
#: gallery-plugin.php:
|
898 |
#, fuzzy
|
899 |
msgid ""
|
900 |
"Display an album image with the description and the link to a single gallery "
|
@@ -903,93 +885,104 @@ msgstr ""
|
|
903 |
"Če želiš prikazati kratek opis s predogledno sliko in povezavo do posamezne "
|
904 |
"galerije kopiraj spodnjo povezavo."
|
905 |
|
906 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
907 |
#, fuzzy
|
908 |
msgid "Install Demo Data"
|
909 |
msgstr "Instalacija %s"
|
910 |
|
911 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
912 |
msgid "Remove Demo Data"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
916 |
msgid "Delete demo-data and restore old plugin settings."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
920 |
msgid "Yes, install demo data"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
924 |
msgid "Are you sure you want to install demo data?"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
928 |
msgid "Yes, remove demo data"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
932 |
msgid "Are you sure you want to remove demo data?"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
936 |
#, fuzzy
|
937 |
msgid "No, go back to the settings page"
|
938 |
msgstr "na strani za nastavitve vtičnikov ("
|
939 |
|
940 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
941 |
msgid "Can not get demo data."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
945 |
msgid "Demo options already installed."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
949 |
msgid "Demo data successfully installed."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
953 |
msgid "View post with shortcodes"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
957 |
msgid "View page with examples"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
961 |
msgid "Installation of demo data with some errors occurred."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
965 |
msgid "Posts data is missing."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
969 |
msgid "Demo data have already been removed."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
973 |
msgid "Demo data successfully removed."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
977 |
msgid "Removing demo data with some errors occurred."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
981 |
msgid "Close notice"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
985 |
#, fuzzy
|
986 |
msgid "Install demo data"
|
987 |
msgstr "Instalacija %s"
|
988 |
|
989 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
990 |
msgid "for an acquaintance with the possibilities of the"
|
991 |
msgstr ""
|
992 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
#~ msgid "Select a border color"
|
994 |
#~ msgstr "Izberi barvo okvirja"
|
995 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:20+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Tilen <tilen@divided.si>\n"
|
9 |
"Language: sl_SI\n"
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
21 |
+
#: gallery-plugin.php:2010
|
22 |
msgid "Settings"
|
23 |
msgstr "Nastavitve"
|
24 |
|
25 |
+
#: gallery-plugin.php:139
|
26 |
msgid "See images »"
|
27 |
msgstr "Poglej slike »"
|
28 |
|
29 |
+
#: gallery-plugin.php:142
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Galleries"
|
35 |
msgstr "Galerije"
|
36 |
|
37 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
38 |
msgid "Gallery"
|
39 |
msgstr "Galerija"
|
40 |
|
41 |
+
#: gallery-plugin.php:322
|
42 |
msgid "Add New Gallery"
|
43 |
msgstr "Dodaj novo Galerijo"
|
44 |
|
45 |
+
#: gallery-plugin.php:323
|
46 |
msgid "Edit Gallery"
|
47 |
msgstr "Uredi Galerijo"
|
48 |
|
49 |
+
#: gallery-plugin.php:324
|
50 |
msgid "New Gallery"
|
51 |
msgstr "Nova Galerija"
|
52 |
|
53 |
+
#: gallery-plugin.php:325
|
54 |
msgid "View Gallery"
|
55 |
msgstr "Pregled Galerije"
|
56 |
|
57 |
+
#: gallery-plugin.php:326
|
58 |
#, fuzzy
|
59 |
msgid "Search Galleries"
|
60 |
msgstr "Galerije"
|
61 |
|
62 |
+
#: gallery-plugin.php:327
|
63 |
msgid "No Gallery found"
|
64 |
msgstr "Galerija ni bila najdena"
|
65 |
|
66 |
+
#: gallery-plugin.php:388
|
67 |
msgid "Gallery Shortcode"
|
68 |
msgstr "Kratka koda do galerije"
|
69 |
|
70 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
71 |
#, fuzzy
|
72 |
msgid "Gallery Categories"
|
73 |
msgstr "Velikost slike v galeriji"
|
74 |
|
75 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
76 |
#, fuzzy, php-format
|
77 |
msgid ""
|
78 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
80 |
"Če želiš dodati posamezno galerijo v stran ali prispevek preprosto kopiraj "
|
81 |
"to kodo:"
|
82 |
|
83 |
+
#: gallery-plugin.php:405
|
84 |
#, php-format
|
85 |
msgid ""
|
86 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
88 |
"please use the shortcode below"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: gallery-plugin.php:411
|
92 |
msgid ""
|
93 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: gallery-plugin.php:414
|
97 |
#, fuzzy
|
98 |
msgid ""
|
99 |
"Use this shortcode to display an album image with the description and the "
|
102 |
"Če želiš prikazati kratek opis s predogledno sliko in povezavo do posamezne "
|
103 |
"galerije kopiraj spodnjo povezavo."
|
104 |
|
105 |
+
#: gallery-plugin.php:416
|
106 |
msgid "Short display"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: gallery-plugin.php:433
|
110 |
msgid "Most Used"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
114 |
msgid "Default"
|
115 |
msgstr "Privzeto"
|
116 |
|
117 |
+
#: gallery-plugin.php:443
|
118 |
#, fuzzy
|
119 |
msgid "Add New Gallery Category"
|
120 |
msgstr "Dodaj novo Galerijo"
|
121 |
|
122 |
+
#: gallery-plugin.php:448
|
123 |
#, fuzzy
|
124 |
msgid "Install plugin"
|
125 |
msgstr "Instalirani moduli"
|
126 |
|
127 |
+
#: gallery-plugin.php:610
|
128 |
#, fuzzy
|
129 |
msgid "Gallery Category"
|
130 |
msgstr "Velikost slike v galeriji"
|
131 |
|
132 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Sorry, nothing found."
|
134 |
msgstr "Žal ni zadetkov"
|
135 |
|
136 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
137 |
+
#: gallery-plugin.php:3128
|
138 |
msgid "Title"
|
139 |
msgstr "Naslov"
|
140 |
|
141 |
+
#: gallery-plugin.php:1356
|
142 |
msgid "Author"
|
143 |
msgstr "Avtor"
|
144 |
|
145 |
+
#: gallery-plugin.php:1357
|
146 |
#, fuzzy
|
147 |
msgid "Shortcode"
|
148 |
msgstr "Kratka koda do galerije"
|
149 |
|
150 |
+
#: gallery-plugin.php:1358
|
151 |
#, fuzzy
|
152 |
msgid "Photos"
|
153 |
msgstr "Slika"
|
154 |
|
155 |
+
#: gallery-plugin.php:1359
|
156 |
msgid "Date"
|
157 |
msgstr "Datum"
|
158 |
|
159 |
+
#: gallery-plugin.php:1547
|
160 |
msgid "Settings are saved"
|
161 |
msgstr "Nastavitve so shranjene"
|
162 |
|
163 |
+
#: gallery-plugin.php:1564
|
164 |
#, fuzzy
|
165 |
msgid "All plugin settings were restored."
|
166 |
msgstr "na strani za nastavitve vtičnikov ("
|
167 |
|
168 |
+
#: gallery-plugin.php:1576
|
169 |
msgid "Gallery Settings"
|
170 |
msgstr "Nastavitve galerije"
|
171 |
|
172 |
+
#: gallery-plugin.php:1579
|
173 |
msgid "Custom code"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: gallery-plugin.php:1580
|
177 |
msgid "Go PRO"
|
178 |
msgstr "Pojdi na PRO"
|
179 |
|
180 |
+
#: gallery-plugin.php:1590
|
181 |
msgid "Please enable JavaScript to use the option to renew images."
|
182 |
msgstr "Prosimo omogoči Javascript za uporabo funkcije osvežitve slik."
|
183 |
|
184 |
+
#: gallery-plugin.php:1602
|
185 |
#, php-format
|
186 |
msgid ""
|
187 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
189 |
"please use the shortcode %s, where * stands for gallery ID"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: gallery-plugin.php:1612
|
193 |
+
#, fuzzy
|
194 |
+
msgid "Galleries page"
|
195 |
+
msgstr "Galerije"
|
196 |
+
|
197 |
+
#: gallery-plugin.php:1622
|
198 |
msgid "Number of images in the row"
|
199 |
msgstr "Število slik v vrsti"
|
200 |
|
201 |
+
#: gallery-plugin.php:1624
|
202 |
#, fuzzy
|
203 |
msgid ""
|
204 |
"The number of images per row can be less depending on the width of the "
|
205 |
"parent block"
|
206 |
msgstr "Število slik v vrsti"
|
207 |
|
208 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
209 |
msgid "Image size"
|
210 |
msgstr "Velikost slike"
|
211 |
|
212 |
+
#: gallery-plugin.php:1631
|
213 |
msgid ""
|
214 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
215 |
"upload a new photo."
|
217 |
"WordPress bo ustvaril novo predolgedno sliko z danimi dimenzijami pri "
|
218 |
"naslednjem nalaganju nove slike."
|
219 |
|
220 |
+
#: gallery-plugin.php:1633
|
221 |
#, fuzzy
|
222 |
msgid "For the album cover"
|
223 |
msgstr "Velikost slike albuma"
|
224 |
|
225 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
226 |
msgid "width x height"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
230 |
msgid "in px"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: gallery-plugin.php:1637
|
234 |
#, fuzzy
|
235 |
msgid "For thumbnails"
|
236 |
msgstr "Velikost slike albuma"
|
237 |
|
238 |
+
#: gallery-plugin.php:1641
|
239 |
msgid "Update images for gallery"
|
240 |
msgstr "Osveži slike galerije"
|
241 |
|
242 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
243 |
msgid "Close"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1657
|
247 |
#, fuzzy
|
248 |
msgid "For images in the lightbox"
|
249 |
msgstr "Velikost slike v lightbox-u"
|
250 |
|
251 |
+
#: gallery-plugin.php:1661
|
252 |
msgid "Display a full size image in the lightbox"
|
253 |
msgstr "Prikaži sliko polne velikosti v lightbox-u"
|
254 |
|
255 |
+
#: gallery-plugin.php:1666
|
256 |
msgid "Crop position"
|
257 |
msgstr "Pozicija za obrez"
|
258 |
|
259 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
260 |
msgid "center"
|
261 |
msgstr "center"
|
262 |
|
263 |
+
#: gallery-plugin.php:1672
|
264 |
msgid "Horizontal"
|
265 |
msgstr "Horizontalno"
|
266 |
|
267 |
+
#: gallery-plugin.php:1678
|
268 |
msgid "Vertical"
|
269 |
msgstr "Vertikalno"
|
270 |
|
271 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
272 |
msgid ""
|
273 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
274 |
msgstr ""
|
275 |
"V primeru posodobitve na PRO verzijo se bodo vse nastavitve in galerije "
|
276 |
"ohranile."
|
277 |
|
278 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
279 |
#, fuzzy
|
280 |
msgid "Unlock premium options by upgrading to Pro version"
|
281 |
msgstr "Odkleni premium opcije z nadgradnjo na PRO verzijo."
|
282 |
|
283 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
284 |
msgid "Start Your Trial"
|
285 |
msgstr "Začni svoje preizkusno obdobje"
|
286 |
|
287 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
288 |
msgid "or"
|
289 |
msgstr "ali"
|
290 |
|
291 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
292 |
msgid "Learn More"
|
293 |
msgstr "Preberi več"
|
294 |
|
295 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
296 |
msgid "Display image title"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: gallery-plugin.php:1708
|
300 |
#, fuzzy
|
301 |
msgid ""
|
302 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
303 |
msgstr "Odkljukaj kvadratek, če želiš da se tekst prikaže le v lightbox-u"
|
304 |
|
305 |
+
#: gallery-plugin.php:1712
|
306 |
msgid "Images with border"
|
307 |
msgstr "Slike z okvirjem"
|
308 |
|
309 |
+
#: gallery-plugin.php:1716
|
310 |
msgid "Border width in px, just numbers"
|
311 |
msgstr "Širina okvirja v pikslih (le številčno)"
|
312 |
|
313 |
+
#: gallery-plugin.php:1722
|
314 |
msgid "Sort images"
|
315 |
msgstr "Preuredi slike"
|
316 |
|
317 |
+
#: gallery-plugin.php:1725
|
318 |
#, fuzzy
|
319 |
msgid "by Attachment ID"
|
320 |
msgstr "ID priloge"
|
321 |
|
322 |
+
#: gallery-plugin.php:1726
|
323 |
#, fuzzy
|
324 |
msgid "by Image Name"
|
325 |
msgstr "Ime slike"
|
326 |
|
327 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
328 |
#, fuzzy
|
329 |
msgid "by Date"
|
330 |
msgstr "Datum"
|
331 |
|
332 |
+
#: gallery-plugin.php:1728
|
333 |
msgid "by Sorting order in the Gallery"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
337 |
msgid "Random"
|
338 |
msgstr "Naključno"
|
339 |
|
340 |
+
#: gallery-plugin.php:1734
|
341 |
#, fuzzy
|
342 |
msgid "The images sort order"
|
343 |
msgstr "Slike z okvirjem"
|
344 |
|
345 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
346 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
347 |
msgstr "ASC (naraščujoče - 1, 2, 3; a, b, c)"
|
348 |
|
349 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
350 |
msgid ""
|
351 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
352 |
msgstr "DESC (padajoče - 3, 2, 1; c, b, a)"
|
353 |
|
354 |
+
#: gallery-plugin.php:1743
|
355 |
#, fuzzy
|
356 |
msgid "Sort galleries"
|
357 |
msgstr "Galerije"
|
358 |
|
359 |
+
#: gallery-plugin.php:1746
|
360 |
#, fuzzy
|
361 |
msgid "by Gallery ID"
|
362 |
msgstr "Galerija"
|
363 |
|
364 |
+
#: gallery-plugin.php:1747
|
365 |
#, fuzzy
|
366 |
msgid "by Title"
|
367 |
msgstr "Naslov"
|
368 |
|
369 |
+
#: gallery-plugin.php:1749
|
370 |
msgid "by Last modified date"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: gallery-plugin.php:1750
|
374 |
msgid "by Comment count"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: gallery-plugin.php:1751
|
378 |
#, fuzzy
|
379 |
msgid "by Sorting order (the input field for sorting order)"
|
380 |
msgstr "Razporejanje glede na razporeditev v predstavnostni knjižici"
|
381 |
|
382 |
+
#: gallery-plugin.php:1752
|
383 |
#, fuzzy
|
384 |
msgid "by Author"
|
385 |
msgstr "Avtor"
|
386 |
|
387 |
+
#: gallery-plugin.php:1758
|
388 |
msgid "The galleries sort order"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: gallery-plugin.php:1767
|
392 |
msgid "Start slideshow"
|
393 |
msgstr "Začni projekcijo"
|
394 |
|
395 |
+
#: gallery-plugin.php:1770
|
396 |
msgid "Slideshow interval"
|
397 |
msgstr "Interval projekcije slik"
|
398 |
|
399 |
+
#: gallery-plugin.php:1770
|
400 |
msgid "(ms)"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: gallery-plugin.php:1774
|
404 |
msgid "Use single lightbox for multiple galleries on one page"
|
405 |
msgstr "Uporabi lightbox enkratno za vse galerije na strani"
|
406 |
|
407 |
+
#: gallery-plugin.php:1780
|
408 |
msgid "Display the Back link"
|
409 |
msgstr "Prikaži povratni link"
|
410 |
|
411 |
+
#: gallery-plugin.php:1786
|
412 |
msgid "Display the Back link in the shortcode"
|
413 |
msgstr "Prikaži povratni link v kratki kodi"
|
414 |
|
415 |
+
#: gallery-plugin.php:1792
|
416 |
msgid "The Back link text"
|
417 |
msgstr "Besedilo povezave na povratek na galerijo"
|
418 |
|
419 |
+
#: gallery-plugin.php:1798
|
420 |
msgid "The Back link URL"
|
421 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
422 |
|
423 |
+
#: gallery-plugin.php:1801
|
424 |
msgid "Gallery page (Page with Gallery Template)"
|
425 |
msgstr "Galerija (Stran z uporabljeno predlogo \"Gallery Template\")"
|
426 |
|
427 |
+
#: gallery-plugin.php:1803
|
428 |
msgid "(Full URL to custom page)"
|
429 |
msgstr "(Polni URL za uporabo na strani)"
|
430 |
|
431 |
+
#: gallery-plugin.php:1808
|
432 |
msgid "The Read More link text"
|
433 |
msgstr "Tekst v \"Read More\" gumbu"
|
434 |
|
435 |
+
#: gallery-plugin.php:1814
|
436 |
msgid "Add gallery to the search"
|
437 |
msgstr "Dodaj galerijo k iskalniku"
|
438 |
|
439 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
440 |
msgid "Using"
|
441 |
msgstr "Se uporablja"
|
442 |
|
443 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
444 |
msgid "powered by"
|
445 |
msgstr "gnano z"
|
446 |
|
447 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
448 |
msgid "Activate"
|
449 |
msgstr "Aktivirani moduli"
|
450 |
|
451 |
+
#: gallery-plugin.php:1826
|
452 |
msgid "Download"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
msgid "Rename gallery post type"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1837
|
460 |
msgid ""
|
461 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
462 |
"it now"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: gallery-plugin.php:1838
|
466 |
msgid ""
|
467 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
468 |
"please check settings of your other plugins where 'gallery' post type is used"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: gallery-plugin.php:1851
|
472 |
#, fuzzy
|
473 |
msgid "Single gallery view"
|
474 |
msgstr "Ključ za galerijski vnos"
|
475 |
|
476 |
+
#: gallery-plugin.php:1854
|
477 |
msgid "Grid"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: gallery-plugin.php:1855
|
481 |
msgid "Masonry"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: gallery-plugin.php:1863
|
485 |
#, fuzzy
|
486 |
msgid "Under image"
|
487 |
msgstr "Posodobi slike"
|
488 |
|
489 |
+
#: gallery-plugin.php:1864
|
490 |
msgid "By mouse hover"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:1869
|
494 |
msgid "Use pagination for images"
|
495 |
msgstr "Uporabi oštevilčenje strani za slike"
|
496 |
|
497 |
+
#: gallery-plugin.php:1872
|
498 |
msgid "per page"
|
499 |
msgstr "na stran"
|
500 |
|
501 |
+
#: gallery-plugin.php:1876
|
502 |
msgid "Lightbox background"
|
503 |
msgstr "Lightbox ozadje"
|
504 |
|
505 |
+
#: gallery-plugin.php:1879
|
506 |
msgid "Background transparency (from 0 to 1)"
|
507 |
msgstr "Prosojnost ozadja"
|
508 |
|
509 |
+
#: gallery-plugin.php:1885
|
510 |
msgid ""
|
511 |
"Display all images in the lightbox instead of going into a single gallery"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1888
|
515 |
#, php-format
|
516 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1892
|
520 |
msgid "The lightbox helper"
|
521 |
msgstr "Lightbox pomočnik"
|
522 |
|
523 |
+
#: gallery-plugin.php:1894
|
524 |
msgid "Do not use"
|
525 |
msgstr "Ne uporabljaj"
|
526 |
|
527 |
+
#: gallery-plugin.php:1895
|
528 |
msgid "Button helper"
|
529 |
msgstr "Pomočnik za gumb"
|
530 |
|
531 |
+
#: gallery-plugin.php:1896
|
532 |
msgid "Thumbnail helper"
|
533 |
msgstr "Pomočnik za prikazno sliko"
|
534 |
|
535 |
+
#: gallery-plugin.php:1900
|
536 |
msgid "Display Like buttons in the lightbox"
|
537 |
msgstr "Prikaži gumb \"Like\" tudi v lightbox-u"
|
538 |
|
539 |
+
#: gallery-plugin.php:1904
|
540 |
msgid "FaceBook"
|
541 |
msgstr "FaceBook"
|
542 |
|
543 |
+
#: gallery-plugin.php:1905
|
544 |
msgid "Twitter"
|
545 |
msgstr "Twitter"
|
546 |
|
547 |
+
#: gallery-plugin.php:1906
|
548 |
msgid "Pinterest"
|
549 |
msgstr "Pinterest"
|
550 |
|
551 |
+
#: gallery-plugin.php:1907
|
552 |
msgid "Google +1"
|
553 |
msgstr "Google +1"
|
554 |
|
555 |
+
#: gallery-plugin.php:1910
|
556 |
#, fuzzy
|
557 |
msgid "Show counter"
|
558 |
msgstr "Interval projekcije slik"
|
559 |
|
560 |
+
#: gallery-plugin.php:1912
|
561 |
msgid "Align"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: gallery-plugin.php:1914
|
565 |
msgid "left"
|
566 |
msgstr "levo"
|
567 |
|
568 |
+
#: gallery-plugin.php:1921
|
569 |
msgid "Title for lightbox button"
|
570 |
msgstr "Naziv za lightbox gumb"
|
571 |
|
572 |
+
#: gallery-plugin.php:1927
|
573 |
msgid "Slug for gallery item"
|
574 |
msgstr "Ključ za galerijski vnos"
|
575 |
|
576 |
+
#: gallery-plugin.php:1929
|
577 |
msgid "for any structure of permalinks except the default structure"
|
578 |
msgstr "za katerokoli strukturo trajnih povezav, z izjemo privzete strukture"
|
579 |
|
580 |
+
#: gallery-plugin.php:1955
|
581 |
msgid "Save Changes"
|
582 |
msgstr "Shrani spremembe"
|
583 |
|
584 |
+
#: gallery-plugin.php:1960
|
585 |
msgid ""
|
586 |
"If you install the demo-data, will be created galleries with images, demo-"
|
587 |
"post with available shortcodes and page with a list of all the galleries."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: gallery-plugin.php:1994
|
591 |
msgid "FAQ"
|
592 |
msgstr "FAQ"
|
593 |
|
594 |
+
#: gallery-plugin.php:1995
|
595 |
msgid "Support"
|
596 |
msgstr "Podpora"
|
597 |
|
598 |
+
#: gallery-plugin.php:2032
|
599 |
msgid "Updating images..."
|
600 |
msgstr "Posodabljam slike..."
|
601 |
|
602 |
+
#: gallery-plugin.php:2033
|
603 |
#, fuzzy
|
604 |
msgid "No image found."
|
605 |
msgstr "Slike niso bile najdene"
|
606 |
|
607 |
+
#: gallery-plugin.php:2034
|
608 |
#, fuzzy
|
609 |
msgid "All images are updated."
|
610 |
msgstr "Vse slike so posodobljene"
|
611 |
|
612 |
+
#: gallery-plugin.php:2035
|
613 |
msgid "Error."
|
614 |
msgstr "Napaka."
|
615 |
|
616 |
+
#: gallery-plugin.php:2049
|
617 |
msgid ""
|
618 |
"You are about to delete these items from this gallery.\n"
|
619 |
" 'Cancel' to stop, 'OK' to delete."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: gallery-plugin.php:2050
|
623 |
msgid ""
|
624 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
625 |
"switching?"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:2051
|
629 |
msgid "Insert Media"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: gallery-plugin.php:2052
|
633 |
msgid "Insert"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: gallery-plugin.php:2064
|
637 |
#, fuzzy
|
638 |
msgid "Learn more"
|
639 |
msgstr "Preberi več"
|
640 |
|
641 |
+
#: gallery-plugin.php:2076
|
642 |
#, fuzzy
|
643 |
msgid "Install now"
|
644 |
msgstr "Instalacija %s"
|
645 |
|
646 |
+
#: gallery-plugin.php:2085
|
647 |
msgid "Add multiple gallery categories"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: gallery-plugin.php:2085
|
651 |
msgid ""
|
652 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: gallery-plugin.php:2405
|
656 |
+
msgid "Download high resolution image"
|
657 |
+
msgstr "Prenesi sliko visoke resolucije"
|
658 |
+
|
659 |
+
#: gallery-plugin.php:2417
|
660 |
+
msgid "Image"
|
661 |
+
msgstr "Slika"
|
662 |
+
|
663 |
+
#: gallery-plugin.php:2558
|
664 |
msgid "Image size not defined"
|
665 |
msgstr "Velikost slike ni podana"
|
666 |
|
667 |
+
#: gallery-plugin.php:2573
|
668 |
msgid ""
|
669 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
670 |
"manually reload image."
|
672 |
"Posodobiti je možno le PNG, JPEG, GIF, WPMP ali XBM tipe datotek. Za vse "
|
673 |
"ostale prosimo, da posodobiš slike ročno."
|
674 |
|
675 |
+
#: gallery-plugin.php:2584
|
676 |
msgid "Image size changes not defined"
|
677 |
msgstr "Spremembe velikosti slike niso podane"
|
678 |
|
679 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
680 |
msgid "Invalid path"
|
681 |
msgstr "Napačna pot"
|
682 |
|
683 |
+
#: gallery-plugin.php:2694
|
684 |
msgid "Add images requires JavaScript."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: gallery-plugin.php:2697
|
688 |
msgid "Add Media"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: gallery-plugin.php:2707
|
692 |
msgid "The grid view for the Gallery images requires JavaScript."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: gallery-plugin.php:2707
|
696 |
msgid "Switch to the list view"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: gallery-plugin.php:2734
|
700 |
msgid "List View"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: gallery-plugin.php:2735
|
704 |
msgid "Grid View"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: gallery-plugin.php:2790
|
708 |
msgid "Filter"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: gallery-plugin.php:2794
|
712 |
msgid "Empty Trash"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: gallery-plugin.php:2815
|
716 |
#, fuzzy
|
717 |
msgid "No images found"
|
718 |
msgstr "Slike niso bile najdene"
|
719 |
|
720 |
+
#: gallery-plugin.php:2867
|
721 |
msgid "Select bulk action"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: gallery-plugin.php:2869
|
725 |
msgid "Bulk Actions"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: gallery-plugin.php:2879
|
729 |
msgid "Apply"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
733 |
#, fuzzy
|
734 |
msgid "Delete from Gallery"
|
735 |
msgstr "Nova Galerija"
|
736 |
|
737 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
738 |
#, fuzzy
|
739 |
msgid "Display link to the original file under each image in the lightbox"
|
740 |
msgstr "Prikaži sliko polne velikosti v lightbox-u"
|
741 |
|
742 |
+
#: gallery-plugin.php:2908
|
743 |
msgid "Bulk Select"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: gallery-plugin.php:2910
|
747 |
msgid "Cancel Selection"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: gallery-plugin.php:2911
|
751 |
msgid "Delete Selected"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: gallery-plugin.php:2924
|
755 |
msgid "File"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
759 |
msgid "Dimensions"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
763 |
msgid "Alt tag"
|
764 |
msgstr "Alt oznaka"
|
765 |
|
766 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
767 |
msgid ""
|
768 |
"The alt attribute specifies an alternate text for an image, if the image "
|
769 |
"cannot be displayed."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
773 |
msgid "Custom URL"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
777 |
msgid ""
|
778 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
779 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: gallery-plugin.php:3006
|
783 |
msgid "Deselect"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: gallery-plugin.php:3012
|
787 |
msgid "File name"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: gallery-plugin.php:3013
|
791 |
msgid "File type"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
795 |
#, fuzzy
|
796 |
msgid "Edit Attachment Info"
|
797 |
msgstr "ID priloge"
|
798 |
|
799 |
+
#: gallery-plugin.php:3017
|
800 |
#, fuzzy
|
801 |
msgid "Edit Attachment"
|
802 |
msgstr "ID priloge"
|
803 |
|
804 |
+
#: gallery-plugin.php:3027
|
805 |
#, fuzzy
|
806 |
msgid "Go Pro"
|
807 |
msgstr "Pojdi na PRO"
|
808 |
|
809 |
+
#: gallery-plugin.php:3027
|
810 |
msgid "Pro version"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: gallery-plugin.php:3030
|
814 |
msgid "This setting is available in Pro version"
|
815 |
msgstr "Ta nastavitev je dostopna v Pro verziji"
|
816 |
|
817 |
+
#: gallery-plugin.php:3063
|
818 |
msgid "Edit more details"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: gallery-plugin.php:3098
|
822 |
#, php-format
|
823 |
msgid "Select %s"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: gallery-plugin.php:3111
|
827 |
#, php-format
|
828 |
msgid "Edit “%s”"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
832 |
msgid "Edit"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
836 |
msgid "Trash"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
840 |
msgid "Delete Permanently"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
844 |
#, php-format
|
845 |
msgid "View “%s”"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
849 |
msgid "View"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: gallery-plugin.php:3166
|
853 |
#, fuzzy
|
854 |
msgid "Attach"
|
855 |
msgstr "ID priloge"
|
856 |
|
857 |
+
#: gallery-plugin.php:3172
|
858 |
msgid "Restore"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: gallery-plugin.php:3303
|
862 |
msgid "Warning"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: gallery-plugin.php:3303
|
866 |
msgid "You can add only images to the gallery"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: gallery-plugin.php:3345
|
870 |
#, fuzzy
|
871 |
msgid "no title"
|
872 |
msgstr "Naslov"
|
873 |
|
874 |
+
#: gallery-plugin.php:3353
|
875 |
#, fuzzy
|
876 |
msgid "Sorry, no gallery found."
|
877 |
msgstr "Žal ni zadetkov"
|
878 |
|
879 |
+
#: gallery-plugin.php:3359
|
880 |
#, fuzzy
|
881 |
msgid ""
|
882 |
"Display an album image with the description and the link to a single gallery "
|
885 |
"Če želiš prikazati kratek opis s predogledno sliko in povezavo do posamezne "
|
886 |
"galerije kopiraj spodnjo povezavo."
|
887 |
|
888 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
889 |
#, fuzzy
|
890 |
msgid "Install Demo Data"
|
891 |
msgstr "Instalacija %s"
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
894 |
msgid "Remove Demo Data"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
898 |
msgid "Delete demo-data and restore old plugin settings."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
902 |
msgid "Yes, install demo data"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
906 |
msgid "Are you sure you want to install demo data?"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
910 |
msgid "Yes, remove demo data"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
914 |
msgid "Are you sure you want to remove demo data?"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
918 |
#, fuzzy
|
919 |
msgid "No, go back to the settings page"
|
920 |
msgstr "na strani za nastavitve vtičnikov ("
|
921 |
|
922 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
923 |
msgid "Can not get demo data."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
927 |
msgid "Demo options already installed."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
931 |
msgid "Demo data successfully installed."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
935 |
msgid "View post with shortcodes"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
939 |
msgid "View page with examples"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
943 |
msgid "Installation of demo data with some errors occurred."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
947 |
msgid "Posts data is missing."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
951 |
msgid "Demo data have already been removed."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
955 |
msgid "Demo data successfully removed."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
959 |
msgid "Removing demo data with some errors occurred."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
963 |
msgid "Close notice"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
967 |
#, fuzzy
|
968 |
msgid "Install demo data"
|
969 |
msgstr "Instalacija %s"
|
970 |
|
971 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
972 |
msgid "for an acquaintance with the possibilities of the"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#, fuzzy
|
976 |
+
#~ msgid ""
|
977 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
978 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
979 |
+
#~ "theme for the correct work of the Gallery plugin"
|
980 |
+
#~ msgstr ""
|
981 |
+
#~ "Datoteke \"gallery-template.php\" in \"gallery-single-template.php\" niso "
|
982 |
+
#~ "bile najdene v mapi tvoje teme. Prosimo skopiraj jih iz mape `/wp-content/"
|
983 |
+
#~ "plugins/gallery-plugin/template/` v mapo tvoje teme za pravilno delovanje "
|
984 |
+
#~ "Gallery vtičnika"
|
985 |
+
|
986 |
#~ msgid "Select a border color"
|
987 |
#~ msgstr "Izberi barvo okvirja"
|
988 |
|
languages/gallery-plugin-sr_RS.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www."
|
9 |
"georgijevic.info, andrijanan@webhostinggeeks.com>\n"
|
@@ -18,74 +18,62 @@ msgstr ""
|
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: gallery-plugin.php:
|
22 |
-
#: gallery-plugin.php:
|
23 |
msgid "Settings"
|
24 |
msgstr "Podešavanja"
|
25 |
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "See images »"
|
28 |
msgstr "Pogledaj sliku »"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Return to all albums"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
-
#, fuzzy, php-format
|
36 |
-
msgid ""
|
37 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
38 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
39 |
-
"theme for the correct work of the Gallery plugin"
|
40 |
-
msgstr ""
|
41 |
-
"Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" "
|
42 |
-
"nisu pronađeni u direktorijumu vaše teme. Molimo vas da ih kopirate iz "
|
43 |
-
"direktorijuma `/wp-content/plugins/gallery-plugin/template/` u direktorijum "
|
44 |
-
"vaše teme za ispravan rad modula Galerija"
|
45 |
-
|
46 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
47 |
msgid "Galleries"
|
48 |
msgstr "Galerije"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "Gallery"
|
52 |
msgstr "Galerija"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Add New Gallery"
|
56 |
msgstr "Dodaj novu Galeriju"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "Edit Gallery"
|
60 |
msgstr "Uredi Galeriju"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "New Gallery"
|
64 |
msgstr "Nova Galerija"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
msgid "View Gallery"
|
68 |
msgstr "Pregled Galerije"
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Search Galleries"
|
73 |
msgstr "Galerije"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "No Gallery found"
|
77 |
msgstr "Nije pronađena Galerija"
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
80 |
msgid "Gallery Shortcode"
|
81 |
msgstr "Kratak kod za Galeriju"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
#, fuzzy
|
85 |
msgid "Gallery Categories"
|
86 |
msgstr "Veličina slika u galeriji"
|
87 |
|
88 |
-
#: gallery-plugin.php:
|
89 |
#, fuzzy, php-format
|
90 |
msgid ""
|
91 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -93,7 +81,7 @@ msgstr ""
|
|
93 |
"Ako želite da dodate Jedinstvenu Galeriju na vašu stranicu ili post, samo "
|
94 |
"kopirajte i prelepite ovaj kratki kod na vaš post ili stranicu:"
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
#, php-format
|
98 |
msgid ""
|
99 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -101,12 +89,12 @@ msgid ""
|
|
101 |
"please use the shortcode below"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid ""
|
106 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
#, fuzzy
|
111 |
msgid ""
|
112 |
"Use this shortcode to display an album image with the description and the "
|
@@ -115,96 +103,88 @@ msgstr ""
|
|
115 |
"Ako želite da prikažete kratak opis koji sadrži snimak ekrana i link ka "
|
116 |
"stranici sa Jedinstvenom galerijom."
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Short display"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Most Used"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "Default"
|
128 |
msgstr "Podrazumevano"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
#, fuzzy
|
132 |
msgid "Add New Gallery Category"
|
133 |
msgstr "Dodaj novu Galeriju"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, fuzzy
|
137 |
msgid "Install plugin"
|
138 |
msgstr "Instalirani moduli"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
#, fuzzy
|
142 |
msgid "Gallery Category"
|
143 |
msgstr "Veličina slika u galeriji"
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
-
msgid "Download high resolution image"
|
147 |
-
msgstr "Preuzmi sliku u visokoj rezoluciji"
|
148 |
-
|
149 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
150 |
-
msgid "Image"
|
151 |
-
msgstr "Slika"
|
152 |
-
|
153 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
154 |
msgid "Sorry, nothing found."
|
155 |
msgstr "Nažalost nije pronađeno"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Title"
|
160 |
msgstr "Naslov"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Author"
|
164 |
msgstr "Autor"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
#, fuzzy
|
168 |
msgid "Shortcode"
|
169 |
msgstr "Kratak kod za Galeriju"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
#, fuzzy
|
173 |
msgid "Photos"
|
174 |
msgstr "Foto"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "Date"
|
178 |
msgstr "Datum"
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Settings are saved"
|
182 |
msgstr "Podešavanja su sačuvana"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
#, fuzzy
|
186 |
msgid "All plugin settings were restored."
|
187 |
msgstr "na stranici za podešavanje modula ("
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Gallery Settings"
|
191 |
msgstr "Podešavanja Galerije"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Custom code"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Go PRO"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
#, fuzzy
|
203 |
msgid "Please enable JavaScript to use the option to renew images."
|
204 |
msgstr ""
|
205 |
"Molimo vas omogućite da JavaScript koristi program za učitavanje fajlova."
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -212,22 +192,27 @@ msgid ""
|
|
212 |
"please use the shortcode %s, where * stands for gallery ID"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
216 |
msgid "Number of images in the row"
|
217 |
msgstr "Broj slika u redu"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid ""
|
222 |
"The number of images per row can be less depending on the width of the "
|
223 |
"parent block"
|
224 |
msgstr "Broj slika u redu"
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Image size"
|
228 |
msgstr "Veličina slike"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid ""
|
232 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
233 |
"upload a new photo."
|
@@ -235,673 +220,670 @@ msgstr ""
|
|
235 |
"WordPress će kreirati novi umanjeni prikaz sa navedenim dimenzijama kada "
|
236 |
"učitate novu sliku."
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
#, fuzzy
|
240 |
msgid "For the album cover"
|
241 |
msgstr "Veličina slike za naslovnu stranicu albuma"
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "width x height"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "in px"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
#, fuzzy
|
253 |
msgid "For thumbnails"
|
254 |
msgstr "Veličina slike za naslovnu stranicu albuma"
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Update images for gallery"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
msgid "Close"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid "For images in the lightbox"
|
267 |
msgstr "Veličina slika u galeriji u lightbox skriptu"
|
268 |
|
269 |
-
#: gallery-plugin.php:
|
270 |
msgid "Display a full size image in the lightbox"
|
271 |
msgstr "Prikaži sliku u punoj veličini u lightbox-u"
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Crop position"
|
275 |
msgstr "Pozicija za kropovanje"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "center"
|
279 |
msgstr "centar"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Horizontal"
|
283 |
msgstr "Horizontalno"
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
msgid "Vertical"
|
287 |
msgstr "Vertikalno"
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid ""
|
291 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Unlock premium options by upgrading to Pro version"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Start Your Trial"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "or"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
#, fuzzy
|
308 |
msgid "Learn More"
|
309 |
msgstr "Pročitaj više"
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
msgid "Display image title"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
#, fuzzy
|
317 |
msgid ""
|
318 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
319 |
msgstr "Ako želite da prikažete tekst samo u lightbox-u"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Images with border"
|
323 |
msgstr "Slike sa okvirima"
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Border width in px, just numbers"
|
327 |
msgstr "Širina okvira u pikselima, samo brojevi"
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "Sort images"
|
331 |
msgstr "Sortiraj slike"
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
#, fuzzy
|
335 |
msgid "by Attachment ID"
|
336 |
msgstr "ID priloga"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
#, fuzzy
|
340 |
msgid "by Image Name"
|
341 |
msgstr "Ime slike"
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
#, fuzzy
|
345 |
msgid "by Date"
|
346 |
msgstr "Datum"
|
347 |
|
348 |
-
#: gallery-plugin.php:
|
349 |
msgid "by Sorting order in the Gallery"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "Random"
|
354 |
msgstr "Nasumično"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
#, fuzzy
|
358 |
msgid "The images sort order"
|
359 |
msgstr "Slike sa okvirima"
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
363 |
msgstr ""
|
364 |
"ASC (rastući redosled od najnižih do najviših vrednosti - 1, 2, 3; a, b, c)"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid ""
|
368 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
369 |
msgstr ""
|
370 |
"DESC (opadajući redosled od najviših do najnižih vrednosti - 3, 2, 1; c, b, "
|
371 |
"a)"
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
#, fuzzy
|
375 |
msgid "Sort galleries"
|
376 |
msgstr "Galerije"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
#, fuzzy
|
380 |
msgid "by Gallery ID"
|
381 |
msgstr "Galerija"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
#, fuzzy
|
385 |
msgid "by Title"
|
386 |
msgstr "Naslov"
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "by Last modified date"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "by Comment count"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
#, fuzzy
|
398 |
msgid "by Sorting order (the input field for sorting order)"
|
399 |
msgstr ""
|
400 |
"Raspoređivanje (polje za unos za sortiranje u dijalogu Insert / Upload Media "
|
401 |
"Gallery)"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, fuzzy
|
405 |
msgid "by Author"
|
406 |
msgstr "Autor"
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
msgid "The galleries sort order"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
msgid "Start slideshow"
|
414 |
msgstr "Započni projekciju slajdova"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "Slideshow interval"
|
418 |
msgstr "Interval projekcije slajdova"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "(ms)"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "Use single lightbox for multiple galleries on one page"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "Display the Back link"
|
430 |
msgstr "Prikaži povratni link"
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
msgid "Display the Back link in the shortcode"
|
434 |
msgstr "Prikaži povratni link u kratkom kodu"
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
msgid "The Back link text"
|
438 |
msgstr "Tekst u povratnom linku"
|
439 |
|
440 |
-
#: gallery-plugin.php:
|
441 |
msgid "The Back link URL"
|
442 |
msgstr "URL povratnog linka"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "Gallery page (Page with Gallery Template)"
|
446 |
msgstr "Stranica galerije (Stranica sa šablonom galerije)"
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "(Full URL to custom page)"
|
450 |
msgstr "(Puni URL ka korisničkoj stranici)"
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "The Read More link text"
|
454 |
msgstr "Tekst u linku Pročitaj više"
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
msgid "Add gallery to the search"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: gallery-plugin.php:
|
461 |
msgid "Using"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
msgid "powered by"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
#, fuzzy
|
470 |
msgid "Activate"
|
471 |
msgstr "Aktivirani moduli"
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "Download"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
-
msgid "Rewrite templates after update"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: gallery-plugin.php:1929
|
482 |
-
#, php-format
|
483 |
-
msgid ""
|
484 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
485 |
-
"theme folder and You don't want to rewrite them"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: gallery-plugin.php:1934
|
489 |
msgid "Rename gallery post type"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: gallery-plugin.php:
|
493 |
msgid ""
|
494 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
495 |
"it now"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: gallery-plugin.php:
|
499 |
msgid ""
|
500 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
501 |
"please check settings of your other plugins where 'gallery' post type is used"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: gallery-plugin.php:
|
505 |
#, fuzzy
|
506 |
msgid "Single gallery view"
|
507 |
msgstr "Taille de la vignette de la galerie"
|
508 |
|
509 |
-
#: gallery-plugin.php:
|
510 |
msgid "Grid"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: gallery-plugin.php:
|
514 |
msgid "Masonry"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: gallery-plugin.php:
|
518 |
#, fuzzy
|
519 |
msgid "Under image"
|
520 |
msgstr "poređaj slike"
|
521 |
|
522 |
-
#: gallery-plugin.php:
|
523 |
msgid "By mouse hover"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: gallery-plugin.php:
|
527 |
msgid "Use pagination for images"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: gallery-plugin.php:
|
531 |
msgid "per page"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: gallery-plugin.php:
|
535 |
msgid "Lightbox background"
|
536 |
msgstr "Lightbox pozadina"
|
537 |
|
538 |
-
#: gallery-plugin.php:
|
539 |
msgid "Background transparency (from 0 to 1)"
|
540 |
msgstr "Pozadinska transparentnost (od 0 do 1)"
|
541 |
|
542 |
-
#: gallery-plugin.php:
|
543 |
msgid ""
|
544 |
"Display all images in the lightbox instead of going into a single gallery"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: gallery-plugin.php:
|
548 |
#, php-format
|
549 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: gallery-plugin.php:
|
553 |
msgid "The lightbox helper"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: gallery-plugin.php:
|
557 |
msgid "Do not use"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: gallery-plugin.php:
|
561 |
msgid "Button helper"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: gallery-plugin.php:
|
565 |
msgid "Thumbnail helper"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: gallery-plugin.php:
|
569 |
#, fuzzy
|
570 |
msgid "Display Like buttons in the lightbox"
|
571 |
msgstr "Afficher une image en taille normale dans le boite"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
msgid "FaceBook"
|
575 |
msgstr "FaceBook"
|
576 |
|
577 |
-
#: gallery-plugin.php:
|
578 |
#, fuzzy
|
579 |
msgid "Twitter"
|
580 |
msgstr "Titre"
|
581 |
|
582 |
-
#: gallery-plugin.php:
|
583 |
msgid "Pinterest"
|
584 |
msgstr "Pinterest"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
msgid "Google +1"
|
588 |
msgstr "Google +1"
|
589 |
|
590 |
-
#: gallery-plugin.php:
|
591 |
#, fuzzy
|
592 |
msgid "Show counter"
|
593 |
msgstr "Interval projekcije slajdova"
|
594 |
|
595 |
-
#: gallery-plugin.php:
|
596 |
msgid "Align"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: gallery-plugin.php:
|
600 |
msgid "left"
|
601 |
msgstr "levo"
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "Title for lightbox button"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: gallery-plugin.php:
|
608 |
#, fuzzy
|
609 |
msgid "Slug for gallery item"
|
610 |
msgstr "Taille de la vignette de la galerie"
|
611 |
|
612 |
-
#: gallery-plugin.php:
|
613 |
msgid "for any structure of permalinks except the default structure"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: gallery-plugin.php:
|
617 |
msgid "Save Changes"
|
618 |
msgstr "Sačuvaj izmene"
|
619 |
|
620 |
-
#: gallery-plugin.php:
|
621 |
msgid ""
|
622 |
"If you install the demo-data, will be created galleries with images, demo-"
|
623 |
"post with available shortcodes and page with a list of all the galleries."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: gallery-plugin.php:
|
627 |
msgid "FAQ"
|
628 |
msgstr "FAQ"
|
629 |
|
630 |
-
#: gallery-plugin.php:
|
631 |
msgid "Support"
|
632 |
msgstr "Podrška"
|
633 |
|
634 |
-
#: gallery-plugin.php:
|
635 |
msgid "Updating images..."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: gallery-plugin.php:
|
639 |
#, fuzzy
|
640 |
msgid "No image found."
|
641 |
msgstr "Nije pronađena Galerija"
|
642 |
|
643 |
-
#: gallery-plugin.php:
|
644 |
msgid "All images are updated."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: gallery-plugin.php:
|
648 |
msgid "Error."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: gallery-plugin.php:
|
652 |
msgid ""
|
653 |
"You are about to delete these items from this gallery.\n"
|
654 |
" 'Cancel' to stop, 'OK' to delete."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: gallery-plugin.php:
|
658 |
msgid ""
|
659 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
660 |
"switching?"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: gallery-plugin.php:
|
664 |
msgid "Insert Media"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: gallery-plugin.php:
|
668 |
msgid "Insert"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: gallery-plugin.php:
|
672 |
#, fuzzy
|
673 |
msgid "Learn more"
|
674 |
msgstr "Pročitaj više"
|
675 |
|
676 |
-
#: gallery-plugin.php:
|
677 |
#, fuzzy
|
678 |
msgid "Install now"
|
679 |
msgstr "Instalacija %s"
|
680 |
|
681 |
-
#: gallery-plugin.php:
|
682 |
msgid "Add multiple gallery categories"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: gallery-plugin.php:
|
686 |
msgid ""
|
687 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
691 |
#, fuzzy
|
692 |
msgid "Image size not defined"
|
693 |
msgstr "Veličina slike"
|
694 |
|
695 |
-
#: gallery-plugin.php:
|
696 |
msgid ""
|
697 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
698 |
"manually reload image."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: gallery-plugin.php:
|
702 |
msgid "Image size changes not defined"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: gallery-plugin.php:
|
706 |
msgid "Invalid path"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: gallery-plugin.php:
|
710 |
msgid "Add images requires JavaScript."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: gallery-plugin.php:
|
714 |
msgid "Add Media"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: gallery-plugin.php:
|
718 |
msgid "The grid view for the Gallery images requires JavaScript."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: gallery-plugin.php:
|
722 |
msgid "Switch to the list view"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: gallery-plugin.php:
|
726 |
msgid "List View"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: gallery-plugin.php:
|
730 |
msgid "Grid View"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: gallery-plugin.php:
|
734 |
msgid "Filter"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: gallery-plugin.php:
|
738 |
msgid "Empty Trash"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: gallery-plugin.php:
|
742 |
#, fuzzy
|
743 |
msgid "No images found"
|
744 |
msgstr "Nije pronađena Galerija"
|
745 |
|
746 |
-
#: gallery-plugin.php:
|
747 |
msgid "Select bulk action"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: gallery-plugin.php:
|
751 |
msgid "Bulk Actions"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: gallery-plugin.php:
|
755 |
msgid "Apply"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: gallery-plugin.php:
|
759 |
#, fuzzy
|
760 |
msgid "Delete from Gallery"
|
761 |
msgstr "Nova Galerija"
|
762 |
|
763 |
-
#: gallery-plugin.php:
|
764 |
#, fuzzy
|
765 |
msgid "Display link to the original file under each image in the lightbox"
|
766 |
msgstr "Prikaži sliku u punoj veličini u lightbox-u"
|
767 |
|
768 |
-
#: gallery-plugin.php:
|
769 |
msgid "Bulk Select"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: gallery-plugin.php:
|
773 |
msgid "Cancel Selection"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: gallery-plugin.php:
|
777 |
msgid "Delete Selected"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: gallery-plugin.php:
|
781 |
msgid "File"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: gallery-plugin.php:
|
785 |
msgid "Dimensions"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: gallery-plugin.php:
|
789 |
msgid "Alt tag"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: gallery-plugin.php:
|
793 |
msgid ""
|
794 |
"The alt attribute specifies an alternate text for an image, if the image "
|
795 |
"cannot be displayed."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: gallery-plugin.php:
|
799 |
msgid "Custom URL"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: gallery-plugin.php:
|
803 |
msgid ""
|
804 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
805 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: gallery-plugin.php:
|
809 |
msgid "Deselect"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: gallery-plugin.php:
|
813 |
msgid "File name"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: gallery-plugin.php:
|
817 |
msgid "File type"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: gallery-plugin.php:
|
821 |
#, fuzzy
|
822 |
msgid "Edit Attachment Info"
|
823 |
msgstr "ID priloga"
|
824 |
|
825 |
-
#: gallery-plugin.php:
|
826 |
#, fuzzy
|
827 |
msgid "Edit Attachment"
|
828 |
msgstr "ID priloga"
|
829 |
|
830 |
-
#: gallery-plugin.php:
|
831 |
msgid "Go Pro"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: gallery-plugin.php:
|
835 |
msgid "Pro version"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: gallery-plugin.php:
|
839 |
msgid "This setting is available in Pro version"
|
840 |
msgstr "Ovo podešavanje je dostupno u Pro verziji"
|
841 |
|
842 |
-
#: gallery-plugin.php:
|
843 |
msgid "Edit more details"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: gallery-plugin.php:
|
847 |
#, php-format
|
848 |
msgid "Select %s"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: gallery-plugin.php:
|
852 |
#, php-format
|
853 |
msgid "Edit “%s”"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: gallery-plugin.php:
|
857 |
msgid "Edit"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: gallery-plugin.php:
|
861 |
msgid "Trash"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: gallery-plugin.php:
|
865 |
msgid "Delete Permanently"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: gallery-plugin.php:
|
869 |
#, php-format
|
870 |
msgid "View “%s”"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: gallery-plugin.php:
|
874 |
msgid "View"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: gallery-plugin.php:
|
878 |
#, fuzzy
|
879 |
msgid "Attach"
|
880 |
msgstr "ID priloga"
|
881 |
|
882 |
-
#: gallery-plugin.php:
|
883 |
msgid "Restore"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: gallery-plugin.php:
|
887 |
msgid "Warning"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: gallery-plugin.php:
|
891 |
msgid "You can add only images to the gallery"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: gallery-plugin.php:
|
895 |
#, fuzzy
|
896 |
msgid "no title"
|
897 |
msgstr "Naslov"
|
898 |
|
899 |
-
#: gallery-plugin.php:
|
900 |
#, fuzzy
|
901 |
msgid "Sorry, no gallery found."
|
902 |
msgstr "Nažalost nije pronađeno"
|
903 |
|
904 |
-
#: gallery-plugin.php:
|
905 |
#, fuzzy
|
906 |
msgid ""
|
907 |
"Display an album image with the description and the link to a single gallery "
|
@@ -910,93 +892,104 @@ msgstr ""
|
|
910 |
"Ako želite da prikažete kratak opis koji sadrži snimak ekrana i link ka "
|
911 |
"stranici sa Jedinstvenom galerijom."
|
912 |
|
913 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
914 |
#, fuzzy
|
915 |
msgid "Install Demo Data"
|
916 |
msgstr "Instalacija %s"
|
917 |
|
918 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
919 |
msgid "Remove Demo Data"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
923 |
msgid "Delete demo-data and restore old plugin settings."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
927 |
msgid "Yes, install demo data"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
931 |
msgid "Are you sure you want to install demo data?"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
935 |
msgid "Yes, remove demo data"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
939 |
msgid "Are you sure you want to remove demo data?"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
943 |
#, fuzzy
|
944 |
msgid "No, go back to the settings page"
|
945 |
msgstr "na stranici za podešavanje modula ("
|
946 |
|
947 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
948 |
msgid "Can not get demo data."
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
952 |
msgid "Demo options already installed."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
956 |
msgid "Demo data successfully installed."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
960 |
msgid "View post with shortcodes"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
964 |
msgid "View page with examples"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
968 |
msgid "Installation of demo data with some errors occurred."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
972 |
msgid "Posts data is missing."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
976 |
msgid "Demo data have already been removed."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
980 |
msgid "Demo data successfully removed."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
984 |
msgid "Removing demo data with some errors occurred."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
988 |
msgid "Close notice"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
992 |
#, fuzzy
|
993 |
msgid "Install demo data"
|
994 |
msgstr "Instalacija %s"
|
995 |
|
996 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
997 |
msgid "for an acquaintance with the possibilities of the"
|
998 |
msgstr ""
|
999 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1000 |
#~ msgid "Select a border color"
|
1001 |
#~ msgstr "Izaberite boju okvira"
|
1002 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:20+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www."
|
9 |
"georgijevic.info, andrijanan@webhostinggeeks.com>\n"
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
22 |
+
#: gallery-plugin.php:2010
|
23 |
msgid "Settings"
|
24 |
msgstr "Podešavanja"
|
25 |
|
26 |
+
#: gallery-plugin.php:139
|
27 |
msgid "See images »"
|
28 |
msgstr "Pogledaj sliku »"
|
29 |
|
30 |
+
#: gallery-plugin.php:142
|
31 |
msgid "Return to all albums"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Galleries"
|
36 |
msgstr "Galerije"
|
37 |
|
38 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
39 |
msgid "Gallery"
|
40 |
msgstr "Galerija"
|
41 |
|
42 |
+
#: gallery-plugin.php:322
|
43 |
msgid "Add New Gallery"
|
44 |
msgstr "Dodaj novu Galeriju"
|
45 |
|
46 |
+
#: gallery-plugin.php:323
|
47 |
msgid "Edit Gallery"
|
48 |
msgstr "Uredi Galeriju"
|
49 |
|
50 |
+
#: gallery-plugin.php:324
|
51 |
msgid "New Gallery"
|
52 |
msgstr "Nova Galerija"
|
53 |
|
54 |
+
#: gallery-plugin.php:325
|
55 |
msgid "View Gallery"
|
56 |
msgstr "Pregled Galerije"
|
57 |
|
58 |
+
#: gallery-plugin.php:326
|
59 |
#, fuzzy
|
60 |
msgid "Search Galleries"
|
61 |
msgstr "Galerije"
|
62 |
|
63 |
+
#: gallery-plugin.php:327
|
64 |
msgid "No Gallery found"
|
65 |
msgstr "Nije pronađena Galerija"
|
66 |
|
67 |
+
#: gallery-plugin.php:388
|
68 |
msgid "Gallery Shortcode"
|
69 |
msgstr "Kratak kod za Galeriju"
|
70 |
|
71 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
72 |
#, fuzzy
|
73 |
msgid "Gallery Categories"
|
74 |
msgstr "Veličina slika u galeriji"
|
75 |
|
76 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
77 |
#, fuzzy, php-format
|
78 |
msgid ""
|
79 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
81 |
"Ako želite da dodate Jedinstvenu Galeriju na vašu stranicu ili post, samo "
|
82 |
"kopirajte i prelepite ovaj kratki kod na vaš post ili stranicu:"
|
83 |
|
84 |
+
#: gallery-plugin.php:405
|
85 |
#, php-format
|
86 |
msgid ""
|
87 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
89 |
"please use the shortcode below"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: gallery-plugin.php:411
|
93 |
msgid ""
|
94 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: gallery-plugin.php:414
|
98 |
#, fuzzy
|
99 |
msgid ""
|
100 |
"Use this shortcode to display an album image with the description and the "
|
103 |
"Ako želite da prikažete kratak opis koji sadrži snimak ekrana i link ka "
|
104 |
"stranici sa Jedinstvenom galerijom."
|
105 |
|
106 |
+
#: gallery-plugin.php:416
|
107 |
msgid "Short display"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:433
|
111 |
msgid "Most Used"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
115 |
msgid "Default"
|
116 |
msgstr "Podrazumevano"
|
117 |
|
118 |
+
#: gallery-plugin.php:443
|
119 |
#, fuzzy
|
120 |
msgid "Add New Gallery Category"
|
121 |
msgstr "Dodaj novu Galeriju"
|
122 |
|
123 |
+
#: gallery-plugin.php:448
|
124 |
#, fuzzy
|
125 |
msgid "Install plugin"
|
126 |
msgstr "Instalirani moduli"
|
127 |
|
128 |
+
#: gallery-plugin.php:610
|
129 |
#, fuzzy
|
130 |
msgid "Gallery Category"
|
131 |
msgstr "Veličina slika u galeriji"
|
132 |
|
133 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "Sorry, nothing found."
|
135 |
msgstr "Nažalost nije pronađeno"
|
136 |
|
137 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
138 |
+
#: gallery-plugin.php:3128
|
139 |
msgid "Title"
|
140 |
msgstr "Naslov"
|
141 |
|
142 |
+
#: gallery-plugin.php:1356
|
143 |
msgid "Author"
|
144 |
msgstr "Autor"
|
145 |
|
146 |
+
#: gallery-plugin.php:1357
|
147 |
#, fuzzy
|
148 |
msgid "Shortcode"
|
149 |
msgstr "Kratak kod za Galeriju"
|
150 |
|
151 |
+
#: gallery-plugin.php:1358
|
152 |
#, fuzzy
|
153 |
msgid "Photos"
|
154 |
msgstr "Foto"
|
155 |
|
156 |
+
#: gallery-plugin.php:1359
|
157 |
msgid "Date"
|
158 |
msgstr "Datum"
|
159 |
|
160 |
+
#: gallery-plugin.php:1547
|
161 |
msgid "Settings are saved"
|
162 |
msgstr "Podešavanja su sačuvana"
|
163 |
|
164 |
+
#: gallery-plugin.php:1564
|
165 |
#, fuzzy
|
166 |
msgid "All plugin settings were restored."
|
167 |
msgstr "na stranici za podešavanje modula ("
|
168 |
|
169 |
+
#: gallery-plugin.php:1576
|
170 |
msgid "Gallery Settings"
|
171 |
msgstr "Podešavanja Galerije"
|
172 |
|
173 |
+
#: gallery-plugin.php:1579
|
174 |
msgid "Custom code"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: gallery-plugin.php:1580
|
178 |
msgid "Go PRO"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: gallery-plugin.php:1590
|
182 |
#, fuzzy
|
183 |
msgid "Please enable JavaScript to use the option to renew images."
|
184 |
msgstr ""
|
185 |
"Molimo vas omogućite da JavaScript koristi program za učitavanje fajlova."
|
186 |
|
187 |
+
#: gallery-plugin.php:1602
|
188 |
#, php-format
|
189 |
msgid ""
|
190 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
192 |
"please use the shortcode %s, where * stands for gallery ID"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:1612
|
196 |
+
#, fuzzy
|
197 |
+
msgid "Galleries page"
|
198 |
+
msgstr "Galerije"
|
199 |
+
|
200 |
+
#: gallery-plugin.php:1622
|
201 |
msgid "Number of images in the row"
|
202 |
msgstr "Broj slika u redu"
|
203 |
|
204 |
+
#: gallery-plugin.php:1624
|
205 |
#, fuzzy
|
206 |
msgid ""
|
207 |
"The number of images per row can be less depending on the width of the "
|
208 |
"parent block"
|
209 |
msgstr "Broj slika u redu"
|
210 |
|
211 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
212 |
msgid "Image size"
|
213 |
msgstr "Veličina slike"
|
214 |
|
215 |
+
#: gallery-plugin.php:1631
|
216 |
msgid ""
|
217 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
218 |
"upload a new photo."
|
220 |
"WordPress će kreirati novi umanjeni prikaz sa navedenim dimenzijama kada "
|
221 |
"učitate novu sliku."
|
222 |
|
223 |
+
#: gallery-plugin.php:1633
|
224 |
#, fuzzy
|
225 |
msgid "For the album cover"
|
226 |
msgstr "Veličina slike za naslovnu stranicu albuma"
|
227 |
|
228 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
229 |
msgid "width x height"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
233 |
msgid "in px"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:1637
|
237 |
#, fuzzy
|
238 |
msgid "For thumbnails"
|
239 |
msgstr "Veličina slike za naslovnu stranicu albuma"
|
240 |
|
241 |
+
#: gallery-plugin.php:1641
|
242 |
msgid "Update images for gallery"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
246 |
msgid "Close"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: gallery-plugin.php:1657
|
250 |
#, fuzzy
|
251 |
msgid "For images in the lightbox"
|
252 |
msgstr "Veličina slika u galeriji u lightbox skriptu"
|
253 |
|
254 |
+
#: gallery-plugin.php:1661
|
255 |
msgid "Display a full size image in the lightbox"
|
256 |
msgstr "Prikaži sliku u punoj veličini u lightbox-u"
|
257 |
|
258 |
+
#: gallery-plugin.php:1666
|
259 |
msgid "Crop position"
|
260 |
msgstr "Pozicija za kropovanje"
|
261 |
|
262 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
263 |
msgid "center"
|
264 |
msgstr "centar"
|
265 |
|
266 |
+
#: gallery-plugin.php:1672
|
267 |
msgid "Horizontal"
|
268 |
msgstr "Horizontalno"
|
269 |
|
270 |
+
#: gallery-plugin.php:1678
|
271 |
msgid "Vertical"
|
272 |
msgstr "Vertikalno"
|
273 |
|
274 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
275 |
msgid ""
|
276 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
280 |
msgid "Unlock premium options by upgrading to Pro version"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
284 |
msgid "Start Your Trial"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
288 |
msgid "or"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
292 |
#, fuzzy
|
293 |
msgid "Learn More"
|
294 |
msgstr "Pročitaj više"
|
295 |
|
296 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
297 |
msgid "Display image title"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: gallery-plugin.php:1708
|
301 |
#, fuzzy
|
302 |
msgid ""
|
303 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
304 |
msgstr "Ako želite da prikažete tekst samo u lightbox-u"
|
305 |
|
306 |
+
#: gallery-plugin.php:1712
|
307 |
msgid "Images with border"
|
308 |
msgstr "Slike sa okvirima"
|
309 |
|
310 |
+
#: gallery-plugin.php:1716
|
311 |
msgid "Border width in px, just numbers"
|
312 |
msgstr "Širina okvira u pikselima, samo brojevi"
|
313 |
|
314 |
+
#: gallery-plugin.php:1722
|
315 |
msgid "Sort images"
|
316 |
msgstr "Sortiraj slike"
|
317 |
|
318 |
+
#: gallery-plugin.php:1725
|
319 |
#, fuzzy
|
320 |
msgid "by Attachment ID"
|
321 |
msgstr "ID priloga"
|
322 |
|
323 |
+
#: gallery-plugin.php:1726
|
324 |
#, fuzzy
|
325 |
msgid "by Image Name"
|
326 |
msgstr "Ime slike"
|
327 |
|
328 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
329 |
#, fuzzy
|
330 |
msgid "by Date"
|
331 |
msgstr "Datum"
|
332 |
|
333 |
+
#: gallery-plugin.php:1728
|
334 |
msgid "by Sorting order in the Gallery"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
338 |
msgid "Random"
|
339 |
msgstr "Nasumično"
|
340 |
|
341 |
+
#: gallery-plugin.php:1734
|
342 |
#, fuzzy
|
343 |
msgid "The images sort order"
|
344 |
msgstr "Slike sa okvirima"
|
345 |
|
346 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
347 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
348 |
msgstr ""
|
349 |
"ASC (rastući redosled od najnižih do najviših vrednosti - 1, 2, 3; a, b, c)"
|
350 |
|
351 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
352 |
msgid ""
|
353 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
354 |
msgstr ""
|
355 |
"DESC (opadajući redosled od najviših do najnižih vrednosti - 3, 2, 1; c, b, "
|
356 |
"a)"
|
357 |
|
358 |
+
#: gallery-plugin.php:1743
|
359 |
#, fuzzy
|
360 |
msgid "Sort galleries"
|
361 |
msgstr "Galerije"
|
362 |
|
363 |
+
#: gallery-plugin.php:1746
|
364 |
#, fuzzy
|
365 |
msgid "by Gallery ID"
|
366 |
msgstr "Galerija"
|
367 |
|
368 |
+
#: gallery-plugin.php:1747
|
369 |
#, fuzzy
|
370 |
msgid "by Title"
|
371 |
msgstr "Naslov"
|
372 |
|
373 |
+
#: gallery-plugin.php:1749
|
374 |
msgid "by Last modified date"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: gallery-plugin.php:1750
|
378 |
msgid "by Comment count"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: gallery-plugin.php:1751
|
382 |
#, fuzzy
|
383 |
msgid "by Sorting order (the input field for sorting order)"
|
384 |
msgstr ""
|
385 |
"Raspoređivanje (polje za unos za sortiranje u dijalogu Insert / Upload Media "
|
386 |
"Gallery)"
|
387 |
|
388 |
+
#: gallery-plugin.php:1752
|
389 |
#, fuzzy
|
390 |
msgid "by Author"
|
391 |
msgstr "Autor"
|
392 |
|
393 |
+
#: gallery-plugin.php:1758
|
394 |
msgid "The galleries sort order"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: gallery-plugin.php:1767
|
398 |
msgid "Start slideshow"
|
399 |
msgstr "Započni projekciju slajdova"
|
400 |
|
401 |
+
#: gallery-plugin.php:1770
|
402 |
msgid "Slideshow interval"
|
403 |
msgstr "Interval projekcije slajdova"
|
404 |
|
405 |
+
#: gallery-plugin.php:1770
|
406 |
msgid "(ms)"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: gallery-plugin.php:1774
|
410 |
msgid "Use single lightbox for multiple galleries on one page"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: gallery-plugin.php:1780
|
414 |
msgid "Display the Back link"
|
415 |
msgstr "Prikaži povratni link"
|
416 |
|
417 |
+
#: gallery-plugin.php:1786
|
418 |
msgid "Display the Back link in the shortcode"
|
419 |
msgstr "Prikaži povratni link u kratkom kodu"
|
420 |
|
421 |
+
#: gallery-plugin.php:1792
|
422 |
msgid "The Back link text"
|
423 |
msgstr "Tekst u povratnom linku"
|
424 |
|
425 |
+
#: gallery-plugin.php:1798
|
426 |
msgid "The Back link URL"
|
427 |
msgstr "URL povratnog linka"
|
428 |
|
429 |
+
#: gallery-plugin.php:1801
|
430 |
msgid "Gallery page (Page with Gallery Template)"
|
431 |
msgstr "Stranica galerije (Stranica sa šablonom galerije)"
|
432 |
|
433 |
+
#: gallery-plugin.php:1803
|
434 |
msgid "(Full URL to custom page)"
|
435 |
msgstr "(Puni URL ka korisničkoj stranici)"
|
436 |
|
437 |
+
#: gallery-plugin.php:1808
|
438 |
msgid "The Read More link text"
|
439 |
msgstr "Tekst u linku Pročitaj više"
|
440 |
|
441 |
+
#: gallery-plugin.php:1814
|
442 |
msgid "Add gallery to the search"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
446 |
msgid "Using"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
450 |
msgid "powered by"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
454 |
#, fuzzy
|
455 |
msgid "Activate"
|
456 |
msgstr "Aktivirani moduli"
|
457 |
|
458 |
+
#: gallery-plugin.php:1826
|
459 |
msgid "Download"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
463 |
msgid "Rename gallery post type"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: gallery-plugin.php:1837
|
467 |
msgid ""
|
468 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
469 |
"it now"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: gallery-plugin.php:1838
|
473 |
msgid ""
|
474 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
475 |
"please check settings of your other plugins where 'gallery' post type is used"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:1851
|
479 |
#, fuzzy
|
480 |
msgid "Single gallery view"
|
481 |
msgstr "Taille de la vignette de la galerie"
|
482 |
|
483 |
+
#: gallery-plugin.php:1854
|
484 |
msgid "Grid"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: gallery-plugin.php:1855
|
488 |
msgid "Masonry"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: gallery-plugin.php:1863
|
492 |
#, fuzzy
|
493 |
msgid "Under image"
|
494 |
msgstr "poređaj slike"
|
495 |
|
496 |
+
#: gallery-plugin.php:1864
|
497 |
msgid "By mouse hover"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: gallery-plugin.php:1869
|
501 |
msgid "Use pagination for images"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: gallery-plugin.php:1872
|
505 |
msgid "per page"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: gallery-plugin.php:1876
|
509 |
msgid "Lightbox background"
|
510 |
msgstr "Lightbox pozadina"
|
511 |
|
512 |
+
#: gallery-plugin.php:1879
|
513 |
msgid "Background transparency (from 0 to 1)"
|
514 |
msgstr "Pozadinska transparentnost (od 0 do 1)"
|
515 |
|
516 |
+
#: gallery-plugin.php:1885
|
517 |
msgid ""
|
518 |
"Display all images in the lightbox instead of going into a single gallery"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: gallery-plugin.php:1888
|
522 |
#, php-format
|
523 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1892
|
527 |
msgid "The lightbox helper"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: gallery-plugin.php:1894
|
531 |
msgid "Do not use"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:1895
|
535 |
msgid "Button helper"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: gallery-plugin.php:1896
|
539 |
msgid "Thumbnail helper"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: gallery-plugin.php:1900
|
543 |
#, fuzzy
|
544 |
msgid "Display Like buttons in the lightbox"
|
545 |
msgstr "Afficher une image en taille normale dans le boite"
|
546 |
|
547 |
+
#: gallery-plugin.php:1904
|
548 |
msgid "FaceBook"
|
549 |
msgstr "FaceBook"
|
550 |
|
551 |
+
#: gallery-plugin.php:1905
|
552 |
#, fuzzy
|
553 |
msgid "Twitter"
|
554 |
msgstr "Titre"
|
555 |
|
556 |
+
#: gallery-plugin.php:1906
|
557 |
msgid "Pinterest"
|
558 |
msgstr "Pinterest"
|
559 |
|
560 |
+
#: gallery-plugin.php:1907
|
561 |
msgid "Google +1"
|
562 |
msgstr "Google +1"
|
563 |
|
564 |
+
#: gallery-plugin.php:1910
|
565 |
#, fuzzy
|
566 |
msgid "Show counter"
|
567 |
msgstr "Interval projekcije slajdova"
|
568 |
|
569 |
+
#: gallery-plugin.php:1912
|
570 |
msgid "Align"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: gallery-plugin.php:1914
|
574 |
msgid "left"
|
575 |
msgstr "levo"
|
576 |
|
577 |
+
#: gallery-plugin.php:1921
|
578 |
msgid "Title for lightbox button"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: gallery-plugin.php:1927
|
582 |
#, fuzzy
|
583 |
msgid "Slug for gallery item"
|
584 |
msgstr "Taille de la vignette de la galerie"
|
585 |
|
586 |
+
#: gallery-plugin.php:1929
|
587 |
msgid "for any structure of permalinks except the default structure"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: gallery-plugin.php:1955
|
591 |
msgid "Save Changes"
|
592 |
msgstr "Sačuvaj izmene"
|
593 |
|
594 |
+
#: gallery-plugin.php:1960
|
595 |
msgid ""
|
596 |
"If you install the demo-data, will be created galleries with images, demo-"
|
597 |
"post with available shortcodes and page with a list of all the galleries."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: gallery-plugin.php:1994
|
601 |
msgid "FAQ"
|
602 |
msgstr "FAQ"
|
603 |
|
604 |
+
#: gallery-plugin.php:1995
|
605 |
msgid "Support"
|
606 |
msgstr "Podrška"
|
607 |
|
608 |
+
#: gallery-plugin.php:2032
|
609 |
msgid "Updating images..."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: gallery-plugin.php:2033
|
613 |
#, fuzzy
|
614 |
msgid "No image found."
|
615 |
msgstr "Nije pronađena Galerija"
|
616 |
|
617 |
+
#: gallery-plugin.php:2034
|
618 |
msgid "All images are updated."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: gallery-plugin.php:2035
|
622 |
msgid "Error."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: gallery-plugin.php:2049
|
626 |
msgid ""
|
627 |
"You are about to delete these items from this gallery.\n"
|
628 |
" 'Cancel' to stop, 'OK' to delete."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:2050
|
632 |
msgid ""
|
633 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
634 |
"switching?"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: gallery-plugin.php:2051
|
638 |
msgid "Insert Media"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:2052
|
642 |
msgid "Insert"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: gallery-plugin.php:2064
|
646 |
#, fuzzy
|
647 |
msgid "Learn more"
|
648 |
msgstr "Pročitaj više"
|
649 |
|
650 |
+
#: gallery-plugin.php:2076
|
651 |
#, fuzzy
|
652 |
msgid "Install now"
|
653 |
msgstr "Instalacija %s"
|
654 |
|
655 |
+
#: gallery-plugin.php:2085
|
656 |
msgid "Add multiple gallery categories"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: gallery-plugin.php:2085
|
660 |
msgid ""
|
661 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: gallery-plugin.php:2405
|
665 |
+
msgid "Download high resolution image"
|
666 |
+
msgstr "Preuzmi sliku u visokoj rezoluciji"
|
667 |
+
|
668 |
+
#: gallery-plugin.php:2417
|
669 |
+
msgid "Image"
|
670 |
+
msgstr "Slika"
|
671 |
+
|
672 |
+
#: gallery-plugin.php:2558
|
673 |
#, fuzzy
|
674 |
msgid "Image size not defined"
|
675 |
msgstr "Veličina slike"
|
676 |
|
677 |
+
#: gallery-plugin.php:2573
|
678 |
msgid ""
|
679 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
680 |
"manually reload image."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: gallery-plugin.php:2584
|
684 |
msgid "Image size changes not defined"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
688 |
msgid "Invalid path"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: gallery-plugin.php:2694
|
692 |
msgid "Add images requires JavaScript."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: gallery-plugin.php:2697
|
696 |
msgid "Add Media"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: gallery-plugin.php:2707
|
700 |
msgid "The grid view for the Gallery images requires JavaScript."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: gallery-plugin.php:2707
|
704 |
msgid "Switch to the list view"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: gallery-plugin.php:2734
|
708 |
msgid "List View"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: gallery-plugin.php:2735
|
712 |
msgid "Grid View"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: gallery-plugin.php:2790
|
716 |
msgid "Filter"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: gallery-plugin.php:2794
|
720 |
msgid "Empty Trash"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: gallery-plugin.php:2815
|
724 |
#, fuzzy
|
725 |
msgid "No images found"
|
726 |
msgstr "Nije pronađena Galerija"
|
727 |
|
728 |
+
#: gallery-plugin.php:2867
|
729 |
msgid "Select bulk action"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: gallery-plugin.php:2869
|
733 |
msgid "Bulk Actions"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: gallery-plugin.php:2879
|
737 |
msgid "Apply"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
741 |
#, fuzzy
|
742 |
msgid "Delete from Gallery"
|
743 |
msgstr "Nova Galerija"
|
744 |
|
745 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
746 |
#, fuzzy
|
747 |
msgid "Display link to the original file under each image in the lightbox"
|
748 |
msgstr "Prikaži sliku u punoj veličini u lightbox-u"
|
749 |
|
750 |
+
#: gallery-plugin.php:2908
|
751 |
msgid "Bulk Select"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: gallery-plugin.php:2910
|
755 |
msgid "Cancel Selection"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: gallery-plugin.php:2911
|
759 |
msgid "Delete Selected"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: gallery-plugin.php:2924
|
763 |
msgid "File"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
767 |
msgid "Dimensions"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
771 |
msgid "Alt tag"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
775 |
msgid ""
|
776 |
"The alt attribute specifies an alternate text for an image, if the image "
|
777 |
"cannot be displayed."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
781 |
msgid "Custom URL"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
785 |
msgid ""
|
786 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
787 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: gallery-plugin.php:3006
|
791 |
msgid "Deselect"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: gallery-plugin.php:3012
|
795 |
msgid "File name"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: gallery-plugin.php:3013
|
799 |
msgid "File type"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
803 |
#, fuzzy
|
804 |
msgid "Edit Attachment Info"
|
805 |
msgstr "ID priloga"
|
806 |
|
807 |
+
#: gallery-plugin.php:3017
|
808 |
#, fuzzy
|
809 |
msgid "Edit Attachment"
|
810 |
msgstr "ID priloga"
|
811 |
|
812 |
+
#: gallery-plugin.php:3027
|
813 |
msgid "Go Pro"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: gallery-plugin.php:3027
|
817 |
msgid "Pro version"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: gallery-plugin.php:3030
|
821 |
msgid "This setting is available in Pro version"
|
822 |
msgstr "Ovo podešavanje je dostupno u Pro verziji"
|
823 |
|
824 |
+
#: gallery-plugin.php:3063
|
825 |
msgid "Edit more details"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: gallery-plugin.php:3098
|
829 |
#, php-format
|
830 |
msgid "Select %s"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: gallery-plugin.php:3111
|
834 |
#, php-format
|
835 |
msgid "Edit “%s”"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
839 |
msgid "Edit"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
843 |
msgid "Trash"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
847 |
msgid "Delete Permanently"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
851 |
#, php-format
|
852 |
msgid "View “%s”"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
856 |
msgid "View"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: gallery-plugin.php:3166
|
860 |
#, fuzzy
|
861 |
msgid "Attach"
|
862 |
msgstr "ID priloga"
|
863 |
|
864 |
+
#: gallery-plugin.php:3172
|
865 |
msgid "Restore"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: gallery-plugin.php:3303
|
869 |
msgid "Warning"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: gallery-plugin.php:3303
|
873 |
msgid "You can add only images to the gallery"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: gallery-plugin.php:3345
|
877 |
#, fuzzy
|
878 |
msgid "no title"
|
879 |
msgstr "Naslov"
|
880 |
|
881 |
+
#: gallery-plugin.php:3353
|
882 |
#, fuzzy
|
883 |
msgid "Sorry, no gallery found."
|
884 |
msgstr "Nažalost nije pronađeno"
|
885 |
|
886 |
+
#: gallery-plugin.php:3359
|
887 |
#, fuzzy
|
888 |
msgid ""
|
889 |
"Display an album image with the description and the link to a single gallery "
|
892 |
"Ako želite da prikažete kratak opis koji sadrži snimak ekrana i link ka "
|
893 |
"stranici sa Jedinstvenom galerijom."
|
894 |
|
895 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
896 |
#, fuzzy
|
897 |
msgid "Install Demo Data"
|
898 |
msgstr "Instalacija %s"
|
899 |
|
900 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
901 |
msgid "Remove Demo Data"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
905 |
msgid "Delete demo-data and restore old plugin settings."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
909 |
msgid "Yes, install demo data"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
913 |
msgid "Are you sure you want to install demo data?"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
917 |
msgid "Yes, remove demo data"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
921 |
msgid "Are you sure you want to remove demo data?"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
925 |
#, fuzzy
|
926 |
msgid "No, go back to the settings page"
|
927 |
msgstr "na stranici za podešavanje modula ("
|
928 |
|
929 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
930 |
msgid "Can not get demo data."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
934 |
msgid "Demo options already installed."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
938 |
msgid "Demo data successfully installed."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
942 |
msgid "View post with shortcodes"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
946 |
msgid "View page with examples"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
950 |
msgid "Installation of demo data with some errors occurred."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
954 |
msgid "Posts data is missing."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
958 |
msgid "Demo data have already been removed."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
962 |
msgid "Demo data successfully removed."
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
966 |
msgid "Removing demo data with some errors occurred."
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
970 |
msgid "Close notice"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
974 |
#, fuzzy
|
975 |
msgid "Install demo data"
|
976 |
msgstr "Instalacija %s"
|
977 |
|
978 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
979 |
msgid "for an acquaintance with the possibilities of the"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#, fuzzy
|
983 |
+
#~ msgid ""
|
984 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
985 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
986 |
+
#~ "theme for the correct work of the Gallery plugin"
|
987 |
+
#~ msgstr ""
|
988 |
+
#~ "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php"
|
989 |
+
#~ "\" nisu pronađeni u direktorijumu vaše teme. Molimo vas da ih kopirate iz "
|
990 |
+
#~ "direktorijuma `/wp-content/plugins/gallery-plugin/template/` u "
|
991 |
+
#~ "direktorijum vaše teme za ispravan rad modula Galerija"
|
992 |
+
|
993 |
#~ msgid "Select a border color"
|
994 |
#~ msgstr "Izaberite boju okvira"
|
995 |
|
languages/gallery-plugin-tr.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
|
@@ -17,74 +17,62 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "Settings"
|
23 |
msgstr "Ayarlar"
|
24 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "See images »"
|
27 |
msgstr "Resimleri Gör »"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
-
#, fuzzy, php-format
|
35 |
-
msgid ""
|
36 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
37 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
38 |
-
"theme for the correct work of the Gallery plugin"
|
39 |
-
msgstr ""
|
40 |
-
"\"gallery-template.php\" ve \"gallery-single-template.php\" dosyaları tema "
|
41 |
-
"klasörünüzde bulunamadı. Lütfen bu dosyaları `/wp-content/plugins/gallery-"
|
42 |
-
"plugin/template/` dizininden tema dizininize kopyalayınız. Aksi halde Galeri "
|
43 |
-
"eklentisi doğru çalışmayacaktır."
|
44 |
-
|
45 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galeriler"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galeri"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Yeni Galeri"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Galeriyi Düzenle"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Yeni Galeri"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Galeriyi görüntüle"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
#, fuzzy
|
71 |
msgid "Search Galleries"
|
72 |
msgstr "Galeriler"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Galeri bulunamadı"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Gallery Shortcode"
|
80 |
msgstr "Galeri Kısa Kodu"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Categories"
|
85 |
msgstr "Galeri resim boyutu"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
#, fuzzy, php-format
|
89 |
msgid ""
|
90 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -92,7 +80,7 @@ msgstr ""
|
|
92 |
"Sayfa ya da yazılara tekil galeri eklemek için bu kısa kodu kopyalayıp sayfa "
|
93 |
"ya da yazı içerisine yapıştırın:"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, php-format
|
97 |
msgid ""
|
98 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -100,12 +88,12 @@ msgid ""
|
|
100 |
"please use the shortcode below"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid ""
|
105 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
#, fuzzy
|
110 |
msgid ""
|
111 |
"Use this shortcode to display an album image with the description and the "
|
@@ -114,95 +102,87 @@ msgstr ""
|
|
114 |
"Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz "
|
115 |
"aşağıdaki kodu yapıştırınız"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Short display"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Most Used"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Default"
|
127 |
msgstr "Öntanımlı"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "Add New Gallery Category"
|
132 |
msgstr "Yeni Galeri"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
#, fuzzy
|
136 |
msgid "Install plugin"
|
137 |
msgstr "Yüklü eklentiler"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
#, fuzzy
|
141 |
msgid "Gallery Category"
|
142 |
msgstr "Galeri resim boyutu"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
-
msgid "Download high resolution image"
|
146 |
-
msgstr "Yüksek çözünürlüklü görseli indir"
|
147 |
-
|
148 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
149 |
-
msgid "Image"
|
150 |
-
msgstr "Görsel"
|
151 |
-
|
152 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
153 |
msgid "Sorry, nothing found."
|
154 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Title"
|
159 |
msgstr "Başlık"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Author"
|
163 |
msgstr "Yazar"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
#, fuzzy
|
167 |
msgid "Shortcode"
|
168 |
msgstr "Galeri Kısa Kodu"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
#, fuzzy
|
172 |
msgid "Photos"
|
173 |
msgstr "Fotoğraf"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Date"
|
177 |
msgstr "Tarih"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Settings are saved"
|
181 |
msgstr "Ayarlar kaydedildi"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
#, fuzzy
|
185 |
msgid "All plugin settings were restored."
|
186 |
msgstr "Eklenti ayarları: ("
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Gallery Settings"
|
190 |
msgstr "Galeri ayarları"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Custom code"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Go PRO"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
#, fuzzy
|
202 |
msgid "Please enable JavaScript to use the option to renew images."
|
203 |
msgstr "Uploader'ı kullanmak için JavaScript desteğini aktifleştirmelisiniz."
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -210,22 +190,27 @@ msgid ""
|
|
210 |
"please use the shortcode %s, where * stands for gallery ID"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid "Number of images in the row"
|
215 |
msgstr "Bir satırdaki resim sayısı"
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
#, fuzzy
|
219 |
msgid ""
|
220 |
"The number of images per row can be less depending on the width of the "
|
221 |
"parent block"
|
222 |
msgstr "Bir satırdaki resim sayısı"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "Image size"
|
226 |
msgstr "Resim boyutu"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid ""
|
230 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
231 |
"upload a new photo."
|
@@ -233,666 +218,663 @@ msgstr ""
|
|
233 |
"Yeni bir resim yüklediğinizde Wordpress belirlernen boyutlarda bir thumbnail "
|
234 |
"oluşturacaktır."
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
#, fuzzy
|
238 |
msgid "For the album cover"
|
239 |
msgstr "Albüm kapağı için resim boyuru"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "width x height"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid "in px"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: gallery-plugin.php:
|
250 |
#, fuzzy
|
251 |
msgid "For thumbnails"
|
252 |
msgstr "Albüm kapağı için resim boyuru"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "Update images for gallery"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Close"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#, fuzzy
|
264 |
msgid "For images in the lightbox"
|
265 |
msgstr "Lightbox içerisindeki resim boyutu"
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid "Display a full size image in the lightbox"
|
269 |
msgstr "Lightbox içerisinde tam boyutlu resim göster"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
msgid "Crop position"
|
273 |
msgstr "Kırpma konumu"
|
274 |
|
275 |
-
#: gallery-plugin.php:
|
276 |
msgid "center"
|
277 |
msgstr "orta"
|
278 |
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "Horizontal"
|
281 |
msgstr "Yatay"
|
282 |
|
283 |
-
#: gallery-plugin.php:
|
284 |
msgid "Vertical"
|
285 |
msgstr "Dikey"
|
286 |
|
287 |
-
#: gallery-plugin.php:
|
288 |
msgid ""
|
289 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "Unlock premium options by upgrading to Pro version"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
msgid "Start Your Trial"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "or"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
#, fuzzy
|
306 |
msgid "Learn More"
|
307 |
msgstr "Devamını Oku"
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Display image title"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
#, fuzzy
|
315 |
msgid ""
|
316 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
317 |
msgstr "Eğer lightbox içerisinde yazı göstermek isterseniz"
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Images with border"
|
321 |
msgstr "Çerçeveli resimler"
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Border width in px, just numbers"
|
325 |
msgstr "Çerçeve kalınlığı (px) [sadece sayı yazınız]"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "Sort images"
|
329 |
msgstr "Resimleri sırala"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
#, fuzzy
|
333 |
msgid "by Attachment ID"
|
334 |
msgstr "Ek ID"
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
#, fuzzy
|
338 |
msgid "by Image Name"
|
339 |
msgstr "Resim İsmi"
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
#, fuzzy
|
343 |
msgid "by Date"
|
344 |
msgstr "Tarih"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "by Sorting order in the Gallery"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Random"
|
352 |
msgstr "Rastgele"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
#, fuzzy
|
356 |
msgid "The images sort order"
|
357 |
msgstr "Çerçeveli resimler"
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
361 |
msgstr "Artan Sırada (1,2,3; a,b,c)"
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid ""
|
365 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
366 |
msgstr "Azalan Sırada (3,2,1;c,b,a)"
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
#, fuzzy
|
370 |
msgid "Sort galleries"
|
371 |
msgstr "Galeriler"
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
#, fuzzy
|
375 |
msgid "by Gallery ID"
|
376 |
msgstr "Galeri"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
#, fuzzy
|
380 |
msgid "by Title"
|
381 |
msgstr "Başlık"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "by Last modified date"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "by Comment count"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
#, fuzzy
|
393 |
msgid "by Sorting order (the input field for sorting order)"
|
394 |
msgstr "Sıralama"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
#, fuzzy
|
398 |
msgid "by Author"
|
399 |
msgstr "Yazar"
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
msgid "The galleries sort order"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
msgid "Start slideshow"
|
407 |
msgstr "Slayt gösterisini başlat"
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "Slideshow interval"
|
411 |
msgstr "Slayt gösterisi sıklığı"
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "(ms)"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Use single lightbox for multiple galleries on one page"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "Display the Back link"
|
423 |
msgstr "Geri linkini göster"
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "Display the Back link in the shortcode"
|
427 |
msgstr "Kısa kodda Geri linkini göster"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "The Back link text"
|
431 |
msgstr "Geri linki başlığı"
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "The Back link URL"
|
435 |
msgstr "Geri linki URL'si"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
msgid "Gallery page (Page with Gallery Template)"
|
439 |
msgstr "Galeri sayfası"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
msgid "(Full URL to custom page)"
|
443 |
msgstr "(Özel sayfaya(custom page) tam link)"
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "The Read More link text"
|
447 |
msgstr "Devamını oku linki için etiket"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "Add gallery to the search"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "Using"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "powered by"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
#, fuzzy
|
463 |
msgid "Activate"
|
464 |
msgstr "Etkinleştirilmiş eklentiler"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "Download"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
-
msgid "Rewrite templates after update"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: gallery-plugin.php:1929
|
475 |
-
#, php-format
|
476 |
-
msgid ""
|
477 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
478 |
-
"theme folder and You don't want to rewrite them"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: gallery-plugin.php:1934
|
482 |
msgid "Rename gallery post type"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
msgid ""
|
487 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
488 |
"it now"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: gallery-plugin.php:
|
492 |
msgid ""
|
493 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
494 |
"please check settings of your other plugins where 'gallery' post type is used"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
#, fuzzy
|
499 |
msgid "Single gallery view"
|
500 |
msgstr "Розмір зображення галерея"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "Grid"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "Masonry"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
#, fuzzy
|
512 |
msgid "Under image"
|
513 |
msgstr "görselleri sırala"
|
514 |
|
515 |
-
#: gallery-plugin.php:
|
516 |
msgid "By mouse hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
msgid "Use pagination for images"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: gallery-plugin.php:
|
524 |
msgid "per page"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: gallery-plugin.php:
|
528 |
msgid "Lightbox background"
|
529 |
msgstr "Lightbox arkaplanı"
|
530 |
|
531 |
-
#: gallery-plugin.php:
|
532 |
msgid "Background transparency (from 0 to 1)"
|
533 |
msgstr "Arkaplan saydamlığı (0 - 10 arasında)"
|
534 |
|
535 |
-
#: gallery-plugin.php:
|
536 |
msgid ""
|
537 |
"Display all images in the lightbox instead of going into a single gallery"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
#, php-format
|
542 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "The lightbox helper"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: gallery-plugin.php:
|
550 |
msgid "Do not use"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: gallery-plugin.php:
|
554 |
msgid "Button helper"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: gallery-plugin.php:
|
558 |
msgid "Thumbnail helper"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: gallery-plugin.php:
|
562 |
msgid "Display Like buttons in the lightbox"
|
563 |
msgstr "Lightbox içerisinde beğen butonlarını göster"
|
564 |
|
565 |
-
#: gallery-plugin.php:
|
566 |
msgid "FaceBook"
|
567 |
msgstr "Facebook"
|
568 |
|
569 |
-
#: gallery-plugin.php:
|
570 |
msgid "Twitter"
|
571 |
msgstr "Twitter"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
msgid "Pinterest"
|
575 |
msgstr "Pinterest"
|
576 |
|
577 |
-
#: gallery-plugin.php:
|
578 |
msgid "Google +1"
|
579 |
msgstr "Google +1"
|
580 |
|
581 |
-
#: gallery-plugin.php:
|
582 |
#, fuzzy
|
583 |
msgid "Show counter"
|
584 |
msgstr "Slayt gösterisi sıklığı"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
msgid "Align"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: gallery-plugin.php:
|
591 |
msgid "left"
|
592 |
msgstr "sol"
|
593 |
|
594 |
-
#: gallery-plugin.php:
|
595 |
msgid "Title for lightbox button"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: gallery-plugin.php:
|
599 |
#, fuzzy
|
600 |
msgid "Slug for gallery item"
|
601 |
msgstr "Розмір зображення галерея"
|
602 |
|
603 |
-
#: gallery-plugin.php:
|
604 |
msgid "for any structure of permalinks except the default structure"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: gallery-plugin.php:
|
608 |
msgid "Save Changes"
|
609 |
msgstr "Değişiklikleri Kaydet"
|
610 |
|
611 |
-
#: gallery-plugin.php:
|
612 |
msgid ""
|
613 |
"If you install the demo-data, will be created galleries with images, demo-"
|
614 |
"post with available shortcodes and page with a list of all the galleries."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: gallery-plugin.php:
|
618 |
msgid "FAQ"
|
619 |
msgstr "SSS"
|
620 |
|
621 |
-
#: gallery-plugin.php:
|
622 |
msgid "Support"
|
623 |
msgstr "Destek"
|
624 |
|
625 |
-
#: gallery-plugin.php:
|
626 |
msgid "Updating images..."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: gallery-plugin.php:
|
630 |
#, fuzzy
|
631 |
msgid "No image found."
|
632 |
msgstr "Galeri bulunamadı"
|
633 |
|
634 |
-
#: gallery-plugin.php:
|
635 |
msgid "All images are updated."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: gallery-plugin.php:
|
639 |
msgid "Error."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: gallery-plugin.php:
|
643 |
msgid ""
|
644 |
"You are about to delete these items from this gallery.\n"
|
645 |
" 'Cancel' to stop, 'OK' to delete."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: gallery-plugin.php:
|
649 |
msgid ""
|
650 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
651 |
"switching?"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: gallery-plugin.php:
|
655 |
msgid "Insert Media"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: gallery-plugin.php:
|
659 |
msgid "Insert"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: gallery-plugin.php:
|
663 |
#, fuzzy
|
664 |
msgid "Learn more"
|
665 |
msgstr "Devamını Oku"
|
666 |
|
667 |
-
#: gallery-plugin.php:
|
668 |
#, fuzzy
|
669 |
msgid "Install now"
|
670 |
msgstr "%s yükle"
|
671 |
|
672 |
-
#: gallery-plugin.php:
|
673 |
msgid "Add multiple gallery categories"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: gallery-plugin.php:
|
677 |
msgid ""
|
678 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
#, fuzzy
|
683 |
msgid "Image size not defined"
|
684 |
msgstr "Resim boyutu"
|
685 |
|
686 |
-
#: gallery-plugin.php:
|
687 |
msgid ""
|
688 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
689 |
"manually reload image."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: gallery-plugin.php:
|
693 |
msgid "Image size changes not defined"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: gallery-plugin.php:
|
697 |
msgid "Invalid path"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: gallery-plugin.php:
|
701 |
msgid "Add images requires JavaScript."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: gallery-plugin.php:
|
705 |
msgid "Add Media"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: gallery-plugin.php:
|
709 |
msgid "The grid view for the Gallery images requires JavaScript."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: gallery-plugin.php:
|
713 |
msgid "Switch to the list view"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: gallery-plugin.php:
|
717 |
msgid "List View"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: gallery-plugin.php:
|
721 |
msgid "Grid View"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: gallery-plugin.php:
|
725 |
msgid "Filter"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: gallery-plugin.php:
|
729 |
msgid "Empty Trash"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: gallery-plugin.php:
|
733 |
#, fuzzy
|
734 |
msgid "No images found"
|
735 |
msgstr "Galeri bulunamadı"
|
736 |
|
737 |
-
#: gallery-plugin.php:
|
738 |
msgid "Select bulk action"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: gallery-plugin.php:
|
742 |
msgid "Bulk Actions"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: gallery-plugin.php:
|
746 |
msgid "Apply"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: gallery-plugin.php:
|
750 |
#, fuzzy
|
751 |
msgid "Delete from Gallery"
|
752 |
msgstr "Yeni Galeri"
|
753 |
|
754 |
-
#: gallery-plugin.php:
|
755 |
#, fuzzy
|
756 |
msgid "Display link to the original file under each image in the lightbox"
|
757 |
msgstr "Lightbox içerisinde tam boyutlu resim göster"
|
758 |
|
759 |
-
#: gallery-plugin.php:
|
760 |
msgid "Bulk Select"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: gallery-plugin.php:
|
764 |
msgid "Cancel Selection"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: gallery-plugin.php:
|
768 |
msgid "Delete Selected"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: gallery-plugin.php:
|
772 |
msgid "File"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: gallery-plugin.php:
|
776 |
msgid "Dimensions"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: gallery-plugin.php:
|
780 |
msgid "Alt tag"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: gallery-plugin.php:
|
784 |
msgid ""
|
785 |
"The alt attribute specifies an alternate text for an image, if the image "
|
786 |
"cannot be displayed."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: gallery-plugin.php:
|
790 |
msgid "Custom URL"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: gallery-plugin.php:
|
794 |
msgid ""
|
795 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
796 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: gallery-plugin.php:
|
800 |
msgid "Deselect"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: gallery-plugin.php:
|
804 |
msgid "File name"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: gallery-plugin.php:
|
808 |
msgid "File type"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: gallery-plugin.php:
|
812 |
#, fuzzy
|
813 |
msgid "Edit Attachment Info"
|
814 |
msgstr "Ek ID"
|
815 |
|
816 |
-
#: gallery-plugin.php:
|
817 |
#, fuzzy
|
818 |
msgid "Edit Attachment"
|
819 |
msgstr "Ek ID"
|
820 |
|
821 |
-
#: gallery-plugin.php:
|
822 |
msgid "Go Pro"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: gallery-plugin.php:
|
826 |
msgid "Pro version"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: gallery-plugin.php:
|
830 |
msgid "This setting is available in Pro version"
|
831 |
msgstr "Bu ayar Pro verisyonda yapılabilir"
|
832 |
|
833 |
-
#: gallery-plugin.php:
|
834 |
msgid "Edit more details"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: gallery-plugin.php:
|
838 |
#, php-format
|
839 |
msgid "Select %s"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: gallery-plugin.php:
|
843 |
#, php-format
|
844 |
msgid "Edit “%s”"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: gallery-plugin.php:
|
848 |
msgid "Edit"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: gallery-plugin.php:
|
852 |
msgid "Trash"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: gallery-plugin.php:
|
856 |
msgid "Delete Permanently"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: gallery-plugin.php:
|
860 |
#, php-format
|
861 |
msgid "View “%s”"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: gallery-plugin.php:
|
865 |
msgid "View"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: gallery-plugin.php:
|
869 |
#, fuzzy
|
870 |
msgid "Attach"
|
871 |
msgstr "Ek ID"
|
872 |
|
873 |
-
#: gallery-plugin.php:
|
874 |
msgid "Restore"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: gallery-plugin.php:
|
878 |
msgid "Warning"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: gallery-plugin.php:
|
882 |
msgid "You can add only images to the gallery"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: gallery-plugin.php:
|
886 |
#, fuzzy
|
887 |
msgid "no title"
|
888 |
msgstr "Başlık"
|
889 |
|
890 |
-
#: gallery-plugin.php:
|
891 |
#, fuzzy
|
892 |
msgid "Sorry, no gallery found."
|
893 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
894 |
|
895 |
-
#: gallery-plugin.php:
|
896 |
#, fuzzy
|
897 |
msgid ""
|
898 |
"Display an album image with the description and the link to a single gallery "
|
@@ -901,93 +883,104 @@ msgstr ""
|
|
901 |
"Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz "
|
902 |
"aşağıdaki kodu yapıştırınız"
|
903 |
|
904 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
905 |
#, fuzzy
|
906 |
msgid "Install Demo Data"
|
907 |
msgstr "%s yükle"
|
908 |
|
909 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
910 |
msgid "Remove Demo Data"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
914 |
msgid "Delete demo-data and restore old plugin settings."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
918 |
msgid "Yes, install demo data"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
922 |
msgid "Are you sure you want to install demo data?"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
926 |
msgid "Yes, remove demo data"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
930 |
msgid "Are you sure you want to remove demo data?"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
934 |
#, fuzzy
|
935 |
msgid "No, go back to the settings page"
|
936 |
msgstr "Eklenti ayarları: ("
|
937 |
|
938 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
939 |
msgid "Can not get demo data."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
943 |
msgid "Demo options already installed."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
947 |
msgid "Demo data successfully installed."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
951 |
msgid "View post with shortcodes"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
955 |
msgid "View page with examples"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
959 |
msgid "Installation of demo data with some errors occurred."
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
963 |
msgid "Posts data is missing."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
967 |
msgid "Demo data have already been removed."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
971 |
msgid "Demo data successfully removed."
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
975 |
msgid "Removing demo data with some errors occurred."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
979 |
msgid "Close notice"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
983 |
#, fuzzy
|
984 |
msgid "Install demo data"
|
985 |
msgstr "%s yükle"
|
986 |
|
987 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
988 |
msgid "for an acquaintance with the possibilities of the"
|
989 |
msgstr ""
|
990 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
991 |
#~ msgid "Select a border color"
|
992 |
#~ msgstr "Çerçeve rengi seçiniz"
|
993 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
21 |
+
#: gallery-plugin.php:2010
|
22 |
msgid "Settings"
|
23 |
msgstr "Ayarlar"
|
24 |
|
25 |
+
#: gallery-plugin.php:139
|
26 |
msgid "See images »"
|
27 |
msgstr "Resimleri Gör »"
|
28 |
|
29 |
+
#: gallery-plugin.php:142
|
30 |
msgid "Return to all albums"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Galleries"
|
35 |
msgstr "Galeriler"
|
36 |
|
37 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
38 |
msgid "Gallery"
|
39 |
msgstr "Galeri"
|
40 |
|
41 |
+
#: gallery-plugin.php:322
|
42 |
msgid "Add New Gallery"
|
43 |
msgstr "Yeni Galeri"
|
44 |
|
45 |
+
#: gallery-plugin.php:323
|
46 |
msgid "Edit Gallery"
|
47 |
msgstr "Galeriyi Düzenle"
|
48 |
|
49 |
+
#: gallery-plugin.php:324
|
50 |
msgid "New Gallery"
|
51 |
msgstr "Yeni Galeri"
|
52 |
|
53 |
+
#: gallery-plugin.php:325
|
54 |
msgid "View Gallery"
|
55 |
msgstr "Galeriyi görüntüle"
|
56 |
|
57 |
+
#: gallery-plugin.php:326
|
58 |
#, fuzzy
|
59 |
msgid "Search Galleries"
|
60 |
msgstr "Galeriler"
|
61 |
|
62 |
+
#: gallery-plugin.php:327
|
63 |
msgid "No Gallery found"
|
64 |
msgstr "Galeri bulunamadı"
|
65 |
|
66 |
+
#: gallery-plugin.php:388
|
67 |
msgid "Gallery Shortcode"
|
68 |
msgstr "Galeri Kısa Kodu"
|
69 |
|
70 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
71 |
#, fuzzy
|
72 |
msgid "Gallery Categories"
|
73 |
msgstr "Galeri resim boyutu"
|
74 |
|
75 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
76 |
#, fuzzy, php-format
|
77 |
msgid ""
|
78 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
80 |
"Sayfa ya da yazılara tekil galeri eklemek için bu kısa kodu kopyalayıp sayfa "
|
81 |
"ya da yazı içerisine yapıştırın:"
|
82 |
|
83 |
+
#: gallery-plugin.php:405
|
84 |
#, php-format
|
85 |
msgid ""
|
86 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
88 |
"please use the shortcode below"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: gallery-plugin.php:411
|
92 |
msgid ""
|
93 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: gallery-plugin.php:414
|
97 |
#, fuzzy
|
98 |
msgid ""
|
99 |
"Use this shortcode to display an album image with the description and the "
|
102 |
"Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz "
|
103 |
"aşağıdaki kodu yapıştırınız"
|
104 |
|
105 |
+
#: gallery-plugin.php:416
|
106 |
msgid "Short display"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: gallery-plugin.php:433
|
110 |
msgid "Most Used"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
114 |
msgid "Default"
|
115 |
msgstr "Öntanımlı"
|
116 |
|
117 |
+
#: gallery-plugin.php:443
|
118 |
#, fuzzy
|
119 |
msgid "Add New Gallery Category"
|
120 |
msgstr "Yeni Galeri"
|
121 |
|
122 |
+
#: gallery-plugin.php:448
|
123 |
#, fuzzy
|
124 |
msgid "Install plugin"
|
125 |
msgstr "Yüklü eklentiler"
|
126 |
|
127 |
+
#: gallery-plugin.php:610
|
128 |
#, fuzzy
|
129 |
msgid "Gallery Category"
|
130 |
msgstr "Galeri resim boyutu"
|
131 |
|
132 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Sorry, nothing found."
|
134 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
135 |
|
136 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
137 |
+
#: gallery-plugin.php:3128
|
138 |
msgid "Title"
|
139 |
msgstr "Başlık"
|
140 |
|
141 |
+
#: gallery-plugin.php:1356
|
142 |
msgid "Author"
|
143 |
msgstr "Yazar"
|
144 |
|
145 |
+
#: gallery-plugin.php:1357
|
146 |
#, fuzzy
|
147 |
msgid "Shortcode"
|
148 |
msgstr "Galeri Kısa Kodu"
|
149 |
|
150 |
+
#: gallery-plugin.php:1358
|
151 |
#, fuzzy
|
152 |
msgid "Photos"
|
153 |
msgstr "Fotoğraf"
|
154 |
|
155 |
+
#: gallery-plugin.php:1359
|
156 |
msgid "Date"
|
157 |
msgstr "Tarih"
|
158 |
|
159 |
+
#: gallery-plugin.php:1547
|
160 |
msgid "Settings are saved"
|
161 |
msgstr "Ayarlar kaydedildi"
|
162 |
|
163 |
+
#: gallery-plugin.php:1564
|
164 |
#, fuzzy
|
165 |
msgid "All plugin settings were restored."
|
166 |
msgstr "Eklenti ayarları: ("
|
167 |
|
168 |
+
#: gallery-plugin.php:1576
|
169 |
msgid "Gallery Settings"
|
170 |
msgstr "Galeri ayarları"
|
171 |
|
172 |
+
#: gallery-plugin.php:1579
|
173 |
msgid "Custom code"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: gallery-plugin.php:1580
|
177 |
msgid "Go PRO"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: gallery-plugin.php:1590
|
181 |
#, fuzzy
|
182 |
msgid "Please enable JavaScript to use the option to renew images."
|
183 |
msgstr "Uploader'ı kullanmak için JavaScript desteğini aktifleştirmelisiniz."
|
184 |
|
185 |
+
#: gallery-plugin.php:1602
|
186 |
#, php-format
|
187 |
msgid ""
|
188 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
190 |
"please use the shortcode %s, where * stands for gallery ID"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: gallery-plugin.php:1612
|
194 |
+
#, fuzzy
|
195 |
+
msgid "Galleries page"
|
196 |
+
msgstr "Galeriler"
|
197 |
+
|
198 |
+
#: gallery-plugin.php:1622
|
199 |
msgid "Number of images in the row"
|
200 |
msgstr "Bir satırdaki resim sayısı"
|
201 |
|
202 |
+
#: gallery-plugin.php:1624
|
203 |
#, fuzzy
|
204 |
msgid ""
|
205 |
"The number of images per row can be less depending on the width of the "
|
206 |
"parent block"
|
207 |
msgstr "Bir satırdaki resim sayısı"
|
208 |
|
209 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
210 |
msgid "Image size"
|
211 |
msgstr "Resim boyutu"
|
212 |
|
213 |
+
#: gallery-plugin.php:1631
|
214 |
msgid ""
|
215 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
216 |
"upload a new photo."
|
218 |
"Yeni bir resim yüklediğinizde Wordpress belirlernen boyutlarda bir thumbnail "
|
219 |
"oluşturacaktır."
|
220 |
|
221 |
+
#: gallery-plugin.php:1633
|
222 |
#, fuzzy
|
223 |
msgid "For the album cover"
|
224 |
msgstr "Albüm kapağı için resim boyuru"
|
225 |
|
226 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
227 |
msgid "width x height"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
231 |
msgid "in px"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:1637
|
235 |
#, fuzzy
|
236 |
msgid "For thumbnails"
|
237 |
msgstr "Albüm kapağı için resim boyuru"
|
238 |
|
239 |
+
#: gallery-plugin.php:1641
|
240 |
msgid "Update images for gallery"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
244 |
msgid "Close"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:1657
|
248 |
#, fuzzy
|
249 |
msgid "For images in the lightbox"
|
250 |
msgstr "Lightbox içerisindeki resim boyutu"
|
251 |
|
252 |
+
#: gallery-plugin.php:1661
|
253 |
msgid "Display a full size image in the lightbox"
|
254 |
msgstr "Lightbox içerisinde tam boyutlu resim göster"
|
255 |
|
256 |
+
#: gallery-plugin.php:1666
|
257 |
msgid "Crop position"
|
258 |
msgstr "Kırpma konumu"
|
259 |
|
260 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
261 |
msgid "center"
|
262 |
msgstr "orta"
|
263 |
|
264 |
+
#: gallery-plugin.php:1672
|
265 |
msgid "Horizontal"
|
266 |
msgstr "Yatay"
|
267 |
|
268 |
+
#: gallery-plugin.php:1678
|
269 |
msgid "Vertical"
|
270 |
msgstr "Dikey"
|
271 |
|
272 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
273 |
msgid ""
|
274 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
278 |
msgid "Unlock premium options by upgrading to Pro version"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
282 |
msgid "Start Your Trial"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
286 |
msgid "or"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
290 |
#, fuzzy
|
291 |
msgid "Learn More"
|
292 |
msgstr "Devamını Oku"
|
293 |
|
294 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
295 |
msgid "Display image title"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1708
|
299 |
#, fuzzy
|
300 |
msgid ""
|
301 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
302 |
msgstr "Eğer lightbox içerisinde yazı göstermek isterseniz"
|
303 |
|
304 |
+
#: gallery-plugin.php:1712
|
305 |
msgid "Images with border"
|
306 |
msgstr "Çerçeveli resimler"
|
307 |
|
308 |
+
#: gallery-plugin.php:1716
|
309 |
msgid "Border width in px, just numbers"
|
310 |
msgstr "Çerçeve kalınlığı (px) [sadece sayı yazınız]"
|
311 |
|
312 |
+
#: gallery-plugin.php:1722
|
313 |
msgid "Sort images"
|
314 |
msgstr "Resimleri sırala"
|
315 |
|
316 |
+
#: gallery-plugin.php:1725
|
317 |
#, fuzzy
|
318 |
msgid "by Attachment ID"
|
319 |
msgstr "Ek ID"
|
320 |
|
321 |
+
#: gallery-plugin.php:1726
|
322 |
#, fuzzy
|
323 |
msgid "by Image Name"
|
324 |
msgstr "Resim İsmi"
|
325 |
|
326 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
327 |
#, fuzzy
|
328 |
msgid "by Date"
|
329 |
msgstr "Tarih"
|
330 |
|
331 |
+
#: gallery-plugin.php:1728
|
332 |
msgid "by Sorting order in the Gallery"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
336 |
msgid "Random"
|
337 |
msgstr "Rastgele"
|
338 |
|
339 |
+
#: gallery-plugin.php:1734
|
340 |
#, fuzzy
|
341 |
msgid "The images sort order"
|
342 |
msgstr "Çerçeveli resimler"
|
343 |
|
344 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
345 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
346 |
msgstr "Artan Sırada (1,2,3; a,b,c)"
|
347 |
|
348 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
349 |
msgid ""
|
350 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
351 |
msgstr "Azalan Sırada (3,2,1;c,b,a)"
|
352 |
|
353 |
+
#: gallery-plugin.php:1743
|
354 |
#, fuzzy
|
355 |
msgid "Sort galleries"
|
356 |
msgstr "Galeriler"
|
357 |
|
358 |
+
#: gallery-plugin.php:1746
|
359 |
#, fuzzy
|
360 |
msgid "by Gallery ID"
|
361 |
msgstr "Galeri"
|
362 |
|
363 |
+
#: gallery-plugin.php:1747
|
364 |
#, fuzzy
|
365 |
msgid "by Title"
|
366 |
msgstr "Başlık"
|
367 |
|
368 |
+
#: gallery-plugin.php:1749
|
369 |
msgid "by Last modified date"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: gallery-plugin.php:1750
|
373 |
msgid "by Comment count"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: gallery-plugin.php:1751
|
377 |
#, fuzzy
|
378 |
msgid "by Sorting order (the input field for sorting order)"
|
379 |
msgstr "Sıralama"
|
380 |
|
381 |
+
#: gallery-plugin.php:1752
|
382 |
#, fuzzy
|
383 |
msgid "by Author"
|
384 |
msgstr "Yazar"
|
385 |
|
386 |
+
#: gallery-plugin.php:1758
|
387 |
msgid "The galleries sort order"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: gallery-plugin.php:1767
|
391 |
msgid "Start slideshow"
|
392 |
msgstr "Slayt gösterisini başlat"
|
393 |
|
394 |
+
#: gallery-plugin.php:1770
|
395 |
msgid "Slideshow interval"
|
396 |
msgstr "Slayt gösterisi sıklığı"
|
397 |
|
398 |
+
#: gallery-plugin.php:1770
|
399 |
msgid "(ms)"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: gallery-plugin.php:1774
|
403 |
msgid "Use single lightbox for multiple galleries on one page"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: gallery-plugin.php:1780
|
407 |
msgid "Display the Back link"
|
408 |
msgstr "Geri linkini göster"
|
409 |
|
410 |
+
#: gallery-plugin.php:1786
|
411 |
msgid "Display the Back link in the shortcode"
|
412 |
msgstr "Kısa kodda Geri linkini göster"
|
413 |
|
414 |
+
#: gallery-plugin.php:1792
|
415 |
msgid "The Back link text"
|
416 |
msgstr "Geri linki başlığı"
|
417 |
|
418 |
+
#: gallery-plugin.php:1798
|
419 |
msgid "The Back link URL"
|
420 |
msgstr "Geri linki URL'si"
|
421 |
|
422 |
+
#: gallery-plugin.php:1801
|
423 |
msgid "Gallery page (Page with Gallery Template)"
|
424 |
msgstr "Galeri sayfası"
|
425 |
|
426 |
+
#: gallery-plugin.php:1803
|
427 |
msgid "(Full URL to custom page)"
|
428 |
msgstr "(Özel sayfaya(custom page) tam link)"
|
429 |
|
430 |
+
#: gallery-plugin.php:1808
|
431 |
msgid "The Read More link text"
|
432 |
msgstr "Devamını oku linki için etiket"
|
433 |
|
434 |
+
#: gallery-plugin.php:1814
|
435 |
msgid "Add gallery to the search"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
439 |
msgid "Using"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
443 |
msgid "powered by"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
447 |
#, fuzzy
|
448 |
msgid "Activate"
|
449 |
msgstr "Etkinleştirilmiş eklentiler"
|
450 |
|
451 |
+
#: gallery-plugin.php:1826
|
452 |
msgid "Download"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
msgid "Rename gallery post type"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1837
|
460 |
msgid ""
|
461 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
462 |
"it now"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: gallery-plugin.php:1838
|
466 |
msgid ""
|
467 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
468 |
"please check settings of your other plugins where 'gallery' post type is used"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: gallery-plugin.php:1851
|
472 |
#, fuzzy
|
473 |
msgid "Single gallery view"
|
474 |
msgstr "Розмір зображення галерея"
|
475 |
|
476 |
+
#: gallery-plugin.php:1854
|
477 |
msgid "Grid"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: gallery-plugin.php:1855
|
481 |
msgid "Masonry"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: gallery-plugin.php:1863
|
485 |
#, fuzzy
|
486 |
msgid "Under image"
|
487 |
msgstr "görselleri sırala"
|
488 |
|
489 |
+
#: gallery-plugin.php:1864
|
490 |
msgid "By mouse hover"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:1869
|
494 |
msgid "Use pagination for images"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:1872
|
498 |
msgid "per page"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: gallery-plugin.php:1876
|
502 |
msgid "Lightbox background"
|
503 |
msgstr "Lightbox arkaplanı"
|
504 |
|
505 |
+
#: gallery-plugin.php:1879
|
506 |
msgid "Background transparency (from 0 to 1)"
|
507 |
msgstr "Arkaplan saydamlığı (0 - 10 arasında)"
|
508 |
|
509 |
+
#: gallery-plugin.php:1885
|
510 |
msgid ""
|
511 |
"Display all images in the lightbox instead of going into a single gallery"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1888
|
515 |
#, php-format
|
516 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1892
|
520 |
msgid "The lightbox helper"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:1894
|
524 |
msgid "Do not use"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:1895
|
528 |
msgid "Button helper"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:1896
|
532 |
msgid "Thumbnail helper"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: gallery-plugin.php:1900
|
536 |
msgid "Display Like buttons in the lightbox"
|
537 |
msgstr "Lightbox içerisinde beğen butonlarını göster"
|
538 |
|
539 |
+
#: gallery-plugin.php:1904
|
540 |
msgid "FaceBook"
|
541 |
msgstr "Facebook"
|
542 |
|
543 |
+
#: gallery-plugin.php:1905
|
544 |
msgid "Twitter"
|
545 |
msgstr "Twitter"
|
546 |
|
547 |
+
#: gallery-plugin.php:1906
|
548 |
msgid "Pinterest"
|
549 |
msgstr "Pinterest"
|
550 |
|
551 |
+
#: gallery-plugin.php:1907
|
552 |
msgid "Google +1"
|
553 |
msgstr "Google +1"
|
554 |
|
555 |
+
#: gallery-plugin.php:1910
|
556 |
#, fuzzy
|
557 |
msgid "Show counter"
|
558 |
msgstr "Slayt gösterisi sıklığı"
|
559 |
|
560 |
+
#: gallery-plugin.php:1912
|
561 |
msgid "Align"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: gallery-plugin.php:1914
|
565 |
msgid "left"
|
566 |
msgstr "sol"
|
567 |
|
568 |
+
#: gallery-plugin.php:1921
|
569 |
msgid "Title for lightbox button"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: gallery-plugin.php:1927
|
573 |
#, fuzzy
|
574 |
msgid "Slug for gallery item"
|
575 |
msgstr "Розмір зображення галерея"
|
576 |
|
577 |
+
#: gallery-plugin.php:1929
|
578 |
msgid "for any structure of permalinks except the default structure"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: gallery-plugin.php:1955
|
582 |
msgid "Save Changes"
|
583 |
msgstr "Değişiklikleri Kaydet"
|
584 |
|
585 |
+
#: gallery-plugin.php:1960
|
586 |
msgid ""
|
587 |
"If you install the demo-data, will be created galleries with images, demo-"
|
588 |
"post with available shortcodes and page with a list of all the galleries."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: gallery-plugin.php:1994
|
592 |
msgid "FAQ"
|
593 |
msgstr "SSS"
|
594 |
|
595 |
+
#: gallery-plugin.php:1995
|
596 |
msgid "Support"
|
597 |
msgstr "Destek"
|
598 |
|
599 |
+
#: gallery-plugin.php:2032
|
600 |
msgid "Updating images..."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: gallery-plugin.php:2033
|
604 |
#, fuzzy
|
605 |
msgid "No image found."
|
606 |
msgstr "Galeri bulunamadı"
|
607 |
|
608 |
+
#: gallery-plugin.php:2034
|
609 |
msgid "All images are updated."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: gallery-plugin.php:2035
|
613 |
msgid "Error."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: gallery-plugin.php:2049
|
617 |
msgid ""
|
618 |
"You are about to delete these items from this gallery.\n"
|
619 |
" 'Cancel' to stop, 'OK' to delete."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: gallery-plugin.php:2050
|
623 |
msgid ""
|
624 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
625 |
"switching?"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:2051
|
629 |
msgid "Insert Media"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: gallery-plugin.php:2052
|
633 |
msgid "Insert"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: gallery-plugin.php:2064
|
637 |
#, fuzzy
|
638 |
msgid "Learn more"
|
639 |
msgstr "Devamını Oku"
|
640 |
|
641 |
+
#: gallery-plugin.php:2076
|
642 |
#, fuzzy
|
643 |
msgid "Install now"
|
644 |
msgstr "%s yükle"
|
645 |
|
646 |
+
#: gallery-plugin.php:2085
|
647 |
msgid "Add multiple gallery categories"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: gallery-plugin.php:2085
|
651 |
msgid ""
|
652 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: gallery-plugin.php:2405
|
656 |
+
msgid "Download high resolution image"
|
657 |
+
msgstr "Yüksek çözünürlüklü görseli indir"
|
658 |
+
|
659 |
+
#: gallery-plugin.php:2417
|
660 |
+
msgid "Image"
|
661 |
+
msgstr "Görsel"
|
662 |
+
|
663 |
+
#: gallery-plugin.php:2558
|
664 |
#, fuzzy
|
665 |
msgid "Image size not defined"
|
666 |
msgstr "Resim boyutu"
|
667 |
|
668 |
+
#: gallery-plugin.php:2573
|
669 |
msgid ""
|
670 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
671 |
"manually reload image."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: gallery-plugin.php:2584
|
675 |
msgid "Image size changes not defined"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
679 |
msgid "Invalid path"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: gallery-plugin.php:2694
|
683 |
msgid "Add images requires JavaScript."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: gallery-plugin.php:2697
|
687 |
msgid "Add Media"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: gallery-plugin.php:2707
|
691 |
msgid "The grid view for the Gallery images requires JavaScript."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: gallery-plugin.php:2707
|
695 |
msgid "Switch to the list view"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: gallery-plugin.php:2734
|
699 |
msgid "List View"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: gallery-plugin.php:2735
|
703 |
msgid "Grid View"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: gallery-plugin.php:2790
|
707 |
msgid "Filter"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: gallery-plugin.php:2794
|
711 |
msgid "Empty Trash"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: gallery-plugin.php:2815
|
715 |
#, fuzzy
|
716 |
msgid "No images found"
|
717 |
msgstr "Galeri bulunamadı"
|
718 |
|
719 |
+
#: gallery-plugin.php:2867
|
720 |
msgid "Select bulk action"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: gallery-plugin.php:2869
|
724 |
msgid "Bulk Actions"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: gallery-plugin.php:2879
|
728 |
msgid "Apply"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
732 |
#, fuzzy
|
733 |
msgid "Delete from Gallery"
|
734 |
msgstr "Yeni Galeri"
|
735 |
|
736 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
737 |
#, fuzzy
|
738 |
msgid "Display link to the original file under each image in the lightbox"
|
739 |
msgstr "Lightbox içerisinde tam boyutlu resim göster"
|
740 |
|
741 |
+
#: gallery-plugin.php:2908
|
742 |
msgid "Bulk Select"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: gallery-plugin.php:2910
|
746 |
msgid "Cancel Selection"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: gallery-plugin.php:2911
|
750 |
msgid "Delete Selected"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: gallery-plugin.php:2924
|
754 |
msgid "File"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
758 |
msgid "Dimensions"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
762 |
msgid "Alt tag"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
766 |
msgid ""
|
767 |
"The alt attribute specifies an alternate text for an image, if the image "
|
768 |
"cannot be displayed."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
772 |
msgid "Custom URL"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
776 |
msgid ""
|
777 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
778 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: gallery-plugin.php:3006
|
782 |
msgid "Deselect"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: gallery-plugin.php:3012
|
786 |
msgid "File name"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: gallery-plugin.php:3013
|
790 |
msgid "File type"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
794 |
#, fuzzy
|
795 |
msgid "Edit Attachment Info"
|
796 |
msgstr "Ek ID"
|
797 |
|
798 |
+
#: gallery-plugin.php:3017
|
799 |
#, fuzzy
|
800 |
msgid "Edit Attachment"
|
801 |
msgstr "Ek ID"
|
802 |
|
803 |
+
#: gallery-plugin.php:3027
|
804 |
msgid "Go Pro"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: gallery-plugin.php:3027
|
808 |
msgid "Pro version"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: gallery-plugin.php:3030
|
812 |
msgid "This setting is available in Pro version"
|
813 |
msgstr "Bu ayar Pro verisyonda yapılabilir"
|
814 |
|
815 |
+
#: gallery-plugin.php:3063
|
816 |
msgid "Edit more details"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: gallery-plugin.php:3098
|
820 |
#, php-format
|
821 |
msgid "Select %s"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: gallery-plugin.php:3111
|
825 |
#, php-format
|
826 |
msgid "Edit “%s”"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
830 |
msgid "Edit"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
834 |
msgid "Trash"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
838 |
msgid "Delete Permanently"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
842 |
#, php-format
|
843 |
msgid "View “%s”"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
847 |
msgid "View"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: gallery-plugin.php:3166
|
851 |
#, fuzzy
|
852 |
msgid "Attach"
|
853 |
msgstr "Ek ID"
|
854 |
|
855 |
+
#: gallery-plugin.php:3172
|
856 |
msgid "Restore"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: gallery-plugin.php:3303
|
860 |
msgid "Warning"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: gallery-plugin.php:3303
|
864 |
msgid "You can add only images to the gallery"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: gallery-plugin.php:3345
|
868 |
#, fuzzy
|
869 |
msgid "no title"
|
870 |
msgstr "Başlık"
|
871 |
|
872 |
+
#: gallery-plugin.php:3353
|
873 |
#, fuzzy
|
874 |
msgid "Sorry, no gallery found."
|
875 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
876 |
|
877 |
+
#: gallery-plugin.php:3359
|
878 |
#, fuzzy
|
879 |
msgid ""
|
880 |
"Display an album image with the description and the link to a single gallery "
|
883 |
"Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz "
|
884 |
"aşağıdaki kodu yapıştırınız"
|
885 |
|
886 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
887 |
#, fuzzy
|
888 |
msgid "Install Demo Data"
|
889 |
msgstr "%s yükle"
|
890 |
|
891 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
892 |
msgid "Remove Demo Data"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
896 |
msgid "Delete demo-data and restore old plugin settings."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
900 |
msgid "Yes, install demo data"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
904 |
msgid "Are you sure you want to install demo data?"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
908 |
msgid "Yes, remove demo data"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
912 |
msgid "Are you sure you want to remove demo data?"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
916 |
#, fuzzy
|
917 |
msgid "No, go back to the settings page"
|
918 |
msgstr "Eklenti ayarları: ("
|
919 |
|
920 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
921 |
msgid "Can not get demo data."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
925 |
msgid "Demo options already installed."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
929 |
msgid "Demo data successfully installed."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
933 |
msgid "View post with shortcodes"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
937 |
msgid "View page with examples"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
941 |
msgid "Installation of demo data with some errors occurred."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
945 |
msgid "Posts data is missing."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
949 |
msgid "Demo data have already been removed."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
953 |
msgid "Demo data successfully removed."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
957 |
msgid "Removing demo data with some errors occurred."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
961 |
msgid "Close notice"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
965 |
#, fuzzy
|
966 |
msgid "Install demo data"
|
967 |
msgstr "%s yükle"
|
968 |
|
969 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
970 |
msgid "for an acquaintance with the possibilities of the"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#, fuzzy
|
974 |
+
#~ msgid ""
|
975 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
976 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
977 |
+
#~ "theme for the correct work of the Gallery plugin"
|
978 |
+
#~ msgstr ""
|
979 |
+
#~ "\"gallery-template.php\" ve \"gallery-single-template.php\" dosyaları "
|
980 |
+
#~ "tema klasörünüzde bulunamadı. Lütfen bu dosyaları `/wp-content/plugins/"
|
981 |
+
#~ "gallery-plugin/template/` dizininden tema dizininize kopyalayınız. Aksi "
|
982 |
+
#~ "halde Galeri eklentisi doğru çalışmayacaktır."
|
983 |
+
|
984 |
#~ msgid "Select a border color"
|
985 |
#~ msgstr "Çerçeve rengi seçiniz"
|
986 |
|
languages/gallery-plugin-uk.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -16,70 +16,60 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "Settings"
|
22 |
msgstr "Налаштування"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "See images »"
|
26 |
msgstr "Дивитися зображення »"
|
27 |
|
28 |
-
#: gallery-plugin.php:
|
29 |
msgid "Return to all albums"
|
30 |
msgstr "Повернутись до всіх альбомів"
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
-
#, php-format
|
34 |
-
msgid ""
|
35 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
36 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
37 |
-
"theme for the correct work of the Gallery plugin"
|
38 |
-
msgstr ""
|
39 |
-
"В папці вашої теми файли '%s' та '%s' не знайдені. Для правильної роботи "
|
40 |
-
"плагіну Gallery, будь ласка, скопіюйте їх з папки `%s` в папку вашої теми"
|
41 |
-
|
42 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
43 |
msgid "Galleries"
|
44 |
msgstr "Галереї"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "Gallery"
|
48 |
msgstr "Галерея"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "Add New Gallery"
|
52 |
msgstr "Додати нову галерею"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Edit Gallery"
|
56 |
msgstr "Редагувати галерею"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "New Gallery"
|
60 |
msgstr "Нова галерея"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "View Gallery"
|
64 |
msgstr "Переглянути галерею"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Шукати Галереї"
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Галерею не знайдено"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Gallery Shortcode"
|
76 |
msgstr "Шорткод галереї"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Gallery Categories"
|
80 |
msgstr "Категорії галерей"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -87,7 +77,7 @@ msgstr ""
|
|
87 |
"Якщо ви хочете додати галерею на вашу сторінку або пост, будь ласка, "
|
88 |
"використовуйте кнопку %s"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
#, php-format
|
92 |
msgid ""
|
93 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -98,101 +88,93 @@ msgstr ""
|
|
98 |
"в блоці редагування контенту в режимі Visual. Якщо кнопка не відображається, "
|
99 |
"будь ласка, використовуйте шорткод"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid ""
|
103 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
104 |
msgstr "Додати цей шорткод у сторінку, пост чи віджет для відображення галереї"
|
105 |
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid ""
|
108 |
"Use this shortcode to display an album image with the description and the "
|
109 |
"link to a single gallery page"
|
110 |
msgstr ""
|
111 |
"Вивести короткий опис зі скріншотом та посиланням на сторінку з галереєю"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Short display"
|
115 |
msgstr "Скорочене відображення"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Most Used"
|
119 |
msgstr "Часто вживані"
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Default"
|
123 |
msgstr "за замовчуванням"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Add New Gallery Category"
|
127 |
msgstr "Додати нову категорію галерей"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Install plugin"
|
131 |
msgstr "Встановити плагін"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Gallery Category"
|
135 |
msgstr "Категорія галерей"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
-
msgid "Download high resolution image"
|
139 |
-
msgstr "Завантажити зображення у високій якості"
|
140 |
-
|
141 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
142 |
-
msgid "Image"
|
143 |
-
msgstr "Зображення"
|
144 |
-
|
145 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
146 |
msgid "Sorry, nothing found."
|
147 |
msgstr "Вибачте, нічого не знайдено."
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Title"
|
152 |
msgstr "Назва"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Author"
|
156 |
msgstr "Автор"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Shortcode"
|
160 |
msgstr "Шорткод"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Photos"
|
164 |
msgstr "Фото"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Date"
|
168 |
msgstr "Дата"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Settings are saved"
|
172 |
msgstr "Налаштування збережено"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "All plugin settings were restored."
|
176 |
msgstr "Налаштування плагіну відновлені."
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Gallery Settings"
|
180 |
msgstr "Налаштування Gallery"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Custom code"
|
184 |
msgstr "Користувацький код"
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Go PRO"
|
188 |
msgstr "Придбати PRO версію"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Please enable JavaScript to use the option to renew images."
|
192 |
msgstr ""
|
193 |
"Будь ласка, увімкніть JavaScript для використання опції оновлення зображень."
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -203,11 +185,15 @@ msgstr ""
|
|
203 |
"в блоці редагування контенту в режимі Visual. Якщо кнопка не відображається, "
|
204 |
"будь ласка, використовуйте шорткод %s, де * позначає ID галереї"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
207 |
msgid "Number of images in the row"
|
208 |
msgstr "Кількість зображень у рядку"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid ""
|
212 |
"The number of images per row can be less depending on the width of the "
|
213 |
"parent block"
|
@@ -215,11 +201,11 @@ msgstr ""
|
|
215 |
"Кількість зображень в рядку може бути менше в залежності від ширини "
|
216 |
"батьківського блоку"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Image size"
|
220 |
msgstr "Розмір зображення"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid ""
|
224 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
225 |
"upload a new photo."
|
@@ -227,250 +213,237 @@ msgstr ""
|
|
227 |
"Коли ви завантажите нове зображення, WordPress створить іконки відповідно до "
|
228 |
"заданих розмірів."
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "For the album cover"
|
232 |
msgstr "Для обкладинки альбому"
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "width x height"
|
236 |
msgstr "ширина x висота"
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "in px"
|
240 |
msgstr "в px"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "For thumbnails"
|
244 |
msgstr "Для мініатюр"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Update images for gallery"
|
248 |
msgstr "Оновити всі зображення галереї"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Close"
|
252 |
msgstr "Закрити"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "For images in the lightbox"
|
256 |
msgstr "Для зображень в лайтбоксі"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Display a full size image in the lightbox"
|
260 |
msgstr "Відображати повне зображення в лайтбоксі"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
msgid "Crop position"
|
264 |
msgstr "Обрізання"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "center"
|
268 |
msgstr "центр"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Horizontal"
|
272 |
msgstr "Горизонтальна"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "Vertical"
|
276 |
msgstr "Вертикальна"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid ""
|
280 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
281 |
msgstr ""
|
282 |
"Якщо ви перейшли на PRO версію, всі налаштування і галереї буде збережено."
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Unlock premium options by upgrading to Pro version"
|
286 |
msgstr "Відкрийте додаткові опції, перейшовши на Pro версію"
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Start Your Trial"
|
290 |
msgstr "Отримати пробну версію"
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "or"
|
294 |
msgstr "або"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
msgid "Learn More"
|
298 |
msgstr "Дізнатись більше"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Display image title"
|
302 |
msgstr "Відображати заголовки зображень"
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid ""
|
306 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
307 |
msgstr ""
|
308 |
"Вимкніть прапорець, якщо ви хочете відображати заголовки зображень тільки у "
|
309 |
"лайтбоксі"
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
msgid "Images with border"
|
313 |
msgstr "Зображення з рамкою"
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "Border width in px, just numbers"
|
317 |
msgstr "Ширина рамки у пікселях, тільки числа"
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Sort images"
|
321 |
msgstr "Сортувати зображення"
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "by Attachment ID"
|
325 |
msgstr "по ID зображення"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "by Image Name"
|
329 |
msgstr "по Назві зображення"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "by Date"
|
333 |
msgstr "по Даті"
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "by Sorting order in the Gallery"
|
337 |
msgstr "по Порядку сортування в галереї"
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "Random"
|
341 |
msgstr "Довільно"
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid "The images sort order"
|
345 |
msgstr "Порядок сортування зображень"
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
349 |
msgstr ""
|
350 |
"ASC (в порядку зростання від найменшого до найбільшого значення - 1, 2, 3; "
|
351 |
"а, б, в)"
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid ""
|
355 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
356 |
msgstr ""
|
357 |
"DESC (в порядку зменшення від найбільшого до найменшого значення - 3, 2, 1; "
|
358 |
"в, б, а)"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Sort galleries"
|
362 |
msgstr "Сортувати галереї"
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "by Gallery ID"
|
366 |
msgstr "по ID галереї"
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "by Title"
|
370 |
msgstr "по Назві"
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "by Last modified date"
|
374 |
msgstr "по Даті останньої зміни"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "by Comment count"
|
378 |
msgstr "за Кількістю коментарів"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "by Sorting order (the input field for sorting order)"
|
382 |
msgstr "по Порядку сортування (поле введення для сортування)"
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "by Author"
|
386 |
msgstr "по Автору"
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "The galleries sort order"
|
390 |
msgstr "Порядок сортування галерей"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Start slideshow"
|
394 |
msgstr "Розпочати слайд-шоу"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "Slideshow interval"
|
398 |
msgstr "Інтервал між слайдами"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "(ms)"
|
402 |
msgstr "(мс)"
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
msgid "Use single lightbox for multiple galleries on one page"
|
406 |
msgstr "Використовувати один лайтбокс для багатьох галерей на сторінці"
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
msgid "Display the Back link"
|
410 |
msgstr "Відображати посилання Повернутися"
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
msgid "Display the Back link in the shortcode"
|
414 |
msgstr "Відображати посилання Повернутися у шорткоді"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "The Back link text"
|
418 |
msgstr "Текст для посилання Повернутися"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "The Back link URL"
|
422 |
msgstr "URL для посилання Повернутися"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "Gallery page (Page with Gallery Template)"
|
426 |
msgstr "Сторінка галереї (сторінка з шаблоном галереї)"
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "(Full URL to custom page)"
|
430 |
msgstr "(Повне посилання на сторінку користувача)"
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
msgid "The Read More link text"
|
434 |
msgstr "Текст для посилання Дізнатися більше"
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
msgid "Add gallery to the search"
|
438 |
msgstr "Додати галерею до пошуку"
|
439 |
|
440 |
-
#: gallery-plugin.php:
|
441 |
msgid "Using"
|
442 |
msgstr "Використовуючи"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "powered by"
|
446 |
msgstr "розроблений"
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "Activate"
|
450 |
msgstr "Активувати"
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "Download"
|
454 |
msgstr "Завантажити"
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
-
msgid "Rewrite templates after update"
|
458 |
-
msgstr "Перезаписати шаблони після оновлення"
|
459 |
-
|
460 |
-
#: gallery-plugin.php:1929
|
461 |
-
#, php-format
|
462 |
-
msgid ""
|
463 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
464 |
-
"theme folder and You don't want to rewrite them"
|
465 |
-
msgstr ""
|
466 |
-
"Вимкніть прапорець, якщо ви редагували файл '%s' або '%s' в папці тем та не "
|
467 |
-
"хочете щоб вони були оновлені"
|
468 |
-
|
469 |
-
#: gallery-plugin.php:1934
|
470 |
msgid "Rename gallery post type"
|
471 |
msgstr "Перейменувати тип поста \"gallery\""
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid ""
|
475 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
476 |
"it now"
|
@@ -478,7 +451,7 @@ msgstr ""
|
|
478 |
"Для того, щоб уникнути конфліктів з іншими плагінами, будь ласка, увімкніть "
|
479 |
"прапорець, щоб перейменувати його зараз"
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid ""
|
483 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
484 |
"please check settings of your other plugins where 'gallery' post type is used"
|
@@ -487,118 +460,118 @@ msgstr ""
|
|
487 |
"перейменування, будь ласка, перевірте налаштування інших ваших плагінів, де "
|
488 |
"використовується тип поста \"gallery\""
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
msgid "Single gallery view"
|
492 |
msgstr "Вид галереї"
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
msgid "Grid"
|
496 |
msgstr "Сітка"
|
497 |
|
498 |
-
#: gallery-plugin.php:
|
499 |
msgid "Masonry"
|
500 |
msgstr "Masonry"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "Under image"
|
504 |
msgstr "Під зображенням"
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "By mouse hover"
|
508 |
msgstr "За наведення миші"
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
msgid "Use pagination for images"
|
512 |
msgstr "Використовувати пагінацію для зображень"
|
513 |
|
514 |
-
#: gallery-plugin.php:
|
515 |
msgid "per page"
|
516 |
msgstr "на сторінці"
|
517 |
|
518 |
-
#: gallery-plugin.php:
|
519 |
msgid "Lightbox background"
|
520 |
msgstr "Фон лайтбоксу"
|
521 |
|
522 |
-
#: gallery-plugin.php:
|
523 |
msgid "Background transparency (from 0 to 1)"
|
524 |
msgstr "Прозорість фону (від 0 до 1)"
|
525 |
|
526 |
-
#: gallery-plugin.php:
|
527 |
msgid ""
|
528 |
"Display all images in the lightbox instead of going into a single gallery"
|
529 |
msgstr ""
|
530 |
"Відображати всі зображення у лайтбоксі замість переходу до окремої галереї"
|
531 |
|
532 |
-
#: gallery-plugin.php:
|
533 |
#, php-format
|
534 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
535 |
msgstr "Коли використовується темплейт галереї або шорткод з параметром `%s`"
|
536 |
|
537 |
-
#: gallery-plugin.php:
|
538 |
msgid "The lightbox helper"
|
539 |
msgstr "Допоміжний елемент лайтбоксу"
|
540 |
|
541 |
-
#: gallery-plugin.php:
|
542 |
msgid "Do not use"
|
543 |
msgstr "Не використовувати"
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "Button helper"
|
547 |
msgstr "Допоміжні кнопки"
|
548 |
|
549 |
-
#: gallery-plugin.php:
|
550 |
msgid "Thumbnail helper"
|
551 |
msgstr "Допоміжні мініатюри"
|
552 |
|
553 |
-
#: gallery-plugin.php:
|
554 |
msgid "Display Like buttons in the lightbox"
|
555 |
msgstr "Відображати кнопки Подобається у лайтбоксі"
|
556 |
|
557 |
-
#: gallery-plugin.php:
|
558 |
msgid "FaceBook"
|
559 |
msgstr "FaceBook"
|
560 |
|
561 |
-
#: gallery-plugin.php:
|
562 |
msgid "Twitter"
|
563 |
msgstr "Twitter"
|
564 |
|
565 |
-
#: gallery-plugin.php:
|
566 |
msgid "Pinterest"
|
567 |
msgstr "Pinterest"
|
568 |
|
569 |
-
#: gallery-plugin.php:
|
570 |
msgid "Google +1"
|
571 |
msgstr "Google +1"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
msgid "Show counter"
|
575 |
msgstr "Відображати лічильник"
|
576 |
|
577 |
-
#: gallery-plugin.php:
|
578 |
msgid "Align"
|
579 |
msgstr "Вирівнювання"
|
580 |
|
581 |
-
#: gallery-plugin.php:
|
582 |
msgid "left"
|
583 |
msgstr "зліва"
|
584 |
|
585 |
-
#: gallery-plugin.php:
|
586 |
msgid "Title for lightbox button"
|
587 |
msgstr "Назва кнопки лайтбоксу"
|
588 |
|
589 |
-
#: gallery-plugin.php:
|
590 |
msgid "Slug for gallery item"
|
591 |
msgstr "Назва для елементів галереї"
|
592 |
|
593 |
-
#: gallery-plugin.php:
|
594 |
msgid "for any structure of permalinks except the default structure"
|
595 |
msgstr "для будь-якої структури посилань, за винятком стандартної структури"
|
596 |
|
597 |
-
#: gallery-plugin.php:
|
598 |
msgid "Save Changes"
|
599 |
msgstr "Зберегти зміни"
|
600 |
|
601 |
-
#: gallery-plugin.php:
|
602 |
msgid ""
|
603 |
"If you install the demo-data, will be created galleries with images, demo-"
|
604 |
"post with available shortcodes and page with a list of all the galleries."
|
@@ -606,31 +579,31 @@ msgstr ""
|
|
606 |
"Під час встановки демо-даних будуть створені галереї із зображеннями, пост "
|
607 |
"із доступними шорткодами та сторінка зі списком всіх галерей."
|
608 |
|
609 |
-
#: gallery-plugin.php:
|
610 |
msgid "FAQ"
|
611 |
msgstr "FAQ"
|
612 |
|
613 |
-
#: gallery-plugin.php:
|
614 |
msgid "Support"
|
615 |
msgstr "Підтримка"
|
616 |
|
617 |
-
#: gallery-plugin.php:
|
618 |
msgid "Updating images..."
|
619 |
msgstr "Оновлення зображень…"
|
620 |
|
621 |
-
#: gallery-plugin.php:
|
622 |
msgid "No image found."
|
623 |
msgstr "Зображення не знайдено."
|
624 |
|
625 |
-
#: gallery-plugin.php:
|
626 |
msgid "All images are updated."
|
627 |
msgstr "Всі зображення оновлено."
|
628 |
|
629 |
-
#: gallery-plugin.php:
|
630 |
msgid "Error."
|
631 |
msgstr "Помилка."
|
632 |
|
633 |
-
#: gallery-plugin.php:
|
634 |
msgid ""
|
635 |
"You are about to delete these items from this gallery.\n"
|
636 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -638,7 +611,7 @@ msgstr ""
|
|
638 |
"Ви збираєтесь видалити вибрані елементи з галереї. \n"
|
639 |
"'Відміна' - скасувати, 'OK' - видалити."
|
640 |
|
641 |
-
#: gallery-plugin.php:
|
642 |
msgid ""
|
643 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
644 |
"switching?"
|
@@ -646,38 +619,46 @@ msgstr ""
|
|
646 |
"При переході на інший режим, всі незбережіні дані будуть втрачені. Зберегти "
|
647 |
"їх перед переходом?"
|
648 |
|
649 |
-
#: gallery-plugin.php:
|
650 |
msgid "Insert Media"
|
651 |
msgstr "Додати Медіа"
|
652 |
|
653 |
-
#: gallery-plugin.php:
|
654 |
msgid "Insert"
|
655 |
msgstr "Додати"
|
656 |
|
657 |
-
#: gallery-plugin.php:
|
658 |
msgid "Learn more"
|
659 |
msgstr "Докладніше"
|
660 |
|
661 |
-
#: gallery-plugin.php:
|
662 |
msgid "Install now"
|
663 |
msgstr "Встановити"
|
664 |
|
665 |
-
#: gallery-plugin.php:
|
666 |
msgid "Add multiple gallery categories"
|
667 |
msgstr "Додати декілька категорій галереї"
|
668 |
|
669 |
-
#: gallery-plugin.php:
|
670 |
msgid ""
|
671 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
672 |
msgstr ""
|
673 |
"Встановити плагін Gallery Categories, щоб мати змогу додати необмежену "
|
674 |
"кількість категорій."
|
675 |
|
676 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
msgid "Image size not defined"
|
678 |
msgstr "Розмір зображення не визначено"
|
679 |
|
680 |
-
#: gallery-plugin.php:
|
681 |
msgid ""
|
682 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
683 |
"manually reload image."
|
@@ -685,96 +666,96 @@ msgstr ""
|
|
685 |
"Можливі оновлення лише файлів у форматах PNG, JPEG, GIF, WPMP чи XBM. В "
|
686 |
"інших випадках, будь ласка, перезавантажте зображення вручну."
|
687 |
|
688 |
-
#: gallery-plugin.php:
|
689 |
msgid "Image size changes not defined"
|
690 |
msgstr "Зміни розміру зображення не визначено"
|
691 |
|
692 |
-
#: gallery-plugin.php:
|
693 |
msgid "Invalid path"
|
694 |
msgstr "Невірний шлях"
|
695 |
|
696 |
-
#: gallery-plugin.php:
|
697 |
msgid "Add images requires JavaScript."
|
698 |
msgstr "Додавання зображень вимагає використання JavaScript."
|
699 |
|
700 |
-
#: gallery-plugin.php:
|
701 |
msgid "Add Media"
|
702 |
msgstr "Додати Медіа"
|
703 |
|
704 |
-
#: gallery-plugin.php:
|
705 |
msgid "The grid view for the Gallery images requires JavaScript."
|
706 |
msgstr "Перегляд зображень таблицею вимагає використання JavaScript."
|
707 |
|
708 |
-
#: gallery-plugin.php:
|
709 |
msgid "Switch to the list view"
|
710 |
msgstr "Увімкнути перегляд списком"
|
711 |
|
712 |
-
#: gallery-plugin.php:
|
713 |
msgid "List View"
|
714 |
msgstr "Перегляд списком"
|
715 |
|
716 |
-
#: gallery-plugin.php:
|
717 |
msgid "Grid View"
|
718 |
msgstr "Перегляд таблицею"
|
719 |
|
720 |
-
#: gallery-plugin.php:
|
721 |
msgid "Filter"
|
722 |
msgstr "Фільтр"
|
723 |
|
724 |
-
#: gallery-plugin.php:
|
725 |
msgid "Empty Trash"
|
726 |
msgstr "Очистити Корзину"
|
727 |
|
728 |
-
#: gallery-plugin.php:
|
729 |
msgid "No images found"
|
730 |
msgstr "Зображення не знайдено"
|
731 |
|
732 |
-
#: gallery-plugin.php:
|
733 |
msgid "Select bulk action"
|
734 |
msgstr "Вибрати гуртові дії"
|
735 |
|
736 |
-
#: gallery-plugin.php:
|
737 |
msgid "Bulk Actions"
|
738 |
msgstr "Гуртові дії"
|
739 |
|
740 |
-
#: gallery-plugin.php:
|
741 |
msgid "Apply"
|
742 |
msgstr "Застосувати"
|
743 |
|
744 |
-
#: gallery-plugin.php:
|
745 |
msgid "Delete from Gallery"
|
746 |
msgstr "Видалити з галереї"
|
747 |
|
748 |
-
#: gallery-plugin.php:
|
749 |
msgid "Display link to the original file under each image in the lightbox"
|
750 |
msgstr ""
|
751 |
"Відображати лінк на оригінальний файл під кожним зображенням в лайтбоксі"
|
752 |
|
753 |
-
#: gallery-plugin.php:
|
754 |
msgid "Bulk Select"
|
755 |
msgstr "Гуртовий вибір"
|
756 |
|
757 |
-
#: gallery-plugin.php:
|
758 |
msgid "Cancel Selection"
|
759 |
msgstr "Скасувати вибір"
|
760 |
|
761 |
-
#: gallery-plugin.php:
|
762 |
msgid "Delete Selected"
|
763 |
msgstr "Видалити вибране"
|
764 |
|
765 |
-
#: gallery-plugin.php:
|
766 |
msgid "File"
|
767 |
msgstr "Файл"
|
768 |
|
769 |
-
#: gallery-plugin.php:
|
770 |
msgid "Dimensions"
|
771 |
msgstr "Розміри"
|
772 |
|
773 |
-
#: gallery-plugin.php:
|
774 |
msgid "Alt tag"
|
775 |
msgstr "Тег \"Alt\""
|
776 |
|
777 |
-
#: gallery-plugin.php:
|
778 |
msgid ""
|
779 |
"The alt attribute specifies an alternate text for an image, if the image "
|
780 |
"cannot be displayed."
|
@@ -782,11 +763,11 @@ msgstr ""
|
|
782 |
"Атрибут Alt визначає альтернативний текст для зображення, якщо зображення не "
|
783 |
"може бути відображене."
|
784 |
|
785 |
-
#: gallery-plugin.php:
|
786 |
msgid "Custom URL"
|
787 |
msgstr "Кастомний URL"
|
788 |
|
789 |
-
#: gallery-plugin.php:
|
790 |
msgid ""
|
791 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
792 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
@@ -795,188 +776,206 @@ msgstr ""
|
|
795 |
"якщо поле заповнене), або зображення відкриється в лайтбоксі (якщо поле не "
|
796 |
"заповнене)"
|
797 |
|
798 |
-
#: gallery-plugin.php:
|
799 |
msgid "Deselect"
|
800 |
msgstr "Скасувати вибір"
|
801 |
|
802 |
-
#: gallery-plugin.php:
|
803 |
msgid "File name"
|
804 |
msgstr "Назва файлу"
|
805 |
|
806 |
-
#: gallery-plugin.php:
|
807 |
msgid "File type"
|
808 |
msgstr "Тип файлу"
|
809 |
|
810 |
-
#: gallery-plugin.php:
|
811 |
msgid "Edit Attachment Info"
|
812 |
msgstr "Редагувати інформацію про прикріплений файл"
|
813 |
|
814 |
-
#: gallery-plugin.php:
|
815 |
msgid "Edit Attachment"
|
816 |
msgstr "Редагувати прикріплений файл"
|
817 |
|
818 |
-
#: gallery-plugin.php:
|
819 |
msgid "Go Pro"
|
820 |
msgstr "Придбати Pro версію"
|
821 |
|
822 |
-
#: gallery-plugin.php:
|
823 |
msgid "Pro version"
|
824 |
msgstr "Pro версія"
|
825 |
|
826 |
-
#: gallery-plugin.php:
|
827 |
msgid "This setting is available in Pro version"
|
828 |
msgstr "Ці установки доступні у PRO версії плагіну"
|
829 |
|
830 |
-
#: gallery-plugin.php:
|
831 |
msgid "Edit more details"
|
832 |
msgstr "Редагувати деталі"
|
833 |
|
834 |
-
#: gallery-plugin.php:
|
835 |
#, php-format
|
836 |
msgid "Select %s"
|
837 |
msgstr "Вибрати %s"
|
838 |
|
839 |
-
#: gallery-plugin.php:
|
840 |
#, php-format
|
841 |
msgid "Edit “%s”"
|
842 |
msgstr "Редагувати “%s”"
|
843 |
|
844 |
-
#: gallery-plugin.php:
|
845 |
msgid "Edit"
|
846 |
msgstr "Редагувати"
|
847 |
|
848 |
-
#: gallery-plugin.php:
|
849 |
msgid "Trash"
|
850 |
msgstr "Корзина"
|
851 |
|
852 |
-
#: gallery-plugin.php:
|
853 |
msgid "Delete Permanently"
|
854 |
msgstr "Видалити Повністю"
|
855 |
|
856 |
-
#: gallery-plugin.php:
|
857 |
#, php-format
|
858 |
msgid "View “%s”"
|
859 |
msgstr "Перегляд “%s”"
|
860 |
|
861 |
-
#: gallery-plugin.php:
|
862 |
msgid "View"
|
863 |
msgstr "Перегляд"
|
864 |
|
865 |
-
#: gallery-plugin.php:
|
866 |
msgid "Attach"
|
867 |
msgstr "Прикріпити"
|
868 |
|
869 |
-
#: gallery-plugin.php:
|
870 |
msgid "Restore"
|
871 |
msgstr "Відновити"
|
872 |
|
873 |
-
#: gallery-plugin.php:
|
874 |
msgid "Warning"
|
875 |
msgstr "Увага"
|
876 |
|
877 |
-
#: gallery-plugin.php:
|
878 |
msgid "You can add only images to the gallery"
|
879 |
msgstr "В галерею можна додати лише зображення"
|
880 |
|
881 |
-
#: gallery-plugin.php:
|
882 |
msgid "no title"
|
883 |
msgstr "без назви"
|
884 |
|
885 |
-
#: gallery-plugin.php:
|
886 |
msgid "Sorry, no gallery found."
|
887 |
msgstr "Вибачте, жодної галереї не знайдено."
|
888 |
|
889 |
-
#: gallery-plugin.php:
|
890 |
msgid ""
|
891 |
"Display an album image with the description and the link to a single gallery "
|
892 |
"page"
|
893 |
msgstr ""
|
894 |
"Відображати короткий опис зі скріншотом та посиланням на сторінку з галереєю"
|
895 |
|
896 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
897 |
msgid "Install Demo Data"
|
898 |
msgstr "Встановити демо-дані"
|
899 |
|
900 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
901 |
msgid "Remove Demo Data"
|
902 |
msgstr "Видалити демо-дані"
|
903 |
|
904 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
905 |
msgid "Delete demo-data and restore old plugin settings."
|
906 |
msgstr "Видалити демо-дані та відновити старі налаштування плагіну."
|
907 |
|
908 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
909 |
msgid "Yes, install demo data"
|
910 |
msgstr "Так, встановити демо-дані"
|
911 |
|
912 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
913 |
msgid "Are you sure you want to install demo data?"
|
914 |
msgstr "Ві впевнені, що бажаєте встановити демо-дані?"
|
915 |
|
916 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
917 |
msgid "Yes, remove demo data"
|
918 |
msgstr "Так, видалити демо-дані"
|
919 |
|
920 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
921 |
msgid "Are you sure you want to remove demo data?"
|
922 |
msgstr "Ви впевнені, що бажаєте видалити демо-дані?"
|
923 |
|
924 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
925 |
msgid "No, go back to the settings page"
|
926 |
msgstr "Ні, повернутися на сторінку налаштувань"
|
927 |
|
928 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
929 |
msgid "Can not get demo data."
|
930 |
msgstr "Неможливо отримати демо-дані."
|
931 |
|
932 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
933 |
msgid "Demo options already installed."
|
934 |
msgstr "Демо-дані вже встановлені."
|
935 |
|
936 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
937 |
msgid "Demo data successfully installed."
|
938 |
msgstr "Демо-дані успішно встановлені."
|
939 |
|
940 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
941 |
msgid "View post with shortcodes"
|
942 |
msgstr "Перегляньте запис із шорткодами "
|
943 |
|
944 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
945 |
msgid "View page with examples"
|
946 |
msgstr "Перегляньте сторінку із прикладами"
|
947 |
|
948 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
949 |
msgid "Installation of demo data with some errors occurred."
|
950 |
msgstr "Установка демо-даних пройшла з помилками."
|
951 |
|
952 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
953 |
msgid "Posts data is missing."
|
954 |
msgstr "Контент запису відсутній."
|
955 |
|
956 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
957 |
msgid "Demo data have already been removed."
|
958 |
msgstr "Демо-дані вже видалені. "
|
959 |
|
960 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
961 |
msgid "Demo data successfully removed."
|
962 |
msgstr "Демо-дані успішно видалені."
|
963 |
|
964 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
965 |
msgid "Removing demo data with some errors occurred."
|
966 |
msgstr "Видалення демо-данних пройшло з помилками."
|
967 |
|
968 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
969 |
msgid "Close notice"
|
970 |
msgstr "Закрити повідомлення"
|
971 |
|
972 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
973 |
msgid "Install demo data"
|
974 |
msgstr "Встановити демо-дані"
|
975 |
|
976 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
977 |
msgid "for an acquaintance with the possibilities of the"
|
978 |
msgstr "для ознайомлення із можливостями плагіну"
|
979 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
980 |
#~ msgid "Select a border color"
|
981 |
#~ msgstr "Виберіть колір рамки"
|
982 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
20 |
+
#: gallery-plugin.php:2010
|
21 |
msgid "Settings"
|
22 |
msgstr "Налаштування"
|
23 |
|
24 |
+
#: gallery-plugin.php:139
|
25 |
msgid "See images »"
|
26 |
msgstr "Дивитися зображення »"
|
27 |
|
28 |
+
#: gallery-plugin.php:142
|
29 |
msgid "Return to all albums"
|
30 |
msgstr "Повернутись до всіх альбомів"
|
31 |
|
32 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Galleries"
|
34 |
msgstr "Галереї"
|
35 |
|
36 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
37 |
msgid "Gallery"
|
38 |
msgstr "Галерея"
|
39 |
|
40 |
+
#: gallery-plugin.php:322
|
41 |
msgid "Add New Gallery"
|
42 |
msgstr "Додати нову галерею"
|
43 |
|
44 |
+
#: gallery-plugin.php:323
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "Редагувати галерею"
|
47 |
|
48 |
+
#: gallery-plugin.php:324
|
49 |
msgid "New Gallery"
|
50 |
msgstr "Нова галерея"
|
51 |
|
52 |
+
#: gallery-plugin.php:325
|
53 |
msgid "View Gallery"
|
54 |
msgstr "Переглянути галерею"
|
55 |
|
56 |
+
#: gallery-plugin.php:326
|
57 |
msgid "Search Galleries"
|
58 |
msgstr "Шукати Галереї"
|
59 |
|
60 |
+
#: gallery-plugin.php:327
|
61 |
msgid "No Gallery found"
|
62 |
msgstr "Галерею не знайдено"
|
63 |
|
64 |
+
#: gallery-plugin.php:388
|
65 |
msgid "Gallery Shortcode"
|
66 |
msgstr "Шорткод галереї"
|
67 |
|
68 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
69 |
msgid "Gallery Categories"
|
70 |
msgstr "Категорії галерей"
|
71 |
|
72 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
73 |
#, php-format
|
74 |
msgid ""
|
75 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
77 |
"Якщо ви хочете додати галерею на вашу сторінку або пост, будь ласка, "
|
78 |
"використовуйте кнопку %s"
|
79 |
|
80 |
+
#: gallery-plugin.php:405
|
81 |
#, php-format
|
82 |
msgid ""
|
83 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
88 |
"в блоці редагування контенту в режимі Visual. Якщо кнопка не відображається, "
|
89 |
"будь ласка, використовуйте шорткод"
|
90 |
|
91 |
+
#: gallery-plugin.php:411
|
92 |
msgid ""
|
93 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
94 |
msgstr "Додати цей шорткод у сторінку, пост чи віджет для відображення галереї"
|
95 |
|
96 |
+
#: gallery-plugin.php:414
|
97 |
msgid ""
|
98 |
"Use this shortcode to display an album image with the description and the "
|
99 |
"link to a single gallery page"
|
100 |
msgstr ""
|
101 |
"Вивести короткий опис зі скріншотом та посиланням на сторінку з галереєю"
|
102 |
|
103 |
+
#: gallery-plugin.php:416
|
104 |
msgid "Short display"
|
105 |
msgstr "Скорочене відображення"
|
106 |
|
107 |
+
#: gallery-plugin.php:433
|
108 |
msgid "Most Used"
|
109 |
msgstr "Часто вживані"
|
110 |
|
111 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
112 |
msgid "Default"
|
113 |
msgstr "за замовчуванням"
|
114 |
|
115 |
+
#: gallery-plugin.php:443
|
116 |
msgid "Add New Gallery Category"
|
117 |
msgstr "Додати нову категорію галерей"
|
118 |
|
119 |
+
#: gallery-plugin.php:448
|
120 |
msgid "Install plugin"
|
121 |
msgstr "Встановити плагін"
|
122 |
|
123 |
+
#: gallery-plugin.php:610
|
124 |
msgid "Gallery Category"
|
125 |
msgstr "Категорія галерей"
|
126 |
|
127 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "Sorry, nothing found."
|
129 |
msgstr "Вибачте, нічого не знайдено."
|
130 |
|
131 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
132 |
+
#: gallery-plugin.php:3128
|
133 |
msgid "Title"
|
134 |
msgstr "Назва"
|
135 |
|
136 |
+
#: gallery-plugin.php:1356
|
137 |
msgid "Author"
|
138 |
msgstr "Автор"
|
139 |
|
140 |
+
#: gallery-plugin.php:1357
|
141 |
msgid "Shortcode"
|
142 |
msgstr "Шорткод"
|
143 |
|
144 |
+
#: gallery-plugin.php:1358
|
145 |
msgid "Photos"
|
146 |
msgstr "Фото"
|
147 |
|
148 |
+
#: gallery-plugin.php:1359
|
149 |
msgid "Date"
|
150 |
msgstr "Дата"
|
151 |
|
152 |
+
#: gallery-plugin.php:1547
|
153 |
msgid "Settings are saved"
|
154 |
msgstr "Налаштування збережено"
|
155 |
|
156 |
+
#: gallery-plugin.php:1564
|
157 |
msgid "All plugin settings were restored."
|
158 |
msgstr "Налаштування плагіну відновлені."
|
159 |
|
160 |
+
#: gallery-plugin.php:1576
|
161 |
msgid "Gallery Settings"
|
162 |
msgstr "Налаштування Gallery"
|
163 |
|
164 |
+
#: gallery-plugin.php:1579
|
165 |
msgid "Custom code"
|
166 |
msgstr "Користувацький код"
|
167 |
|
168 |
+
#: gallery-plugin.php:1580
|
169 |
msgid "Go PRO"
|
170 |
msgstr "Придбати PRO версію"
|
171 |
|
172 |
+
#: gallery-plugin.php:1590
|
173 |
msgid "Please enable JavaScript to use the option to renew images."
|
174 |
msgstr ""
|
175 |
"Будь ласка, увімкніть JavaScript для використання опції оновлення зображень."
|
176 |
|
177 |
+
#: gallery-plugin.php:1602
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
185 |
"в блоці редагування контенту в режимі Visual. Якщо кнопка не відображається, "
|
186 |
"будь ласка, використовуйте шорткод %s, де * позначає ID галереї"
|
187 |
|
188 |
+
#: gallery-plugin.php:1612
|
189 |
+
msgid "Galleries page"
|
190 |
+
msgstr "Сторінка галерей"
|
191 |
+
|
192 |
+
#: gallery-plugin.php:1622
|
193 |
msgid "Number of images in the row"
|
194 |
msgstr "Кількість зображень у рядку"
|
195 |
|
196 |
+
#: gallery-plugin.php:1624
|
197 |
msgid ""
|
198 |
"The number of images per row can be less depending on the width of the "
|
199 |
"parent block"
|
201 |
"Кількість зображень в рядку може бути менше в залежності від ширини "
|
202 |
"батьківського блоку"
|
203 |
|
204 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
205 |
msgid "Image size"
|
206 |
msgstr "Розмір зображення"
|
207 |
|
208 |
+
#: gallery-plugin.php:1631
|
209 |
msgid ""
|
210 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
211 |
"upload a new photo."
|
213 |
"Коли ви завантажите нове зображення, WordPress створить іконки відповідно до "
|
214 |
"заданих розмірів."
|
215 |
|
216 |
+
#: gallery-plugin.php:1633
|
217 |
msgid "For the album cover"
|
218 |
msgstr "Для обкладинки альбому"
|
219 |
|
220 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
221 |
msgid "width x height"
|
222 |
msgstr "ширина x висота"
|
223 |
|
224 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
225 |
msgid "in px"
|
226 |
msgstr "в px"
|
227 |
|
228 |
+
#: gallery-plugin.php:1637
|
229 |
msgid "For thumbnails"
|
230 |
msgstr "Для мініатюр"
|
231 |
|
232 |
+
#: gallery-plugin.php:1641
|
233 |
msgid "Update images for gallery"
|
234 |
msgstr "Оновити всі зображення галереї"
|
235 |
|
236 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
237 |
msgid "Close"
|
238 |
msgstr "Закрити"
|
239 |
|
240 |
+
#: gallery-plugin.php:1657
|
241 |
msgid "For images in the lightbox"
|
242 |
msgstr "Для зображень в лайтбоксі"
|
243 |
|
244 |
+
#: gallery-plugin.php:1661
|
245 |
msgid "Display a full size image in the lightbox"
|
246 |
msgstr "Відображати повне зображення в лайтбоксі"
|
247 |
|
248 |
+
#: gallery-plugin.php:1666
|
249 |
msgid "Crop position"
|
250 |
msgstr "Обрізання"
|
251 |
|
252 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
253 |
msgid "center"
|
254 |
msgstr "центр"
|
255 |
|
256 |
+
#: gallery-plugin.php:1672
|
257 |
msgid "Horizontal"
|
258 |
msgstr "Горизонтальна"
|
259 |
|
260 |
+
#: gallery-plugin.php:1678
|
261 |
msgid "Vertical"
|
262 |
msgstr "Вертикальна"
|
263 |
|
264 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
265 |
msgid ""
|
266 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
267 |
msgstr ""
|
268 |
"Якщо ви перейшли на PRO версію, всі налаштування і галереї буде збережено."
|
269 |
|
270 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
271 |
msgid "Unlock premium options by upgrading to Pro version"
|
272 |
msgstr "Відкрийте додаткові опції, перейшовши на Pro версію"
|
273 |
|
274 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
275 |
msgid "Start Your Trial"
|
276 |
msgstr "Отримати пробну версію"
|
277 |
|
278 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
279 |
msgid "or"
|
280 |
msgstr "або"
|
281 |
|
282 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
283 |
msgid "Learn More"
|
284 |
msgstr "Дізнатись більше"
|
285 |
|
286 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
287 |
msgid "Display image title"
|
288 |
msgstr "Відображати заголовки зображень"
|
289 |
|
290 |
+
#: gallery-plugin.php:1708
|
291 |
msgid ""
|
292 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
293 |
msgstr ""
|
294 |
"Вимкніть прапорець, якщо ви хочете відображати заголовки зображень тільки у "
|
295 |
"лайтбоксі"
|
296 |
|
297 |
+
#: gallery-plugin.php:1712
|
298 |
msgid "Images with border"
|
299 |
msgstr "Зображення з рамкою"
|
300 |
|
301 |
+
#: gallery-plugin.php:1716
|
302 |
msgid "Border width in px, just numbers"
|
303 |
msgstr "Ширина рамки у пікселях, тільки числа"
|
304 |
|
305 |
+
#: gallery-plugin.php:1722
|
306 |
msgid "Sort images"
|
307 |
msgstr "Сортувати зображення"
|
308 |
|
309 |
+
#: gallery-plugin.php:1725
|
310 |
msgid "by Attachment ID"
|
311 |
msgstr "по ID зображення"
|
312 |
|
313 |
+
#: gallery-plugin.php:1726
|
314 |
msgid "by Image Name"
|
315 |
msgstr "по Назві зображення"
|
316 |
|
317 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
318 |
msgid "by Date"
|
319 |
msgstr "по Даті"
|
320 |
|
321 |
+
#: gallery-plugin.php:1728
|
322 |
msgid "by Sorting order in the Gallery"
|
323 |
msgstr "по Порядку сортування в галереї"
|
324 |
|
325 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
326 |
msgid "Random"
|
327 |
msgstr "Довільно"
|
328 |
|
329 |
+
#: gallery-plugin.php:1734
|
330 |
msgid "The images sort order"
|
331 |
msgstr "Порядок сортування зображень"
|
332 |
|
333 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
334 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
335 |
msgstr ""
|
336 |
"ASC (в порядку зростання від найменшого до найбільшого значення - 1, 2, 3; "
|
337 |
"а, б, в)"
|
338 |
|
339 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
340 |
msgid ""
|
341 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
342 |
msgstr ""
|
343 |
"DESC (в порядку зменшення від найбільшого до найменшого значення - 3, 2, 1; "
|
344 |
"в, б, а)"
|
345 |
|
346 |
+
#: gallery-plugin.php:1743
|
347 |
msgid "Sort galleries"
|
348 |
msgstr "Сортувати галереї"
|
349 |
|
350 |
+
#: gallery-plugin.php:1746
|
351 |
msgid "by Gallery ID"
|
352 |
msgstr "по ID галереї"
|
353 |
|
354 |
+
#: gallery-plugin.php:1747
|
355 |
msgid "by Title"
|
356 |
msgstr "по Назві"
|
357 |
|
358 |
+
#: gallery-plugin.php:1749
|
359 |
msgid "by Last modified date"
|
360 |
msgstr "по Даті останньої зміни"
|
361 |
|
362 |
+
#: gallery-plugin.php:1750
|
363 |
msgid "by Comment count"
|
364 |
msgstr "за Кількістю коментарів"
|
365 |
|
366 |
+
#: gallery-plugin.php:1751
|
367 |
msgid "by Sorting order (the input field for sorting order)"
|
368 |
msgstr "по Порядку сортування (поле введення для сортування)"
|
369 |
|
370 |
+
#: gallery-plugin.php:1752
|
371 |
msgid "by Author"
|
372 |
msgstr "по Автору"
|
373 |
|
374 |
+
#: gallery-plugin.php:1758
|
375 |
msgid "The galleries sort order"
|
376 |
msgstr "Порядок сортування галерей"
|
377 |
|
378 |
+
#: gallery-plugin.php:1767
|
379 |
msgid "Start slideshow"
|
380 |
msgstr "Розпочати слайд-шоу"
|
381 |
|
382 |
+
#: gallery-plugin.php:1770
|
383 |
msgid "Slideshow interval"
|
384 |
msgstr "Інтервал між слайдами"
|
385 |
|
386 |
+
#: gallery-plugin.php:1770
|
387 |
msgid "(ms)"
|
388 |
msgstr "(мс)"
|
389 |
|
390 |
+
#: gallery-plugin.php:1774
|
391 |
msgid "Use single lightbox for multiple galleries on one page"
|
392 |
msgstr "Використовувати один лайтбокс для багатьох галерей на сторінці"
|
393 |
|
394 |
+
#: gallery-plugin.php:1780
|
395 |
msgid "Display the Back link"
|
396 |
msgstr "Відображати посилання Повернутися"
|
397 |
|
398 |
+
#: gallery-plugin.php:1786
|
399 |
msgid "Display the Back link in the shortcode"
|
400 |
msgstr "Відображати посилання Повернутися у шорткоді"
|
401 |
|
402 |
+
#: gallery-plugin.php:1792
|
403 |
msgid "The Back link text"
|
404 |
msgstr "Текст для посилання Повернутися"
|
405 |
|
406 |
+
#: gallery-plugin.php:1798
|
407 |
msgid "The Back link URL"
|
408 |
msgstr "URL для посилання Повернутися"
|
409 |
|
410 |
+
#: gallery-plugin.php:1801
|
411 |
msgid "Gallery page (Page with Gallery Template)"
|
412 |
msgstr "Сторінка галереї (сторінка з шаблоном галереї)"
|
413 |
|
414 |
+
#: gallery-plugin.php:1803
|
415 |
msgid "(Full URL to custom page)"
|
416 |
msgstr "(Повне посилання на сторінку користувача)"
|
417 |
|
418 |
+
#: gallery-plugin.php:1808
|
419 |
msgid "The Read More link text"
|
420 |
msgstr "Текст для посилання Дізнатися більше"
|
421 |
|
422 |
+
#: gallery-plugin.php:1814
|
423 |
msgid "Add gallery to the search"
|
424 |
msgstr "Додати галерею до пошуку"
|
425 |
|
426 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
427 |
msgid "Using"
|
428 |
msgstr "Використовуючи"
|
429 |
|
430 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
431 |
msgid "powered by"
|
432 |
msgstr "розроблений"
|
433 |
|
434 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
435 |
msgid "Activate"
|
436 |
msgstr "Активувати"
|
437 |
|
438 |
+
#: gallery-plugin.php:1826
|
439 |
msgid "Download"
|
440 |
msgstr "Завантажити"
|
441 |
|
442 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
msgid "Rename gallery post type"
|
444 |
msgstr "Перейменувати тип поста \"gallery\""
|
445 |
|
446 |
+
#: gallery-plugin.php:1837
|
447 |
msgid ""
|
448 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
449 |
"it now"
|
451 |
"Для того, щоб уникнути конфліктів з іншими плагінами, будь ласка, увімкніть "
|
452 |
"прапорець, щоб перейменувати його зараз"
|
453 |
|
454 |
+
#: gallery-plugin.php:1838
|
455 |
msgid ""
|
456 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
457 |
"please check settings of your other plugins where 'gallery' post type is used"
|
460 |
"перейменування, будь ласка, перевірте налаштування інших ваших плагінів, де "
|
461 |
"використовується тип поста \"gallery\""
|
462 |
|
463 |
+
#: gallery-plugin.php:1851
|
464 |
msgid "Single gallery view"
|
465 |
msgstr "Вид галереї"
|
466 |
|
467 |
+
#: gallery-plugin.php:1854
|
468 |
msgid "Grid"
|
469 |
msgstr "Сітка"
|
470 |
|
471 |
+
#: gallery-plugin.php:1855
|
472 |
msgid "Masonry"
|
473 |
msgstr "Masonry"
|
474 |
|
475 |
+
#: gallery-plugin.php:1863
|
476 |
msgid "Under image"
|
477 |
msgstr "Під зображенням"
|
478 |
|
479 |
+
#: gallery-plugin.php:1864
|
480 |
msgid "By mouse hover"
|
481 |
msgstr "За наведення миші"
|
482 |
|
483 |
+
#: gallery-plugin.php:1869
|
484 |
msgid "Use pagination for images"
|
485 |
msgstr "Використовувати пагінацію для зображень"
|
486 |
|
487 |
+
#: gallery-plugin.php:1872
|
488 |
msgid "per page"
|
489 |
msgstr "на сторінці"
|
490 |
|
491 |
+
#: gallery-plugin.php:1876
|
492 |
msgid "Lightbox background"
|
493 |
msgstr "Фон лайтбоксу"
|
494 |
|
495 |
+
#: gallery-plugin.php:1879
|
496 |
msgid "Background transparency (from 0 to 1)"
|
497 |
msgstr "Прозорість фону (від 0 до 1)"
|
498 |
|
499 |
+
#: gallery-plugin.php:1885
|
500 |
msgid ""
|
501 |
"Display all images in the lightbox instead of going into a single gallery"
|
502 |
msgstr ""
|
503 |
"Відображати всі зображення у лайтбоксі замість переходу до окремої галереї"
|
504 |
|
505 |
+
#: gallery-plugin.php:1888
|
506 |
#, php-format
|
507 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
508 |
msgstr "Коли використовується темплейт галереї або шорткод з параметром `%s`"
|
509 |
|
510 |
+
#: gallery-plugin.php:1892
|
511 |
msgid "The lightbox helper"
|
512 |
msgstr "Допоміжний елемент лайтбоксу"
|
513 |
|
514 |
+
#: gallery-plugin.php:1894
|
515 |
msgid "Do not use"
|
516 |
msgstr "Не використовувати"
|
517 |
|
518 |
+
#: gallery-plugin.php:1895
|
519 |
msgid "Button helper"
|
520 |
msgstr "Допоміжні кнопки"
|
521 |
|
522 |
+
#: gallery-plugin.php:1896
|
523 |
msgid "Thumbnail helper"
|
524 |
msgstr "Допоміжні мініатюри"
|
525 |
|
526 |
+
#: gallery-plugin.php:1900
|
527 |
msgid "Display Like buttons in the lightbox"
|
528 |
msgstr "Відображати кнопки Подобається у лайтбоксі"
|
529 |
|
530 |
+
#: gallery-plugin.php:1904
|
531 |
msgid "FaceBook"
|
532 |
msgstr "FaceBook"
|
533 |
|
534 |
+
#: gallery-plugin.php:1905
|
535 |
msgid "Twitter"
|
536 |
msgstr "Twitter"
|
537 |
|
538 |
+
#: gallery-plugin.php:1906
|
539 |
msgid "Pinterest"
|
540 |
msgstr "Pinterest"
|
541 |
|
542 |
+
#: gallery-plugin.php:1907
|
543 |
msgid "Google +1"
|
544 |
msgstr "Google +1"
|
545 |
|
546 |
+
#: gallery-plugin.php:1910
|
547 |
msgid "Show counter"
|
548 |
msgstr "Відображати лічильник"
|
549 |
|
550 |
+
#: gallery-plugin.php:1912
|
551 |
msgid "Align"
|
552 |
msgstr "Вирівнювання"
|
553 |
|
554 |
+
#: gallery-plugin.php:1914
|
555 |
msgid "left"
|
556 |
msgstr "зліва"
|
557 |
|
558 |
+
#: gallery-plugin.php:1921
|
559 |
msgid "Title for lightbox button"
|
560 |
msgstr "Назва кнопки лайтбоксу"
|
561 |
|
562 |
+
#: gallery-plugin.php:1927
|
563 |
msgid "Slug for gallery item"
|
564 |
msgstr "Назва для елементів галереї"
|
565 |
|
566 |
+
#: gallery-plugin.php:1929
|
567 |
msgid "for any structure of permalinks except the default structure"
|
568 |
msgstr "для будь-якої структури посилань, за винятком стандартної структури"
|
569 |
|
570 |
+
#: gallery-plugin.php:1955
|
571 |
msgid "Save Changes"
|
572 |
msgstr "Зберегти зміни"
|
573 |
|
574 |
+
#: gallery-plugin.php:1960
|
575 |
msgid ""
|
576 |
"If you install the demo-data, will be created galleries with images, demo-"
|
577 |
"post with available shortcodes and page with a list of all the galleries."
|
579 |
"Під час встановки демо-даних будуть створені галереї із зображеннями, пост "
|
580 |
"із доступними шорткодами та сторінка зі списком всіх галерей."
|
581 |
|
582 |
+
#: gallery-plugin.php:1994
|
583 |
msgid "FAQ"
|
584 |
msgstr "FAQ"
|
585 |
|
586 |
+
#: gallery-plugin.php:1995
|
587 |
msgid "Support"
|
588 |
msgstr "Підтримка"
|
589 |
|
590 |
+
#: gallery-plugin.php:2032
|
591 |
msgid "Updating images..."
|
592 |
msgstr "Оновлення зображень…"
|
593 |
|
594 |
+
#: gallery-plugin.php:2033
|
595 |
msgid "No image found."
|
596 |
msgstr "Зображення не знайдено."
|
597 |
|
598 |
+
#: gallery-plugin.php:2034
|
599 |
msgid "All images are updated."
|
600 |
msgstr "Всі зображення оновлено."
|
601 |
|
602 |
+
#: gallery-plugin.php:2035
|
603 |
msgid "Error."
|
604 |
msgstr "Помилка."
|
605 |
|
606 |
+
#: gallery-plugin.php:2049
|
607 |
msgid ""
|
608 |
"You are about to delete these items from this gallery.\n"
|
609 |
" 'Cancel' to stop, 'OK' to delete."
|
611 |
"Ви збираєтесь видалити вибрані елементи з галереї. \n"
|
612 |
"'Відміна' - скасувати, 'OK' - видалити."
|
613 |
|
614 |
+
#: gallery-plugin.php:2050
|
615 |
msgid ""
|
616 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
617 |
"switching?"
|
619 |
"При переході на інший режим, всі незбережіні дані будуть втрачені. Зберегти "
|
620 |
"їх перед переходом?"
|
621 |
|
622 |
+
#: gallery-plugin.php:2051
|
623 |
msgid "Insert Media"
|
624 |
msgstr "Додати Медіа"
|
625 |
|
626 |
+
#: gallery-plugin.php:2052
|
627 |
msgid "Insert"
|
628 |
msgstr "Додати"
|
629 |
|
630 |
+
#: gallery-plugin.php:2064
|
631 |
msgid "Learn more"
|
632 |
msgstr "Докладніше"
|
633 |
|
634 |
+
#: gallery-plugin.php:2076
|
635 |
msgid "Install now"
|
636 |
msgstr "Встановити"
|
637 |
|
638 |
+
#: gallery-plugin.php:2085
|
639 |
msgid "Add multiple gallery categories"
|
640 |
msgstr "Додати декілька категорій галереї"
|
641 |
|
642 |
+
#: gallery-plugin.php:2085
|
643 |
msgid ""
|
644 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
645 |
msgstr ""
|
646 |
"Встановити плагін Gallery Categories, щоб мати змогу додати необмежену "
|
647 |
"кількість категорій."
|
648 |
|
649 |
+
#: gallery-plugin.php:2405
|
650 |
+
msgid "Download high resolution image"
|
651 |
+
msgstr "Завантажити зображення у високій якості"
|
652 |
+
|
653 |
+
#: gallery-plugin.php:2417
|
654 |
+
msgid "Image"
|
655 |
+
msgstr "Зображення"
|
656 |
+
|
657 |
+
#: gallery-plugin.php:2558
|
658 |
msgid "Image size not defined"
|
659 |
msgstr "Розмір зображення не визначено"
|
660 |
|
661 |
+
#: gallery-plugin.php:2573
|
662 |
msgid ""
|
663 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
664 |
"manually reload image."
|
666 |
"Можливі оновлення лише файлів у форматах PNG, JPEG, GIF, WPMP чи XBM. В "
|
667 |
"інших випадках, будь ласка, перезавантажте зображення вручну."
|
668 |
|
669 |
+
#: gallery-plugin.php:2584
|
670 |
msgid "Image size changes not defined"
|
671 |
msgstr "Зміни розміру зображення не визначено"
|
672 |
|
673 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
674 |
msgid "Invalid path"
|
675 |
msgstr "Невірний шлях"
|
676 |
|
677 |
+
#: gallery-plugin.php:2694
|
678 |
msgid "Add images requires JavaScript."
|
679 |
msgstr "Додавання зображень вимагає використання JavaScript."
|
680 |
|
681 |
+
#: gallery-plugin.php:2697
|
682 |
msgid "Add Media"
|
683 |
msgstr "Додати Медіа"
|
684 |
|
685 |
+
#: gallery-plugin.php:2707
|
686 |
msgid "The grid view for the Gallery images requires JavaScript."
|
687 |
msgstr "Перегляд зображень таблицею вимагає використання JavaScript."
|
688 |
|
689 |
+
#: gallery-plugin.php:2707
|
690 |
msgid "Switch to the list view"
|
691 |
msgstr "Увімкнути перегляд списком"
|
692 |
|
693 |
+
#: gallery-plugin.php:2734
|
694 |
msgid "List View"
|
695 |
msgstr "Перегляд списком"
|
696 |
|
697 |
+
#: gallery-plugin.php:2735
|
698 |
msgid "Grid View"
|
699 |
msgstr "Перегляд таблицею"
|
700 |
|
701 |
+
#: gallery-plugin.php:2790
|
702 |
msgid "Filter"
|
703 |
msgstr "Фільтр"
|
704 |
|
705 |
+
#: gallery-plugin.php:2794
|
706 |
msgid "Empty Trash"
|
707 |
msgstr "Очистити Корзину"
|
708 |
|
709 |
+
#: gallery-plugin.php:2815
|
710 |
msgid "No images found"
|
711 |
msgstr "Зображення не знайдено"
|
712 |
|
713 |
+
#: gallery-plugin.php:2867
|
714 |
msgid "Select bulk action"
|
715 |
msgstr "Вибрати гуртові дії"
|
716 |
|
717 |
+
#: gallery-plugin.php:2869
|
718 |
msgid "Bulk Actions"
|
719 |
msgstr "Гуртові дії"
|
720 |
|
721 |
+
#: gallery-plugin.php:2879
|
722 |
msgid "Apply"
|
723 |
msgstr "Застосувати"
|
724 |
|
725 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
726 |
msgid "Delete from Gallery"
|
727 |
msgstr "Видалити з галереї"
|
728 |
|
729 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
730 |
msgid "Display link to the original file under each image in the lightbox"
|
731 |
msgstr ""
|
732 |
"Відображати лінк на оригінальний файл під кожним зображенням в лайтбоксі"
|
733 |
|
734 |
+
#: gallery-plugin.php:2908
|
735 |
msgid "Bulk Select"
|
736 |
msgstr "Гуртовий вибір"
|
737 |
|
738 |
+
#: gallery-plugin.php:2910
|
739 |
msgid "Cancel Selection"
|
740 |
msgstr "Скасувати вибір"
|
741 |
|
742 |
+
#: gallery-plugin.php:2911
|
743 |
msgid "Delete Selected"
|
744 |
msgstr "Видалити вибране"
|
745 |
|
746 |
+
#: gallery-plugin.php:2924
|
747 |
msgid "File"
|
748 |
msgstr "Файл"
|
749 |
|
750 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
751 |
msgid "Dimensions"
|
752 |
msgstr "Розміри"
|
753 |
|
754 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
755 |
msgid "Alt tag"
|
756 |
msgstr "Тег \"Alt\""
|
757 |
|
758 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
759 |
msgid ""
|
760 |
"The alt attribute specifies an alternate text for an image, if the image "
|
761 |
"cannot be displayed."
|
763 |
"Атрибут Alt визначає альтернативний текст для зображення, якщо зображення не "
|
764 |
"може бути відображене."
|
765 |
|
766 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
767 |
msgid "Custom URL"
|
768 |
msgstr "Кастомний URL"
|
769 |
|
770 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
771 |
msgid ""
|
772 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
773 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
776 |
"якщо поле заповнене), або зображення відкриється в лайтбоксі (якщо поле не "
|
777 |
"заповнене)"
|
778 |
|
779 |
+
#: gallery-plugin.php:3006
|
780 |
msgid "Deselect"
|
781 |
msgstr "Скасувати вибір"
|
782 |
|
783 |
+
#: gallery-plugin.php:3012
|
784 |
msgid "File name"
|
785 |
msgstr "Назва файлу"
|
786 |
|
787 |
+
#: gallery-plugin.php:3013
|
788 |
msgid "File type"
|
789 |
msgstr "Тип файлу"
|
790 |
|
791 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
792 |
msgid "Edit Attachment Info"
|
793 |
msgstr "Редагувати інформацію про прикріплений файл"
|
794 |
|
795 |
+
#: gallery-plugin.php:3017
|
796 |
msgid "Edit Attachment"
|
797 |
msgstr "Редагувати прикріплений файл"
|
798 |
|
799 |
+
#: gallery-plugin.php:3027
|
800 |
msgid "Go Pro"
|
801 |
msgstr "Придбати Pro версію"
|
802 |
|
803 |
+
#: gallery-plugin.php:3027
|
804 |
msgid "Pro version"
|
805 |
msgstr "Pro версія"
|
806 |
|
807 |
+
#: gallery-plugin.php:3030
|
808 |
msgid "This setting is available in Pro version"
|
809 |
msgstr "Ці установки доступні у PRO версії плагіну"
|
810 |
|
811 |
+
#: gallery-plugin.php:3063
|
812 |
msgid "Edit more details"
|
813 |
msgstr "Редагувати деталі"
|
814 |
|
815 |
+
#: gallery-plugin.php:3098
|
816 |
#, php-format
|
817 |
msgid "Select %s"
|
818 |
msgstr "Вибрати %s"
|
819 |
|
820 |
+
#: gallery-plugin.php:3111
|
821 |
#, php-format
|
822 |
msgid "Edit “%s”"
|
823 |
msgstr "Редагувати “%s”"
|
824 |
|
825 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
826 |
msgid "Edit"
|
827 |
msgstr "Редагувати"
|
828 |
|
829 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
830 |
msgid "Trash"
|
831 |
msgstr "Корзина"
|
832 |
|
833 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
834 |
msgid "Delete Permanently"
|
835 |
msgstr "Видалити Повністю"
|
836 |
|
837 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
838 |
#, php-format
|
839 |
msgid "View “%s”"
|
840 |
msgstr "Перегляд “%s”"
|
841 |
|
842 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
843 |
msgid "View"
|
844 |
msgstr "Перегляд"
|
845 |
|
846 |
+
#: gallery-plugin.php:3166
|
847 |
msgid "Attach"
|
848 |
msgstr "Прикріпити"
|
849 |
|
850 |
+
#: gallery-plugin.php:3172
|
851 |
msgid "Restore"
|
852 |
msgstr "Відновити"
|
853 |
|
854 |
+
#: gallery-plugin.php:3303
|
855 |
msgid "Warning"
|
856 |
msgstr "Увага"
|
857 |
|
858 |
+
#: gallery-plugin.php:3303
|
859 |
msgid "You can add only images to the gallery"
|
860 |
msgstr "В галерею можна додати лише зображення"
|
861 |
|
862 |
+
#: gallery-plugin.php:3345
|
863 |
msgid "no title"
|
864 |
msgstr "без назви"
|
865 |
|
866 |
+
#: gallery-plugin.php:3353
|
867 |
msgid "Sorry, no gallery found."
|
868 |
msgstr "Вибачте, жодної галереї не знайдено."
|
869 |
|
870 |
+
#: gallery-plugin.php:3359
|
871 |
msgid ""
|
872 |
"Display an album image with the description and the link to a single gallery "
|
873 |
"page"
|
874 |
msgstr ""
|
875 |
"Відображати короткий опис зі скріншотом та посиланням на сторінку з галереєю"
|
876 |
|
877 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
878 |
msgid "Install Demo Data"
|
879 |
msgstr "Встановити демо-дані"
|
880 |
|
881 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
882 |
msgid "Remove Demo Data"
|
883 |
msgstr "Видалити демо-дані"
|
884 |
|
885 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
886 |
msgid "Delete demo-data and restore old plugin settings."
|
887 |
msgstr "Видалити демо-дані та відновити старі налаштування плагіну."
|
888 |
|
889 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
890 |
msgid "Yes, install demo data"
|
891 |
msgstr "Так, встановити демо-дані"
|
892 |
|
893 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
894 |
msgid "Are you sure you want to install demo data?"
|
895 |
msgstr "Ві впевнені, що бажаєте встановити демо-дані?"
|
896 |
|
897 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
898 |
msgid "Yes, remove demo data"
|
899 |
msgstr "Так, видалити демо-дані"
|
900 |
|
901 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
902 |
msgid "Are you sure you want to remove demo data?"
|
903 |
msgstr "Ви впевнені, що бажаєте видалити демо-дані?"
|
904 |
|
905 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
906 |
msgid "No, go back to the settings page"
|
907 |
msgstr "Ні, повернутися на сторінку налаштувань"
|
908 |
|
909 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
910 |
msgid "Can not get demo data."
|
911 |
msgstr "Неможливо отримати демо-дані."
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
914 |
msgid "Demo options already installed."
|
915 |
msgstr "Демо-дані вже встановлені."
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
918 |
msgid "Demo data successfully installed."
|
919 |
msgstr "Демо-дані успішно встановлені."
|
920 |
|
921 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
922 |
msgid "View post with shortcodes"
|
923 |
msgstr "Перегляньте запис із шорткодами "
|
924 |
|
925 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
926 |
msgid "View page with examples"
|
927 |
msgstr "Перегляньте сторінку із прикладами"
|
928 |
|
929 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
930 |
msgid "Installation of demo data with some errors occurred."
|
931 |
msgstr "Установка демо-даних пройшла з помилками."
|
932 |
|
933 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
934 |
msgid "Posts data is missing."
|
935 |
msgstr "Контент запису відсутній."
|
936 |
|
937 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
938 |
msgid "Demo data have already been removed."
|
939 |
msgstr "Демо-дані вже видалені. "
|
940 |
|
941 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
942 |
msgid "Demo data successfully removed."
|
943 |
msgstr "Демо-дані успішно видалені."
|
944 |
|
945 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
946 |
msgid "Removing demo data with some errors occurred."
|
947 |
msgstr "Видалення демо-данних пройшло з помилками."
|
948 |
|
949 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
950 |
msgid "Close notice"
|
951 |
msgstr "Закрити повідомлення"
|
952 |
|
953 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
954 |
msgid "Install demo data"
|
955 |
msgstr "Встановити демо-дані"
|
956 |
|
957 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
958 |
msgid "for an acquaintance with the possibilities of the"
|
959 |
msgstr "для ознайомлення із можливостями плагіну"
|
960 |
|
961 |
+
#~ msgid ""
|
962 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
963 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
964 |
+
#~ "theme for the correct work of the Gallery plugin"
|
965 |
+
#~ msgstr ""
|
966 |
+
#~ "В папці вашої теми файли '%s' та '%s' не знайдені. Для правильної роботи "
|
967 |
+
#~ "плагіну Gallery, будь ласка, скопіюйте їх з папки `%s` в папку вашої теми"
|
968 |
+
|
969 |
+
#~ msgid "Rewrite templates after update"
|
970 |
+
#~ msgstr "Перезаписати шаблони після оновлення"
|
971 |
+
|
972 |
+
#~ msgid ""
|
973 |
+
#~ "Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
974 |
+
#~ "theme folder and You don't want to rewrite them"
|
975 |
+
#~ msgstr ""
|
976 |
+
#~ "Вимкніть прапорець, якщо ви редагували файл '%s' або '%s' в папці тем та "
|
977 |
+
#~ "не хочете щоб вони були оновлені"
|
978 |
+
|
979 |
#~ msgid "Select a border color"
|
980 |
#~ msgstr "Виберіть колір рамки"
|
981 |
|
languages/gallery-plugin-zh_CN.mo
CHANGED
Binary file
|
languages/gallery-plugin-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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -16,73 +16,62 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "Settings"
|
22 |
msgstr "设置"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "See images »"
|
26 |
msgstr "查看影像 »"
|
27 |
|
28 |
-
#: gallery-plugin.php:
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
-
#, fuzzy, php-format
|
34 |
-
msgid ""
|
35 |
-
"The following files '%s' and '%s' were not found in the directory of your "
|
36 |
-
"theme. Please copy them from the directory `%s` to the directory of your "
|
37 |
-
"theme for the correct work of the Gallery plugin"
|
38 |
-
msgstr ""
|
39 |
-
"在您的主题目录中没有找到文件 \"gallery-template.php\" 和 \"gallery-single-"
|
40 |
-
"template.php\"。为了画廊插件的正常运行,请从目录 `/wp-content/plugins/"
|
41 |
-
"gallery-plugin/template/` 中复制他们到您的主题目录中"
|
42 |
-
|
43 |
-
#: gallery-plugin.php:425 gallery-plugin.php:434
|
44 |
msgid "Galleries"
|
45 |
msgstr "画廊"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "Gallery"
|
49 |
msgstr "画廊"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "Add New Gallery"
|
53 |
msgstr "新建画廊"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Edit Gallery"
|
57 |
msgstr "编辑画廊"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "New Gallery"
|
61 |
msgstr "新画廊"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "View Gallery"
|
65 |
msgstr "浏览画廊"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Search Galleries"
|
70 |
msgstr "画廊"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
msgid "No Gallery found"
|
74 |
msgstr "没有找到画廊"
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
msgid "Gallery Shortcode"
|
78 |
msgstr "画廊代码"
|
79 |
|
80 |
-
#: gallery-plugin.php:
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Categories"
|
83 |
msgstr "画廊中影像的尺寸"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
#, fuzzy, php-format
|
87 |
msgid ""
|
88 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
@@ -90,7 +79,7 @@ msgstr ""
|
|
90 |
"如果您想添加一个画廊到页面或公告中,仅需要将画廊代码放到页面或公告的内容中即"
|
91 |
"可:"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
#, php-format
|
95 |
msgid ""
|
96 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -98,106 +87,98 @@ msgid ""
|
|
98 |
"please use the shortcode below"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid ""
|
103 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: gallery-plugin.php:
|
107 |
#, fuzzy
|
108 |
msgid ""
|
109 |
"Use this shortcode to display an album image with the description and the "
|
110 |
"link to a single gallery page"
|
111 |
msgstr "如果您想显示一个简述,其包含屏幕截图且具有指向一个图集的链接"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Short display"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Most Used"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Default"
|
123 |
msgstr "默认"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
#, fuzzy
|
127 |
msgid "Add New Gallery Category"
|
128 |
msgstr "新建画廊"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
#, fuzzy
|
132 |
msgid "Install plugin"
|
133 |
msgstr "安装插件"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, fuzzy
|
137 |
msgid "Gallery Category"
|
138 |
msgstr "画廊中影像的尺寸"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
-
msgid "Download high resolution image"
|
142 |
-
msgstr "下载高分辨率图像"
|
143 |
-
|
144 |
-
#: gallery-plugin.php:939 gallery-plugin.php:2481
|
145 |
-
msgid "Image"
|
146 |
-
msgstr "影像"
|
147 |
-
|
148 |
-
#: gallery-plugin.php:951 gallery-plugin.php:1090 gallery-plugin.php:2468
|
149 |
msgid "Sorry, nothing found."
|
150 |
msgstr "对不起 - 没有找到。"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Title"
|
155 |
msgstr "标题"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Author"
|
159 |
msgstr "作者"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
#, fuzzy
|
163 |
msgid "Shortcode"
|
164 |
msgstr "画廊代码"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
#, fuzzy
|
168 |
msgid "Photos"
|
169 |
msgstr "照片"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Date"
|
173 |
msgstr "日期"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Settings are saved"
|
177 |
msgstr "设置已保存。"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
#, fuzzy
|
181 |
msgid "All plugin settings were restored."
|
182 |
msgstr "在插件的设置页面("
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
msgid "Gallery Settings"
|
186 |
msgstr "画廊设置"
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Custom code"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Go PRO"
|
194 |
msgstr "转到高级版"
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Please enable JavaScript to use the option to renew images."
|
198 |
msgstr "请打开JavaScript以使用选项更新影像"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
#, php-format
|
202 |
msgid ""
|
203 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
@@ -205,476 +186,478 @@ msgid ""
|
|
205 |
"please use the shortcode %s, where * stands for gallery ID"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "Number of images in the row"
|
210 |
msgstr "一行中图像的数量"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, fuzzy
|
214 |
msgid ""
|
215 |
"The number of images per row can be less depending on the width of the "
|
216 |
"parent block"
|
217 |
msgstr "一行中图像的数量"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "Image size"
|
221 |
msgstr "影像尺寸"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid ""
|
225 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
226 |
"upload a new photo."
|
227 |
msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
#, fuzzy
|
231 |
msgid "For the album cover"
|
232 |
msgstr "专辑封面的尺寸"
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "width x height"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "in px"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
#, fuzzy
|
244 |
msgid "For thumbnails"
|
245 |
msgstr "专辑封面的尺寸"
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Update images for gallery"
|
249 |
msgstr "为画廊更新影像"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Close"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
#, fuzzy
|
257 |
msgid "For images in the lightbox"
|
258 |
msgstr "灯箱中的影像的尺寸"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
msgid "Display a full size image in the lightbox"
|
262 |
msgstr "在灯箱中显示全尺寸图像"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid "Crop position"
|
266 |
msgstr "裁剪位置"
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "center"
|
270 |
msgstr "居中"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Horizontal"
|
274 |
msgstr "水平"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid "Vertical"
|
278 |
msgstr "垂直"
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid ""
|
282 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
283 |
msgstr "如果您升级到高级版本,您的设置和画廊将被保存。"
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
#, fuzzy
|
287 |
msgid "Unlock premium options by upgrading to Pro version"
|
288 |
msgstr "升级到高级版以解锁额外的选项。"
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
msgid "Start Your Trial"
|
292 |
msgstr "开始试用"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "or"
|
296 |
msgstr "或"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Learn More"
|
300 |
msgstr "学习更多"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "Display image title"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
#, fuzzy
|
308 |
msgid ""
|
309 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
310 |
msgstr "取消复选框,如果您仅想在灯箱中显示文本"
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Images with border"
|
314 |
msgstr "影像边缘"
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "Border width in px, just numbers"
|
318 |
msgstr "边缘宽度,以像素为单位,只能使用数字"
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Sort images"
|
322 |
msgstr "影像排序"
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
#, fuzzy
|
326 |
msgid "by Attachment ID"
|
327 |
msgstr "附件ID"
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
#, fuzzy
|
331 |
msgid "by Image Name"
|
332 |
msgstr "影像名称"
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
#, fuzzy
|
336 |
msgid "by Date"
|
337 |
msgstr "日期"
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "by Sorting order in the Gallery"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid "Random"
|
345 |
msgstr "随机"
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
#, fuzzy
|
349 |
msgid "The images sort order"
|
350 |
msgstr "影像边缘"
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
354 |
msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid ""
|
358 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
359 |
msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
#, fuzzy
|
363 |
msgid "Sort galleries"
|
364 |
msgstr "画廊"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
#, fuzzy
|
368 |
msgid "by Gallery ID"
|
369 |
msgstr "画廊"
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
#, fuzzy
|
373 |
msgid "by Title"
|
374 |
msgstr "标题"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "by Last modified date"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "by Comment count"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
#, fuzzy
|
386 |
msgid "by Sorting order (the input field for sorting order)"
|
387 |
msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
#, fuzzy
|
391 |
msgid "by Author"
|
392 |
msgstr "作者"
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "The galleries sort order"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Start slideshow"
|
400 |
msgstr "播放幻灯片"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "Slideshow interval"
|
404 |
msgstr "幻灯片播放间隔"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
msgid "(ms)"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "Use single lightbox for multiple galleries on one page"
|
412 |
msgstr "在同一页面上为多个画廊使用同一个灯箱"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "Display the Back link"
|
416 |
msgstr "显示返回链接"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Display the Back link in the shortcode"
|
420 |
msgstr "以代码方式显示返回链接"
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "The Back link text"
|
424 |
msgstr "返回链接文本"
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "The Back link URL"
|
428 |
msgstr "返回链接URL"
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Gallery page (Page with Gallery Template)"
|
432 |
msgstr "画廊页面(具有画廊模板的页面)"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "(Full URL to custom page)"
|
436 |
msgstr "(到自定义页面的完整地址)"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "The Read More link text"
|
440 |
msgstr "阅读更多链接的文本"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "Add gallery to the search"
|
444 |
msgstr "将画廊添加到搜索"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "Using"
|
448 |
msgstr "试用"
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "powered by"
|
452 |
msgstr "提供方为"
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Activate"
|
456 |
msgstr "激活"
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "Download"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
-
msgid "Rewrite templates after update"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: gallery-plugin.php:1929
|
467 |
-
#, php-format
|
468 |
-
msgid ""
|
469 |
-
"Turn off the checkbox, if You edited the file '%s' or '%s' file in your "
|
470 |
-
"theme folder and You don't want to rewrite them"
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: gallery-plugin.php:1934
|
474 |
msgid "Rename gallery post type"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid ""
|
479 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
480 |
"it now"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid ""
|
485 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
486 |
"please check settings of your other plugins where 'gallery' post type is used"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
#, fuzzy
|
491 |
msgid "Single gallery view"
|
492 |
msgstr "画廊项的滑块"
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
msgid "Grid"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: gallery-plugin.php:
|
499 |
msgid "Masonry"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
#, fuzzy
|
504 |
msgid "Under image"
|
505 |
msgstr "更新影像"
|
506 |
|
507 |
-
#: gallery-plugin.php:
|
508 |
msgid "By mouse hover"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: gallery-plugin.php:
|
512 |
msgid "Use pagination for images"
|
513 |
msgstr "为影像使用分页"
|
514 |
|
515 |
-
#: gallery-plugin.php:
|
516 |
msgid "per page"
|
517 |
msgstr "每页"
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
msgid "Lightbox background"
|
521 |
msgstr "灯箱背景"
|
522 |
|
523 |
-
#: gallery-plugin.php:
|
524 |
msgid "Background transparency (from 0 to 1)"
|
525 |
msgstr "背景透明度(从 0 到 1)"
|
526 |
|
527 |
-
#: gallery-plugin.php:
|
528 |
msgid ""
|
529 |
"Display all images in the lightbox instead of going into a single gallery"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: gallery-plugin.php:
|
533 |
#, php-format
|
534 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: gallery-plugin.php:
|
538 |
msgid "The lightbox helper"
|
539 |
msgstr "灯箱帮助"
|
540 |
|
541 |
-
#: gallery-plugin.php:
|
542 |
msgid "Do not use"
|
543 |
msgstr "不要使用"
|
544 |
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "Button helper"
|
547 |
msgstr "按钮帮助"
|
548 |
|
549 |
-
#: gallery-plugin.php:
|
550 |
msgid "Thumbnail helper"
|
551 |
msgstr "缩略图帮助"
|
552 |
|
553 |
-
#: gallery-plugin.php:
|
554 |
msgid "Display Like buttons in the lightbox"
|
555 |
msgstr "在灯箱中显示[喜欢]按钮"
|
556 |
|
557 |
-
#: gallery-plugin.php:
|
558 |
msgid "FaceBook"
|
559 |
msgstr "Facebook"
|
560 |
|
561 |
-
#: gallery-plugin.php:
|
562 |
msgid "Twitter"
|
563 |
msgstr "Twitter"
|
564 |
|
565 |
-
#: gallery-plugin.php:
|
566 |
msgid "Pinterest"
|
567 |
msgstr "Printerest"
|
568 |
|
569 |
-
#: gallery-plugin.php:
|
570 |
msgid "Google +1"
|
571 |
msgstr "Google +1"
|
572 |
|
573 |
-
#: gallery-plugin.php:
|
574 |
#, fuzzy
|
575 |
msgid "Show counter"
|
576 |
msgstr "幻灯片播放间隔"
|
577 |
|
578 |
-
#: gallery-plugin.php:
|
579 |
msgid "Align"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: gallery-plugin.php:
|
583 |
msgid "left"
|
584 |
msgstr "偏左"
|
585 |
|
586 |
-
#: gallery-plugin.php:
|
587 |
msgid "Title for lightbox button"
|
588 |
msgstr "灯箱按钮的标题"
|
589 |
|
590 |
-
#: gallery-plugin.php:
|
591 |
msgid "Slug for gallery item"
|
592 |
msgstr "画廊项的滑块"
|
593 |
|
594 |
-
#: gallery-plugin.php:
|
595 |
msgid "for any structure of permalinks except the default structure"
|
596 |
msgstr "给任意结构的固定链接,除了默认结构"
|
597 |
|
598 |
-
#: gallery-plugin.php:
|
599 |
msgid "Save Changes"
|
600 |
msgstr "保存修改"
|
601 |
|
602 |
-
#: gallery-plugin.php:
|
603 |
msgid ""
|
604 |
"If you install the demo-data, will be created galleries with images, demo-"
|
605 |
"post with available shortcodes and page with a list of all the galleries."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: gallery-plugin.php:
|
609 |
msgid "FAQ"
|
610 |
msgstr "常见问题"
|
611 |
|
612 |
-
#: gallery-plugin.php:
|
613 |
msgid "Support"
|
614 |
msgstr "支持"
|
615 |
|
616 |
-
#: gallery-plugin.php:
|
617 |
msgid "Updating images..."
|
618 |
msgstr "正在更新影像..."
|
619 |
|
620 |
-
#: gallery-plugin.php:
|
621 |
#, fuzzy
|
622 |
msgid "No image found."
|
623 |
msgstr "没有找到影像"
|
624 |
|
625 |
-
#: gallery-plugin.php:
|
626 |
#, fuzzy
|
627 |
msgid "All images are updated."
|
628 |
msgstr "已更新全部影像"
|
629 |
|
630 |
-
#: gallery-plugin.php:
|
631 |
msgid "Error."
|
632 |
msgstr "错误。"
|
633 |
|
634 |
-
#: gallery-plugin.php:
|
635 |
msgid ""
|
636 |
"You are about to delete these items from this gallery.\n"
|
637 |
" 'Cancel' to stop, 'OK' to delete."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: gallery-plugin.php:
|
641 |
msgid ""
|
642 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
643 |
"switching?"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: gallery-plugin.php:
|
647 |
msgid "Insert Media"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: gallery-plugin.php:
|
651 |
msgid "Insert"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: gallery-plugin.php:
|
655 |
#, fuzzy
|
656 |
msgid "Learn more"
|
657 |
msgstr "学习更多"
|
658 |
|
659 |
-
#: gallery-plugin.php:
|
660 |
#, fuzzy
|
661 |
msgid "Install now"
|
662 |
msgstr "安装 %s"
|
663 |
|
664 |
-
#: gallery-plugin.php:
|
665 |
msgid "Add multiple gallery categories"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: gallery-plugin.php:
|
669 |
msgid ""
|
670 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "Image size not defined"
|
675 |
msgstr "影像尺寸未定义"
|
676 |
|
677 |
-
#: gallery-plugin.php:
|
678 |
msgid ""
|
679 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
680 |
"manually reload image."
|
@@ -682,304 +665,314 @@ msgstr ""
|
|
682 |
"我们仅可以更新 PNG,JPEG,GIF,WPMP 或 XBM 文件。对于其他文件类型,请手动重新"
|
683 |
"加载影像。"
|
684 |
|
685 |
-
#: gallery-plugin.php:
|
686 |
msgid "Image size changes not defined"
|
687 |
msgstr "图像大小的变化没有定义"
|
688 |
|
689 |
-
#: gallery-plugin.php:
|
690 |
msgid "Invalid path"
|
691 |
msgstr "无效的路径"
|
692 |
|
693 |
-
#: gallery-plugin.php:
|
694 |
msgid "Add images requires JavaScript."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: gallery-plugin.php:
|
698 |
msgid "Add Media"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: gallery-plugin.php:
|
702 |
msgid "The grid view for the Gallery images requires JavaScript."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: gallery-plugin.php:
|
706 |
msgid "Switch to the list view"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: gallery-plugin.php:
|
710 |
msgid "List View"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: gallery-plugin.php:
|
714 |
msgid "Grid View"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: gallery-plugin.php:
|
718 |
msgid "Filter"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: gallery-plugin.php:
|
722 |
msgid "Empty Trash"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: gallery-plugin.php:
|
726 |
#, fuzzy
|
727 |
msgid "No images found"
|
728 |
msgstr "没有找到影像"
|
729 |
|
730 |
-
#: gallery-plugin.php:
|
731 |
msgid "Select bulk action"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: gallery-plugin.php:
|
735 |
msgid "Bulk Actions"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: gallery-plugin.php:
|
739 |
msgid "Apply"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: gallery-plugin.php:
|
743 |
#, fuzzy
|
744 |
msgid "Delete from Gallery"
|
745 |
msgstr "新画廊"
|
746 |
|
747 |
-
#: gallery-plugin.php:
|
748 |
#, fuzzy
|
749 |
msgid "Display link to the original file under each image in the lightbox"
|
750 |
msgstr "在灯箱中显示全尺寸图像"
|
751 |
|
752 |
-
#: gallery-plugin.php:
|
753 |
msgid "Bulk Select"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: gallery-plugin.php:
|
757 |
msgid "Cancel Selection"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: gallery-plugin.php:
|
761 |
msgid "Delete Selected"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: gallery-plugin.php:
|
765 |
msgid "File"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: gallery-plugin.php:
|
769 |
msgid "Dimensions"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: gallery-plugin.php:
|
773 |
msgid "Alt tag"
|
774 |
msgstr "Alt标签"
|
775 |
|
776 |
-
#: gallery-plugin.php:
|
777 |
msgid ""
|
778 |
"The alt attribute specifies an alternate text for an image, if the image "
|
779 |
"cannot be displayed."
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: gallery-plugin.php:
|
783 |
msgid "Custom URL"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: gallery-plugin.php:
|
787 |
msgid ""
|
788 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
789 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: gallery-plugin.php:
|
793 |
msgid "Deselect"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: gallery-plugin.php:
|
797 |
msgid "File name"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: gallery-plugin.php:
|
801 |
msgid "File type"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: gallery-plugin.php:
|
805 |
#, fuzzy
|
806 |
msgid "Edit Attachment Info"
|
807 |
msgstr "附件ID"
|
808 |
|
809 |
-
#: gallery-plugin.php:
|
810 |
#, fuzzy
|
811 |
msgid "Edit Attachment"
|
812 |
msgstr "附件ID"
|
813 |
|
814 |
-
#: gallery-plugin.php:
|
815 |
#, fuzzy
|
816 |
msgid "Go Pro"
|
817 |
msgstr "转到高级版"
|
818 |
|
819 |
-
#: gallery-plugin.php:
|
820 |
msgid "Pro version"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: gallery-plugin.php:
|
824 |
msgid "This setting is available in Pro version"
|
825 |
msgstr "此设置在高级版本中可用"
|
826 |
|
827 |
-
#: gallery-plugin.php:
|
828 |
msgid "Edit more details"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: gallery-plugin.php:
|
832 |
#, php-format
|
833 |
msgid "Select %s"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: gallery-plugin.php:
|
837 |
#, php-format
|
838 |
msgid "Edit “%s”"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: gallery-plugin.php:
|
842 |
msgid "Edit"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: gallery-plugin.php:
|
846 |
msgid "Trash"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: gallery-plugin.php:
|
850 |
msgid "Delete Permanently"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: gallery-plugin.php:
|
854 |
#, php-format
|
855 |
msgid "View “%s”"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: gallery-plugin.php:
|
859 |
msgid "View"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: gallery-plugin.php:
|
863 |
#, fuzzy
|
864 |
msgid "Attach"
|
865 |
msgstr "附件ID"
|
866 |
|
867 |
-
#: gallery-plugin.php:
|
868 |
msgid "Restore"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: gallery-plugin.php:
|
872 |
msgid "Warning"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: gallery-plugin.php:
|
876 |
msgid "You can add only images to the gallery"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: gallery-plugin.php:
|
880 |
#, fuzzy
|
881 |
msgid "no title"
|
882 |
msgstr "标题"
|
883 |
|
884 |
-
#: gallery-plugin.php:
|
885 |
#, fuzzy
|
886 |
msgid "Sorry, no gallery found."
|
887 |
msgstr "对不起 - 没有找到。"
|
888 |
|
889 |
-
#: gallery-plugin.php:
|
890 |
#, fuzzy
|
891 |
msgid ""
|
892 |
"Display an album image with the description and the link to a single gallery "
|
893 |
"page"
|
894 |
msgstr "如果您想显示一个简述,其包含屏幕截图且具有指向一个图集的链接"
|
895 |
|
896 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
897 |
#, fuzzy
|
898 |
msgid "Install Demo Data"
|
899 |
msgstr "安装 %s"
|
900 |
|
901 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
902 |
msgid "Remove Demo Data"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
906 |
msgid "Delete demo-data and restore old plugin settings."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
910 |
msgid "Yes, install demo data"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
914 |
msgid "Are you sure you want to install demo data?"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
918 |
msgid "Yes, remove demo data"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
922 |
msgid "Are you sure you want to remove demo data?"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
926 |
#, fuzzy
|
927 |
msgid "No, go back to the settings page"
|
928 |
msgstr "在插件的设置页面("
|
929 |
|
930 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
931 |
msgid "Can not get demo data."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
935 |
msgid "Demo options already installed."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
939 |
msgid "Demo data successfully installed."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
943 |
msgid "View post with shortcodes"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
947 |
msgid "View page with examples"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
951 |
msgid "Installation of demo data with some errors occurred."
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
955 |
msgid "Posts data is missing."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
959 |
msgid "Demo data have already been removed."
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
963 |
msgid "Demo data successfully removed."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
967 |
msgid "Removing demo data with some errors occurred."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
971 |
msgid "Close notice"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
975 |
#, fuzzy
|
976 |
msgid "Install demo data"
|
977 |
msgstr "安装 %s"
|
978 |
|
979 |
-
#: inc/demo-data/class-bws-demo-data.php:
|
980 |
msgid "for an acquaintance with the possibilities of the"
|
981 |
msgstr ""
|
982 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
983 |
#~ msgid "Select a border color"
|
984 |
#~ msgstr "选择边框颜色"
|
985 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 15:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 15:20+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"Language: zh_CN\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:44 gallery-plugin.php:1578 gallery-plugin.php:1993
|
20 |
+
#: gallery-plugin.php:2010
|
21 |
msgid "Settings"
|
22 |
msgstr "设置"
|
23 |
|
24 |
+
#: gallery-plugin.php:139
|
25 |
msgid "See images »"
|
26 |
msgstr "查看影像 »"
|
27 |
|
28 |
+
#: gallery-plugin.php:142
|
29 |
msgid "Return to all albums"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: gallery-plugin.php:320 gallery-plugin.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Galleries"
|
34 |
msgstr "画廊"
|
35 |
|
36 |
+
#: gallery-plugin.php:321 gallery-plugin.php:3351
|
37 |
msgid "Gallery"
|
38 |
msgstr "画廊"
|
39 |
|
40 |
+
#: gallery-plugin.php:322
|
41 |
msgid "Add New Gallery"
|
42 |
msgstr "新建画廊"
|
43 |
|
44 |
+
#: gallery-plugin.php:323
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "编辑画廊"
|
47 |
|
48 |
+
#: gallery-plugin.php:324
|
49 |
msgid "New Gallery"
|
50 |
msgstr "新画廊"
|
51 |
|
52 |
+
#: gallery-plugin.php:325
|
53 |
msgid "View Gallery"
|
54 |
msgstr "浏览画廊"
|
55 |
|
56 |
+
#: gallery-plugin.php:326
|
57 |
#, fuzzy
|
58 |
msgid "Search Galleries"
|
59 |
msgstr "画廊"
|
60 |
|
61 |
+
#: gallery-plugin.php:327
|
62 |
msgid "No Gallery found"
|
63 |
msgstr "没有找到画廊"
|
64 |
|
65 |
+
#: gallery-plugin.php:388
|
66 |
msgid "Gallery Shortcode"
|
67 |
msgstr "画廊代码"
|
68 |
|
69 |
+
#: gallery-plugin.php:390 gallery-plugin.php:432 gallery-plugin.php:3334
|
70 |
#, fuzzy
|
71 |
msgid "Gallery Categories"
|
72 |
msgstr "画廊中影像的尺寸"
|
73 |
|
74 |
+
#: gallery-plugin.php:400 gallery-plugin.php:1597
|
75 |
#, fuzzy, php-format
|
76 |
msgid ""
|
77 |
"If you would like to add a Gallery to your page or post, please use %s button"
|
79 |
"如果您想添加一个画廊到页面或公告中,仅需要将画廊代码放到页面或公告的内容中即"
|
80 |
"可:"
|
81 |
|
82 |
+
#: gallery-plugin.php:405
|
83 |
#, php-format
|
84 |
msgid ""
|
85 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
87 |
"please use the shortcode below"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:411
|
91 |
msgid ""
|
92 |
"Add this shortcode to a page, post or widget to display a single gallery"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: gallery-plugin.php:414
|
96 |
#, fuzzy
|
97 |
msgid ""
|
98 |
"Use this shortcode to display an album image with the description and the "
|
99 |
"link to a single gallery page"
|
100 |
msgstr "如果您想显示一个简述,其包含屏幕截图且具有指向一个图集的链接"
|
101 |
|
102 |
+
#: gallery-plugin.php:416
|
103 |
msgid "Short display"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:433
|
107 |
msgid "Most Used"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:438 gallery-plugin.php:1878
|
111 |
msgid "Default"
|
112 |
msgstr "默认"
|
113 |
|
114 |
+
#: gallery-plugin.php:443
|
115 |
#, fuzzy
|
116 |
msgid "Add New Gallery Category"
|
117 |
msgstr "新建画廊"
|
118 |
|
119 |
+
#: gallery-plugin.php:448
|
120 |
#, fuzzy
|
121 |
msgid "Install plugin"
|
122 |
msgstr "安装插件"
|
123 |
|
124 |
+
#: gallery-plugin.php:610
|
125 |
#, fuzzy
|
126 |
msgid "Gallery Category"
|
127 |
msgstr "画廊中影像的尺寸"
|
128 |
|
129 |
+
#: gallery-plugin.php:844 gallery-plugin.php:983 gallery-plugin.php:2388
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid "Sorry, nothing found."
|
131 |
msgstr "对不起 - 没有找到。"
|
132 |
|
133 |
+
#: gallery-plugin.php:1355 gallery-plugin.php:2926 gallery-plugin.php:3041
|
134 |
+
#: gallery-plugin.php:3128
|
135 |
msgid "Title"
|
136 |
msgstr "标题"
|
137 |
|
138 |
+
#: gallery-plugin.php:1356
|
139 |
msgid "Author"
|
140 |
msgstr "作者"
|
141 |
|
142 |
+
#: gallery-plugin.php:1357
|
143 |
#, fuzzy
|
144 |
msgid "Shortcode"
|
145 |
msgstr "画廊代码"
|
146 |
|
147 |
+
#: gallery-plugin.php:1358
|
148 |
#, fuzzy
|
149 |
msgid "Photos"
|
150 |
msgstr "照片"
|
151 |
|
152 |
+
#: gallery-plugin.php:1359
|
153 |
msgid "Date"
|
154 |
msgstr "日期"
|
155 |
|
156 |
+
#: gallery-plugin.php:1547
|
157 |
msgid "Settings are saved"
|
158 |
msgstr "设置已保存。"
|
159 |
|
160 |
+
#: gallery-plugin.php:1564
|
161 |
#, fuzzy
|
162 |
msgid "All plugin settings were restored."
|
163 |
msgstr "在插件的设置页面("
|
164 |
|
165 |
+
#: gallery-plugin.php:1576
|
166 |
msgid "Gallery Settings"
|
167 |
msgstr "画廊设置"
|
168 |
|
169 |
+
#: gallery-plugin.php:1579
|
170 |
msgid "Custom code"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: gallery-plugin.php:1580
|
174 |
msgid "Go PRO"
|
175 |
msgstr "转到高级版"
|
176 |
|
177 |
+
#: gallery-plugin.php:1590
|
178 |
msgid "Please enable JavaScript to use the option to renew images."
|
179 |
msgstr "请打开JavaScript以使用选项更新影像"
|
180 |
|
181 |
+
#: gallery-plugin.php:1602
|
182 |
#, php-format
|
183 |
msgid ""
|
184 |
"You can add the Gallery to your page or post by clicking on %s button in the "
|
186 |
"please use the shortcode %s, where * stands for gallery ID"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: gallery-plugin.php:1612
|
190 |
+
#, fuzzy
|
191 |
+
msgid "Galleries page"
|
192 |
+
msgstr "画廊"
|
193 |
+
|
194 |
+
#: gallery-plugin.php:1622
|
195 |
msgid "Number of images in the row"
|
196 |
msgstr "一行中图像的数量"
|
197 |
|
198 |
+
#: gallery-plugin.php:1624
|
199 |
#, fuzzy
|
200 |
msgid ""
|
201 |
"The number of images per row can be less depending on the width of the "
|
202 |
"parent block"
|
203 |
msgstr "一行中图像的数量"
|
204 |
|
205 |
+
#: gallery-plugin.php:1628 gallery-plugin.php:1654
|
206 |
msgid "Image size"
|
207 |
msgstr "影像尺寸"
|
208 |
|
209 |
+
#: gallery-plugin.php:1631
|
210 |
msgid ""
|
211 |
"WordPress will create a new thumbnail with the specified dimensions when you "
|
212 |
"upload a new photo."
|
213 |
msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
|
214 |
|
215 |
+
#: gallery-plugin.php:1633
|
216 |
#, fuzzy
|
217 |
msgid "For the album cover"
|
218 |
msgstr "专辑封面的尺寸"
|
219 |
|
220 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
221 |
msgid "width x height"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:1634 gallery-plugin.php:1638 gallery-plugin.php:1659
|
225 |
msgid "in px"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:1637
|
229 |
#, fuzzy
|
230 |
msgid "For thumbnails"
|
231 |
msgstr "专辑封面的尺寸"
|
232 |
|
233 |
+
#: gallery-plugin.php:1641
|
234 |
msgid "Update images for gallery"
|
235 |
msgstr "为画廊更新影像"
|
236 |
|
237 |
+
#: gallery-plugin.php:1650 gallery-plugin.php:1847 gallery-plugin.php:2094
|
238 |
msgid "Close"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: gallery-plugin.php:1657
|
242 |
#, fuzzy
|
243 |
msgid "For images in the lightbox"
|
244 |
msgstr "灯箱中的影像的尺寸"
|
245 |
|
246 |
+
#: gallery-plugin.php:1661
|
247 |
msgid "Display a full size image in the lightbox"
|
248 |
msgstr "在灯箱中显示全尺寸图像"
|
249 |
|
250 |
+
#: gallery-plugin.php:1666
|
251 |
msgid "Crop position"
|
252 |
msgstr "裁剪位置"
|
253 |
|
254 |
+
#: gallery-plugin.php:1670 gallery-plugin.php:1676
|
255 |
msgid "center"
|
256 |
msgstr "居中"
|
257 |
|
258 |
+
#: gallery-plugin.php:1672
|
259 |
msgid "Horizontal"
|
260 |
msgstr "水平"
|
261 |
|
262 |
+
#: gallery-plugin.php:1678
|
263 |
msgid "Vertical"
|
264 |
msgstr "垂直"
|
265 |
|
266 |
+
#: gallery-plugin.php:1684 gallery-plugin.php:1934
|
267 |
msgid ""
|
268 |
"If you upgrade to Pro version all your settings and galleries will be saved."
|
269 |
msgstr "如果您升级到高级版本,您的设置和画廊将被保存。"
|
270 |
|
271 |
+
#: gallery-plugin.php:1691 gallery-plugin.php:1941
|
272 |
#, fuzzy
|
273 |
msgid "Unlock premium options by upgrading to Pro version"
|
274 |
msgstr "升级到高级版以解锁额外的选项。"
|
275 |
|
276 |
+
#: gallery-plugin.php:1695 gallery-plugin.php:1945
|
277 |
msgid "Start Your Trial"
|
278 |
msgstr "开始试用"
|
279 |
|
280 |
+
#: gallery-plugin.php:1696 gallery-plugin.php:1946 gallery-plugin.php:3336
|
281 |
msgid "or"
|
282 |
msgstr "或"
|
283 |
|
284 |
+
#: gallery-plugin.php:1698 gallery-plugin.php:1948
|
285 |
msgid "Learn More"
|
286 |
msgstr "学习更多"
|
287 |
|
288 |
+
#: gallery-plugin.php:1706 gallery-plugin.php:1860
|
289 |
msgid "Display image title"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: gallery-plugin.php:1708
|
293 |
#, fuzzy
|
294 |
msgid ""
|
295 |
"Turn off the checkbox, if you want to display image title just in a lightbox"
|
296 |
msgstr "取消复选框,如果您仅想在灯箱中显示文本"
|
297 |
|
298 |
+
#: gallery-plugin.php:1712
|
299 |
msgid "Images with border"
|
300 |
msgstr "影像边缘"
|
301 |
|
302 |
+
#: gallery-plugin.php:1716
|
303 |
msgid "Border width in px, just numbers"
|
304 |
msgstr "边缘宽度,以像素为单位,只能使用数字"
|
305 |
|
306 |
+
#: gallery-plugin.php:1722
|
307 |
msgid "Sort images"
|
308 |
msgstr "影像排序"
|
309 |
|
310 |
+
#: gallery-plugin.php:1725
|
311 |
#, fuzzy
|
312 |
msgid "by Attachment ID"
|
313 |
msgstr "附件ID"
|
314 |
|
315 |
+
#: gallery-plugin.php:1726
|
316 |
#, fuzzy
|
317 |
msgid "by Image Name"
|
318 |
msgstr "影像名称"
|
319 |
|
320 |
+
#: gallery-plugin.php:1727 gallery-plugin.php:1748
|
321 |
#, fuzzy
|
322 |
msgid "by Date"
|
323 |
msgstr "日期"
|
324 |
|
325 |
+
#: gallery-plugin.php:1728
|
326 |
msgid "by Sorting order in the Gallery"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: gallery-plugin.php:1729 gallery-plugin.php:1753
|
330 |
msgid "Random"
|
331 |
msgstr "随机"
|
332 |
|
333 |
+
#: gallery-plugin.php:1734
|
334 |
#, fuzzy
|
335 |
msgid "The images sort order"
|
336 |
msgstr "影像边缘"
|
337 |
|
338 |
+
#: gallery-plugin.php:1737 gallery-plugin.php:1761
|
339 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
340 |
msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
|
341 |
|
342 |
+
#: gallery-plugin.php:1738 gallery-plugin.php:1762
|
343 |
msgid ""
|
344 |
"DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
345 |
msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
|
346 |
|
347 |
+
#: gallery-plugin.php:1743
|
348 |
#, fuzzy
|
349 |
msgid "Sort galleries"
|
350 |
msgstr "画廊"
|
351 |
|
352 |
+
#: gallery-plugin.php:1746
|
353 |
#, fuzzy
|
354 |
msgid "by Gallery ID"
|
355 |
msgstr "画廊"
|
356 |
|
357 |
+
#: gallery-plugin.php:1747
|
358 |
#, fuzzy
|
359 |
msgid "by Title"
|
360 |
msgstr "标题"
|
361 |
|
362 |
+
#: gallery-plugin.php:1749
|
363 |
msgid "by Last modified date"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: gallery-plugin.php:1750
|
367 |
msgid "by Comment count"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: gallery-plugin.php:1751
|
371 |
#, fuzzy
|
372 |
msgid "by Sorting order (the input field for sorting order)"
|
373 |
msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
|
374 |
|
375 |
+
#: gallery-plugin.php:1752
|
376 |
#, fuzzy
|
377 |
msgid "by Author"
|
378 |
msgstr "作者"
|
379 |
|
380 |
+
#: gallery-plugin.php:1758
|
381 |
msgid "The galleries sort order"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: gallery-plugin.php:1767
|
385 |
msgid "Start slideshow"
|
386 |
msgstr "播放幻灯片"
|
387 |
|
388 |
+
#: gallery-plugin.php:1770
|
389 |
msgid "Slideshow interval"
|
390 |
msgstr "幻灯片播放间隔"
|
391 |
|
392 |
+
#: gallery-plugin.php:1770
|
393 |
msgid "(ms)"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: gallery-plugin.php:1774
|
397 |
msgid "Use single lightbox for multiple galleries on one page"
|
398 |
msgstr "在同一页面上为多个画廊使用同一个灯箱"
|
399 |
|
400 |
+
#: gallery-plugin.php:1780
|
401 |
msgid "Display the Back link"
|
402 |
msgstr "显示返回链接"
|
403 |
|
404 |
+
#: gallery-plugin.php:1786
|
405 |
msgid "Display the Back link in the shortcode"
|
406 |
msgstr "以代码方式显示返回链接"
|
407 |
|
408 |
+
#: gallery-plugin.php:1792
|
409 |
msgid "The Back link text"
|
410 |
msgstr "返回链接文本"
|
411 |
|
412 |
+
#: gallery-plugin.php:1798
|
413 |
msgid "The Back link URL"
|
414 |
msgstr "返回链接URL"
|
415 |
|
416 |
+
#: gallery-plugin.php:1801
|
417 |
msgid "Gallery page (Page with Gallery Template)"
|
418 |
msgstr "画廊页面(具有画廊模板的页面)"
|
419 |
|
420 |
+
#: gallery-plugin.php:1803
|
421 |
msgid "(Full URL to custom page)"
|
422 |
msgstr "(到自定义页面的完整地址)"
|
423 |
|
424 |
+
#: gallery-plugin.php:1808
|
425 |
msgid "The Read More link text"
|
426 |
msgstr "阅读更多链接的文本"
|
427 |
|
428 |
+
#: gallery-plugin.php:1814
|
429 |
msgid "Add gallery to the search"
|
430 |
msgstr "将画廊添加到搜索"
|
431 |
|
432 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
433 |
msgid "Using"
|
434 |
msgstr "试用"
|
435 |
|
436 |
+
#: gallery-plugin.php:1819 gallery-plugin.php:1822 gallery-plugin.php:1826
|
437 |
msgid "powered by"
|
438 |
msgstr "提供方为"
|
439 |
|
440 |
+
#: gallery-plugin.php:1822 gallery-plugin.php:2069
|
441 |
msgid "Activate"
|
442 |
msgstr "激活"
|
443 |
|
444 |
+
#: gallery-plugin.php:1826
|
445 |
msgid "Download"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: gallery-plugin.php:1832
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "Rename gallery post type"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: gallery-plugin.php:1837
|
453 |
msgid ""
|
454 |
"To avoid conflicts with other plugins, please mark this checkbox to rename "
|
455 |
"it now"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: gallery-plugin.php:1838
|
459 |
msgid ""
|
460 |
"All galleries created earlier will stay unchanged, however, after renaming, "
|
461 |
"please check settings of your other plugins where 'gallery' post type is used"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: gallery-plugin.php:1851
|
465 |
#, fuzzy
|
466 |
msgid "Single gallery view"
|
467 |
msgstr "画廊项的滑块"
|
468 |
|
469 |
+
#: gallery-plugin.php:1854
|
470 |
msgid "Grid"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:1855
|
474 |
msgid "Masonry"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:1863
|
478 |
#, fuzzy
|
479 |
msgid "Under image"
|
480 |
msgstr "更新影像"
|
481 |
|
482 |
+
#: gallery-plugin.php:1864
|
483 |
msgid "By mouse hover"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:1869
|
487 |
msgid "Use pagination for images"
|
488 |
msgstr "为影像使用分页"
|
489 |
|
490 |
+
#: gallery-plugin.php:1872
|
491 |
msgid "per page"
|
492 |
msgstr "每页"
|
493 |
|
494 |
+
#: gallery-plugin.php:1876
|
495 |
msgid "Lightbox background"
|
496 |
msgstr "灯箱背景"
|
497 |
|
498 |
+
#: gallery-plugin.php:1879
|
499 |
msgid "Background transparency (from 0 to 1)"
|
500 |
msgstr "背景透明度(从 0 到 1)"
|
501 |
|
502 |
+
#: gallery-plugin.php:1885
|
503 |
msgid ""
|
504 |
"Display all images in the lightbox instead of going into a single gallery"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:1888
|
508 |
#, php-format
|
509 |
msgid "When using the gallery template or a shortcode with `%s` parameter"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: gallery-plugin.php:1892
|
513 |
msgid "The lightbox helper"
|
514 |
msgstr "灯箱帮助"
|
515 |
|
516 |
+
#: gallery-plugin.php:1894
|
517 |
msgid "Do not use"
|
518 |
msgstr "不要使用"
|
519 |
|
520 |
+
#: gallery-plugin.php:1895
|
521 |
msgid "Button helper"
|
522 |
msgstr "按钮帮助"
|
523 |
|
524 |
+
#: gallery-plugin.php:1896
|
525 |
msgid "Thumbnail helper"
|
526 |
msgstr "缩略图帮助"
|
527 |
|
528 |
+
#: gallery-plugin.php:1900
|
529 |
msgid "Display Like buttons in the lightbox"
|
530 |
msgstr "在灯箱中显示[喜欢]按钮"
|
531 |
|
532 |
+
#: gallery-plugin.php:1904
|
533 |
msgid "FaceBook"
|
534 |
msgstr "Facebook"
|
535 |
|
536 |
+
#: gallery-plugin.php:1905
|
537 |
msgid "Twitter"
|
538 |
msgstr "Twitter"
|
539 |
|
540 |
+
#: gallery-plugin.php:1906
|
541 |
msgid "Pinterest"
|
542 |
msgstr "Printerest"
|
543 |
|
544 |
+
#: gallery-plugin.php:1907
|
545 |
msgid "Google +1"
|
546 |
msgstr "Google +1"
|
547 |
|
548 |
+
#: gallery-plugin.php:1910
|
549 |
#, fuzzy
|
550 |
msgid "Show counter"
|
551 |
msgstr "幻灯片播放间隔"
|
552 |
|
553 |
+
#: gallery-plugin.php:1912
|
554 |
msgid "Align"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1914
|
558 |
msgid "left"
|
559 |
msgstr "偏左"
|
560 |
|
561 |
+
#: gallery-plugin.php:1921
|
562 |
msgid "Title for lightbox button"
|
563 |
msgstr "灯箱按钮的标题"
|
564 |
|
565 |
+
#: gallery-plugin.php:1927
|
566 |
msgid "Slug for gallery item"
|
567 |
msgstr "画廊项的滑块"
|
568 |
|
569 |
+
#: gallery-plugin.php:1929
|
570 |
msgid "for any structure of permalinks except the default structure"
|
571 |
msgstr "给任意结构的固定链接,除了默认结构"
|
572 |
|
573 |
+
#: gallery-plugin.php:1955
|
574 |
msgid "Save Changes"
|
575 |
msgstr "保存修改"
|
576 |
|
577 |
+
#: gallery-plugin.php:1960
|
578 |
msgid ""
|
579 |
"If you install the demo-data, will be created galleries with images, demo-"
|
580 |
"post with available shortcodes and page with a list of all the galleries."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: gallery-plugin.php:1994
|
584 |
msgid "FAQ"
|
585 |
msgstr "常见问题"
|
586 |
|
587 |
+
#: gallery-plugin.php:1995
|
588 |
msgid "Support"
|
589 |
msgstr "支持"
|
590 |
|
591 |
+
#: gallery-plugin.php:2032
|
592 |
msgid "Updating images..."
|
593 |
msgstr "正在更新影像..."
|
594 |
|
595 |
+
#: gallery-plugin.php:2033
|
596 |
#, fuzzy
|
597 |
msgid "No image found."
|
598 |
msgstr "没有找到影像"
|
599 |
|
600 |
+
#: gallery-plugin.php:2034
|
601 |
#, fuzzy
|
602 |
msgid "All images are updated."
|
603 |
msgstr "已更新全部影像"
|
604 |
|
605 |
+
#: gallery-plugin.php:2035
|
606 |
msgid "Error."
|
607 |
msgstr "错误。"
|
608 |
|
609 |
+
#: gallery-plugin.php:2049
|
610 |
msgid ""
|
611 |
"You are about to delete these items from this gallery.\n"
|
612 |
" 'Cancel' to stop, 'OK' to delete."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:2050
|
616 |
msgid ""
|
617 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
618 |
"switching?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: gallery-plugin.php:2051
|
622 |
msgid "Insert Media"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: gallery-plugin.php:2052
|
626 |
msgid "Insert"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: gallery-plugin.php:2064
|
630 |
#, fuzzy
|
631 |
msgid "Learn more"
|
632 |
msgstr "学习更多"
|
633 |
|
634 |
+
#: gallery-plugin.php:2076
|
635 |
#, fuzzy
|
636 |
msgid "Install now"
|
637 |
msgstr "安装 %s"
|
638 |
|
639 |
+
#: gallery-plugin.php:2085
|
640 |
msgid "Add multiple gallery categories"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: gallery-plugin.php:2085
|
644 |
msgid ""
|
645 |
"Install Gallery Categories plugin to add unlimited number of categories."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: gallery-plugin.php:2405
|
649 |
+
msgid "Download high resolution image"
|
650 |
+
msgstr "下载高分辨率图像"
|
651 |
+
|
652 |
+
#: gallery-plugin.php:2417
|
653 |
+
msgid "Image"
|
654 |
+
msgstr "影像"
|
655 |
+
|
656 |
+
#: gallery-plugin.php:2558
|
657 |
msgid "Image size not defined"
|
658 |
msgstr "影像尺寸未定义"
|
659 |
|
660 |
+
#: gallery-plugin.php:2573
|
661 |
msgid ""
|
662 |
"We can update only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please, "
|
663 |
"manually reload image."
|
665 |
"我们仅可以更新 PNG,JPEG,GIF,WPMP 或 XBM 文件。对于其他文件类型,请手动重新"
|
666 |
"加载影像。"
|
667 |
|
668 |
+
#: gallery-plugin.php:2584
|
669 |
msgid "Image size changes not defined"
|
670 |
msgstr "图像大小的变化没有定义"
|
671 |
|
672 |
+
#: gallery-plugin.php:2613 gallery-plugin.php:2616 gallery-plugin.php:2621
|
673 |
msgid "Invalid path"
|
674 |
msgstr "无效的路径"
|
675 |
|
676 |
+
#: gallery-plugin.php:2694
|
677 |
msgid "Add images requires JavaScript."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: gallery-plugin.php:2697
|
681 |
msgid "Add Media"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: gallery-plugin.php:2707
|
685 |
msgid "The grid view for the Gallery images requires JavaScript."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: gallery-plugin.php:2707
|
689 |
msgid "Switch to the list view"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: gallery-plugin.php:2734
|
693 |
msgid "List View"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: gallery-plugin.php:2735
|
697 |
msgid "Grid View"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: gallery-plugin.php:2790
|
701 |
msgid "Filter"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: gallery-plugin.php:2794
|
705 |
msgid "Empty Trash"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: gallery-plugin.php:2815
|
709 |
#, fuzzy
|
710 |
msgid "No images found"
|
711 |
msgstr "没有找到影像"
|
712 |
|
713 |
+
#: gallery-plugin.php:2867
|
714 |
msgid "Select bulk action"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: gallery-plugin.php:2869
|
718 |
msgid "Bulk Actions"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: gallery-plugin.php:2879
|
722 |
msgid "Apply"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: gallery-plugin.php:2886 gallery-plugin.php:3065
|
726 |
#, fuzzy
|
727 |
msgid "Delete from Gallery"
|
728 |
msgstr "新画廊"
|
729 |
|
730 |
+
#: gallery-plugin.php:2899 gallery-plugin.php:2913
|
731 |
#, fuzzy
|
732 |
msgid "Display link to the original file under each image in the lightbox"
|
733 |
msgstr "在灯箱中显示全尺寸图像"
|
734 |
|
735 |
+
#: gallery-plugin.php:2908
|
736 |
msgid "Bulk Select"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: gallery-plugin.php:2910
|
740 |
msgid "Cancel Selection"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: gallery-plugin.php:2911
|
744 |
msgid "Delete Selected"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: gallery-plugin.php:2924
|
748 |
msgid "File"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: gallery-plugin.php:2925 gallery-plugin.php:3014 gallery-plugin.php:3123
|
752 |
msgid "Dimensions"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3047 gallery-plugin.php:3133
|
756 |
msgid "Alt tag"
|
757 |
msgstr "Alt标签"
|
758 |
|
759 |
+
#: gallery-plugin.php:2927 gallery-plugin.php:3049
|
760 |
msgid ""
|
761 |
"The alt attribute specifies an alternate text for an image, if the image "
|
762 |
"cannot be displayed."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3055 gallery-plugin.php:3138
|
766 |
msgid "Custom URL"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: gallery-plugin.php:2928 gallery-plugin.php:3057
|
770 |
msgid ""
|
771 |
"By clicking on the thumbnail you'll go to the link (if the field is filled) "
|
772 |
"or the image will be opened in the lightbox (if the field isn't filled)"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: gallery-plugin.php:3006
|
776 |
msgid "Deselect"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: gallery-plugin.php:3012
|
780 |
msgid "File name"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: gallery-plugin.php:3013
|
784 |
msgid "File type"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: gallery-plugin.php:3017 gallery-plugin.php:3119
|
788 |
#, fuzzy
|
789 |
msgid "Edit Attachment Info"
|
790 |
msgstr "附件ID"
|
791 |
|
792 |
+
#: gallery-plugin.php:3017
|
793 |
#, fuzzy
|
794 |
msgid "Edit Attachment"
|
795 |
msgstr "附件ID"
|
796 |
|
797 |
+
#: gallery-plugin.php:3027
|
798 |
#, fuzzy
|
799 |
msgid "Go Pro"
|
800 |
msgstr "转到高级版"
|
801 |
|
802 |
+
#: gallery-plugin.php:3027
|
803 |
msgid "Pro version"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: gallery-plugin.php:3030
|
807 |
msgid "This setting is available in Pro version"
|
808 |
msgstr "此设置在高级版本中可用"
|
809 |
|
810 |
+
#: gallery-plugin.php:3063
|
811 |
msgid "Edit more details"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: gallery-plugin.php:3098
|
815 |
#, php-format
|
816 |
msgid "Select %s"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: gallery-plugin.php:3111
|
820 |
#, php-format
|
821 |
msgid "Edit “%s”"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: gallery-plugin.php:3156 gallery-plugin.php:3169
|
825 |
msgid "Edit"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: gallery-plugin.php:3159 gallery-plugin.php:3174
|
829 |
msgid "Trash"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: gallery-plugin.php:3162 gallery-plugin.php:3177
|
833 |
msgid "Delete Permanently"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
837 |
#, php-format
|
838 |
msgid "View “%s”"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: gallery-plugin.php:3164 gallery-plugin.php:3182
|
842 |
msgid "View"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: gallery-plugin.php:3166
|
846 |
#, fuzzy
|
847 |
msgid "Attach"
|
848 |
msgstr "附件ID"
|
849 |
|
850 |
+
#: gallery-plugin.php:3172
|
851 |
msgid "Restore"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: gallery-plugin.php:3303
|
855 |
msgid "Warning"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: gallery-plugin.php:3303
|
859 |
msgid "You can add only images to the gallery"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: gallery-plugin.php:3345
|
863 |
#, fuzzy
|
864 |
msgid "no title"
|
865 |
msgstr "标题"
|
866 |
|
867 |
+
#: gallery-plugin.php:3353
|
868 |
#, fuzzy
|
869 |
msgid "Sorry, no gallery found."
|
870 |
msgstr "对不起 - 没有找到。"
|
871 |
|
872 |
+
#: gallery-plugin.php:3359
|
873 |
#, fuzzy
|
874 |
msgid ""
|
875 |
"Display an album image with the description and the link to a single gallery "
|
876 |
"page"
|
877 |
msgstr "如果您想显示一个简述,其包含屏幕截图且具有指向一个图集的链接"
|
878 |
|
879 |
+
#: inc/demo-data/class-bws-demo-data.php:30
|
880 |
#, fuzzy
|
881 |
msgid "Install Demo Data"
|
882 |
msgstr "安装 %s"
|
883 |
|
884 |
+
#: inc/demo-data/class-bws-demo-data.php:33
|
885 |
msgid "Remove Demo Data"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/demo-data/class-bws-demo-data.php:34
|
889 |
msgid "Delete demo-data and restore old plugin settings."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/demo-data/class-bws-demo-data.php:52
|
893 |
msgid "Yes, install demo data"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: inc/demo-data/class-bws-demo-data.php:53
|
897 |
msgid "Are you sure you want to install demo data?"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: inc/demo-data/class-bws-demo-data.php:55
|
901 |
msgid "Yes, remove demo data"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: inc/demo-data/class-bws-demo-data.php:56
|
905 |
msgid "Are you sure you want to remove demo data?"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: inc/demo-data/class-bws-demo-data.php:63
|
909 |
#, fuzzy
|
910 |
msgid "No, go back to the settings page"
|
911 |
msgstr "在插件的设置页面("
|
912 |
|
913 |
+
#: inc/demo-data/class-bws-demo-data.php:118
|
914 |
msgid "Can not get demo data."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/demo-data/class-bws-demo-data.php:125
|
918 |
msgid "Demo options already installed."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc/demo-data/class-bws-demo-data.php:374
|
922 |
msgid "Demo data successfully installed."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: inc/demo-data/class-bws-demo-data.php:376
|
926 |
msgid "View post with shortcodes"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: inc/demo-data/class-bws-demo-data.php:379
|
930 |
msgid "View page with examples"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: inc/demo-data/class-bws-demo-data.php:388
|
934 |
msgid "Installation of demo data with some errors occurred."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: inc/demo-data/class-bws-demo-data.php:391
|
938 |
msgid "Posts data is missing."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: inc/demo-data/class-bws-demo-data.php:466
|
942 |
msgid "Demo data have already been removed."
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: inc/demo-data/class-bws-demo-data.php:523
|
946 |
msgid "Demo data successfully removed."
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: inc/demo-data/class-bws-demo-data.php:527
|
950 |
msgid "Removing demo data with some errors occurred."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: inc/demo-data/class-bws-demo-data.php:596
|
954 |
msgid "Close notice"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
958 |
#, fuzzy
|
959 |
msgid "Install demo data"
|
960 |
msgstr "安装 %s"
|
961 |
|
962 |
+
#: inc/demo-data/class-bws-demo-data.php:600
|
963 |
msgid "for an acquaintance with the possibilities of the"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#, fuzzy
|
967 |
+
#~ msgid ""
|
968 |
+
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
969 |
+
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
970 |
+
#~ "theme for the correct work of the Gallery plugin"
|
971 |
+
#~ msgstr ""
|
972 |
+
#~ "在您的主题目录中没有找到文件 \"gallery-template.php\" 和 \"gallery-"
|
973 |
+
#~ "single-template.php\"。为了画廊插件的正常运行,请从目录 `/wp-content/"
|
974 |
+
#~ "plugins/gallery-plugin/template/` 中复制他们到您的主题目录中"
|
975 |
+
|
976 |
#~ msgid "Select a border color"
|
977 |
#~ msgstr "选择边框颜色"
|
978 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add album, add galleries, add images, add pictures, add albums, gallery, gallery plugin, gallery slider, fancy gallery, slideshow, lightbox, fullscreen gallery
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -27,7 +27,7 @@ http://www.youtube.com/watch?v=aydaTdOpaRM
|
|
27 |
* Albums to gallery
|
28 |
* Images to album
|
29 |
* Change image for album cover and its dimensions
|
30 |
-
* Set sorting order for images by:
|
31 |
* Attachment ID
|
32 |
* Image Name
|
33 |
* Date
|
@@ -35,7 +35,7 @@ http://www.youtube.com/watch?v=aydaTdOpaRM
|
|
35 |
* Random
|
36 |
* ASC (ascending order from lowest to highest values)
|
37 |
* DESC (descending order from highest to lowest values)
|
38 |
-
* Set sorting order
|
39 |
* Gallery ID
|
40 |
* Title
|
41 |
* Date
|
@@ -59,7 +59,7 @@ http://www.youtube.com/watch?v=aydaTdOpaRM
|
|
59 |
* Compatible with latest WordPress version
|
60 |
* Incredibly simple settings for fast setup without modifying code
|
61 |
* Detailed step-by-step documentation and videos
|
62 |
-
* Multilingual
|
63 |
|
64 |
> **Pro Features**
|
65 |
>
|
@@ -146,16 +146,11 @@ Donations play an important role in supporting open-source projects. We greatly
|
|
146 |
|
147 |
1. Upload the `gallery-plugin` folder to the directory `/wp-content/plugins/`.
|
148 |
2. Activate the plugin using the 'Plugins' menu in WordPress.
|
149 |
-
3.
|
150 |
4. You can adjust the necessary settings using your WordPress admin panel in "BWS Panel" > "Gallery".
|
151 |
|
152 |
== Frequently Asked Questions ==
|
153 |
|
154 |
-
= I cannot view my Gallery page =
|
155 |
-
|
156 |
-
1. First of all, you should create your first Gallery page and select 'Gallery' in the list of available templates (it will be used for displaying the Gallery).
|
157 |
-
2. If you cannot find 'Gallery' in the list of available templates, then just copy it from the directory `/wp-content/plugins/gallery-plugin/template/` to your theme directory.
|
158 |
-
|
159 |
= How to use the plugin? =
|
160 |
|
161 |
1. Click 'Add New' in the 'Galleries' menu and fill out your page.
|
@@ -164,6 +159,15 @@ Donations play an important role in supporting open-source projects. We greatly
|
|
164 |
|
165 |
[View a Step-by-step Instruction "How to add a Gallery"](https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/)
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
= I'm getting the following error: "Fatal error: Call to undefined function get_post_thumbnail_id()". What should I do? =
|
168 |
|
169 |
This error means that your theme doesn't support thumbnail option, in order to add this option please find the file 'functions.php' in your theme and add the following strings to this file:
|
@@ -216,6 +220,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<http:
|
|
216 |
|
217 |
== Changelog ==
|
218 |
|
|
|
|
|
|
|
|
|
|
|
219 |
= V4.4.6 - 13.10.2016 =
|
220 |
* Update : The compatibility with Pagination plugin improved.
|
221 |
|
@@ -593,6 +602,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<http:
|
|
593 |
|
594 |
== Upgrade Notice ==
|
595 |
|
|
|
|
|
|
|
|
|
596 |
= V4.4.6 =
|
597 |
* The compatibility with new Pagination version updated.
|
598 |
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add album, add galleries, add images, add pictures, add albums, gallery, gallery plugin, gallery slider, fancy gallery, slideshow, lightbox, fullscreen gallery
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.7
|
7 |
+
Stable tag: 4.4.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
27 |
* Albums to gallery
|
28 |
* Images to album
|
29 |
* Change image for album cover and its dimensions
|
30 |
+
* Set default sorting order for images by:
|
31 |
* Attachment ID
|
32 |
* Image Name
|
33 |
* Date
|
35 |
* Random
|
36 |
* ASC (ascending order from lowest to highest values)
|
37 |
* DESC (descending order from highest to lowest values)
|
38 |
+
* Set default gallery projects sorting order by:
|
39 |
* Gallery ID
|
40 |
* Title
|
41 |
* Date
|
59 |
* Compatible with latest WordPress version
|
60 |
* Incredibly simple settings for fast setup without modifying code
|
61 |
* Detailed step-by-step documentation and videos
|
62 |
+
* Multilingual and RTL ready
|
63 |
|
64 |
> **Pro Features**
|
65 |
>
|
146 |
|
147 |
1. Upload the `gallery-plugin` folder to the directory `/wp-content/plugins/`.
|
148 |
2. Activate the plugin using the 'Plugins' menu in WordPress.
|
149 |
+
3. Click 'Add New' in the 'Galleries' menu and fill out your page.
|
150 |
4. You can adjust the necessary settings using your WordPress admin panel in "BWS Panel" > "Gallery".
|
151 |
|
152 |
== Frequently Asked Questions ==
|
153 |
|
|
|
|
|
|
|
|
|
|
|
154 |
= How to use the plugin? =
|
155 |
|
156 |
1. Click 'Add New' in the 'Galleries' menu and fill out your page.
|
159 |
|
160 |
[View a Step-by-step Instruction "How to add a Gallery"](https://docs.google.com/document/d/1l4zMhovBgO7rsPIzJk_15v0sdhiCpnjuacoDEfmzGEw/)
|
161 |
|
162 |
+
= How to change or override plugin templates? =
|
163 |
+
|
164 |
+
Plugin template files can be found in the `/wp-content/plugins/gallery-plugin/templates/` directory.
|
165 |
+
You can edit these files in an upgrade-safe way using overrides. Copy them into a directory with your theme named `/bws-templates`.
|
166 |
+
|
167 |
+
Example: To override the single gallery template, please copy `/wp-content/plugins/gallery-plugin/templates/gallery-single-template.php` to `wp-content/themes/your-theme/bws-templates/gallery-single-template.php`.
|
168 |
+
|
169 |
+
Do not edit these files in the plugin's core directly as they are overwritten during the upgrade process and any customizations will be lost.
|
170 |
+
|
171 |
= I'm getting the following error: "Fatal error: Call to undefined function get_post_thumbnail_id()". What should I do? =
|
172 |
|
173 |
This error means that your theme doesn't support thumbnail option, in order to add this option please find the file 'functions.php' in your theme and add the following strings to this file:
|
220 |
|
221 |
== Changelog ==
|
222 |
|
223 |
+
= V4.4.7 - 03.01.2017 =
|
224 |
+
* Update : Template files loading has been changed.
|
225 |
+
* Update : The French language file is updated.
|
226 |
+
* Update : All functionality for WordPress 4.7 was updated.
|
227 |
+
|
228 |
= V4.4.6 - 13.10.2016 =
|
229 |
* Update : The compatibility with Pagination plugin improved.
|
230 |
|
602 |
|
603 |
== Upgrade Notice ==
|
604 |
|
605 |
+
= V4.4.7 =
|
606 |
+
* Functionality improved.
|
607 |
+
* The compatibility with new WordPress version updated.
|
608 |
+
|
609 |
= V4.4.6 =
|
610 |
* The compatibility with new Pagination version updated.
|
611 |
|
screenshot-4.png
CHANGED
Binary file
|
screenshot-5.png
CHANGED
Binary file
|
screenshot-6.png
CHANGED
Binary file
|
screenshot-7.png
CHANGED
Binary file
|
template/gallery-single-template.php
DELETED
@@ -1,21 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
* Template - Gallery post
|
4 |
-
* Version: 1.2.5
|
5 |
-
*/
|
6 |
-
get_header(); ?>
|
7 |
-
<div class="content-area">
|
8 |
-
<div id="container" class="site-content site-main">
|
9 |
-
<div id="content" class="hentry">
|
10 |
-
<?php if ( function_exists( 'gllr_single_template_content' ) ) {
|
11 |
-
gllr_single_template_content();
|
12 |
-
} ?>
|
13 |
-
<div class="gllr_clear"></div>
|
14 |
-
</div><!-- .hentry -->
|
15 |
-
<?php if( comments_open() ) {
|
16 |
-
comments_template();
|
17 |
-
} ?>
|
18 |
-
</div><!-- #container -->
|
19 |
-
</div><!-- .content-area -->
|
20 |
-
<?php get_sidebar();
|
21 |
-
get_footer(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/gallery-single-template.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
* Template - Gallery post
|
4 |
+
* Version: 1.2.9
|
5 |
+
*/
|
6 |
+
get_header(); ?>
|
7 |
+
<div class="wrap gllr_wrap">
|
8 |
+
<div id="primary" class="content-area">
|
9 |
+
<div id="container" class="site-content site-main">
|
10 |
+
<div id="content" class="hentry">
|
11 |
+
<?php if ( function_exists( 'gllr_single_template_content' ) ) {
|
12 |
+
gllr_single_template_content();
|
13 |
+
} ?>
|
14 |
+
<div class="gllr_clear"></div>
|
15 |
+
</div><!-- .hentry -->
|
16 |
+
<?php if ( comments_open() ) {
|
17 |
+
comments_template();
|
18 |
+
} ?>
|
19 |
+
</div><!-- #container -->
|
20 |
+
</div><!-- .content-area -->
|
21 |
+
<?php get_sidebar(); ?>
|
22 |
+
</div><!-- .wrap -->
|
23 |
+
<?php get_footer(); ?>
|
{template → templates}/gallery-template.php
RENAMED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Template Name: Gallery Template
|
4 |
-
* Version: 1.2.
|
5 |
*/
|
6 |
-
?>
|
7 |
-
|
8 |
-
<div class="content-area">
|
9 |
<div id="container" class="site-content site-main">
|
10 |
<div id="content" class="hentry">
|
11 |
<h1 class="home_page_title entry-header">
|
@@ -46,5 +46,6 @@ Template Name: Gallery Template
|
|
46 |
} ?>
|
47 |
</div><!-- #container -->
|
48 |
</div><!-- .content-area -->
|
49 |
-
<?php get_sidebar(); ?>
|
|
|
50 |
<?php get_footer(); ?>
|
1 |
<?php
|
2 |
/*
|
3 |
Template Name: Gallery Template
|
4 |
+
* Version: 1.2.9
|
5 |
*/
|
6 |
+
get_header(); ?>
|
7 |
+
<div class="wrap gllr_wrap">
|
8 |
+
<div id="primary" class="content-area">
|
9 |
<div id="container" class="site-content site-main">
|
10 |
<div id="content" class="hentry">
|
11 |
<h1 class="home_page_title entry-header">
|
46 |
} ?>
|
47 |
</div><!-- #container -->
|
48 |
</div><!-- .content-area -->
|
49 |
+
<?php get_sidebar(); ?>
|
50 |
+
</div><!-- .wrap -->
|
51 |
<?php get_footer(); ?>
|